VariablesOn this pageVariablesWhat is a variable?A variable is a value stored with in the code that can be called back for later usage.Defining VariablesYou can define variables by using var keywordFor example,var x = 3;will define a variable that is a integer, whilevar x = "3";will define a string