Changes

Jump to: navigation, search

Introducing JavaScript Variables

No change in size, 20:31, 19 June 2007
no edit summary
Variables are a key element of just about every programming language ever invented, and just like other programming langaugeslanguages, an understanding of the basics of JavaScript variables is key to learning this scripting langaugelanguage.
Variables are nothing more than a way to store information in memory. A variable can be a number, a single character, a string of characters making up a word or sentence, or a value indicating whether something is true or false. In JavaScript you declare a variable by giving it a name and assigning a value to it. You can then access this data at any time and, more importantly, change the content of the variable whenever necessary (hence the name ''variable'').

Navigation menu