0
What is var?
10 Answers
+ 25
var can be referred to any type of object
var a = 4;
var str = "Hello";
+ 4
Do not use var to declare variables in Java! It isn't even a keyword, and is used to declare variables in JavaScript, which is NOT the same as Java
+ 2
a defined memory location
+ 1
Thank you and merry christmas
+ 1
var is some variable, like you just create new object and u need to set him some variables
0
Thank you
0
it's good to use var when we don't know the type of object.
var a=object;
0
var is a datatype of javascript it can hold any type of data like int,chat,float,objects etc
0
var means variable which acts as a container.
generally it is used in scripting languages such as in php or javascript.