Next:
Manipulating Variables
Up:
Variables
Previous:
Variables
Creating Variables
use the keyword
var
before the variable name.
No necessity to give the variable a value
value can be assigned with
=
: Look at the following examples,
e.g
:
var num = 23; var str = "Some words"; var another_str = str; var first_boolean = true;
Dave Marshall
9/28/2001