Understanding Javascript Constants
Let's dive into the details surrounding Javascript Constants. In this video we take a look at how to use
Detailed Analysis of Javascript Constants
variable scope = where a variable is recognized // and accessible (local vs global) let x = 3; // global scope function1(); functionΒ ... You have probably watched many different tutorials, and you may have noticed that some tutorials use var to declare 00:00:00 declaration & assignment 00:01:51 numbers 00:04:29 strings 00:06:57 booleans 00:09:24 exercises // variable = AΒ ...
That wraps up our extensive overview of Javascript Constants.