JavaScript Variables
In Javascript there are Four Ways to Declare a JavaScript Variable: Using var Using let Using const Using nothing Variables are containers for storing data (storing data values). The var is the oldest keyword to declare a variable in JavaScript. Scope: Global scoped or function scoped. The scope of the var keyword is the global or function scope. It means […]
JavaScript Variables Read More »