JavaScript/Reserved words/var

From Wikibooks, open books for an open world
Jump to navigation Jump to search
Previous: typeof Reserved words Next: void

The var keyword[edit | edit source]

The var keyword is optional and used to declare a variable. This operator is necessary if the code includes the line "use strict;".

Syntax[edit | edit source]

  var variable[, variable2, ];

Examples[edit | edit source]

  var number = 17;

  number += 2; // number is now 19

  var theArray = new Array();
Previous: typeof Reserved words Next: void