JavaScript is THE scripting language of the Web

Unlike variables in some other programming languages, JavaScript variables are flexible. The same variable can store a string (a bunch of characters) at one point, then a number, either whole or with a decimal point, then a string, and so on. As an example, consider the command var salutation=”Hello World!” ................
................