All About Variables

How to work with information in JavaScript

Emily Y Leung

--

Field notes while going through the JavaScript Roadmap

Photo by Luca Bravo on Unsplash

Variable Declarations in JavaScript

  • A variable is a “named container” for a value
  • To declare a variable in JavaScript, use the let , const or var keyword
  • Here’s an example of a…

--

--