This Post Has Been Viewed 169 Times Since Sat Apr 19, 2008 8:34 pm Posted By web hosting with 0 replies
POST# 1200
Posted On: Sat Apr 19, 2008 8:34 pm
To declare text as a variable, you use the var keyword, which tells the browser that the text to follow will be the name of a new variable
var variable;
for example, to name your variable users, the declaration look like this
var users;
next: how to assign a value to a variable