beginners-intro-javascript-.../05-variables
Christopher Harrison d05661f852 Scaffolded pages 2020-09-22 17:58:36 -07:00
..
README.md Scaffolded pages 2020-09-22 17:58:36 -07:00
demo.js adding demo code from variables module 2020-09-22 09:57:59 +10:00

README.md

Variables

Variables are placeholders for information you'll use in your application. These could be relatively small like a number, or large like complex objects. Regardless of the data the variable will store you'll declare them all the same. What will change is where you'd like the variable to exist and the ability to modify it.

Further reading