+ 3
What is var
5 Answers
+ 27
variable
+ 6
Var means a variable that you set, now there are two different vars (global and local) for example; var x= 3 function{var y= 5}
The var outside the function is global because itās not inside a function and you guessed it the one inside the function is local and local vars only apply to things inside that function while global variables apply to everything in the code
+ 3
i dont understand the question
+ 2
var is variable
+ 1
var is a variable and you can assign values and strings to vars
or boolean to a var.
ex.
var eggs = 3;