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