What does var mean ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

What does var mean ?

plz explain in easy words I am just a starter and also tell when and how to use it plz

15th Aug 2017, 10:02 AM
Mohit Sharma
Mohit Sharma - avatar
6 Answers
+ 6
var == variable int == integer.
27th Aug 2017, 10:40 AM
AL.The.Flame!
AL.The.Flame! - avatar
+ 3
var is keyword to define variables like va a ; which holds any type of constants . ^ ^
15th Aug 2017, 10:30 AM
Amar Dahake
+ 1
There is no var keyword in C++
15th Aug 2017, 10:22 AM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
+ 1
Sry wanted to write.. C# don't say that itcis not used in it
15th Aug 2017, 10:27 AM
Mohit Sharma
Mohit Sharma - avatar
+ 1
I think it is in JavaScript. var means you declare a variable to store data(string, int, char etc ).
15th Aug 2017, 10:29 AM
懵懂蔡
懵懂蔡 - avatar
+ 1
Oh ok ! In that case, var is an implicitly type declaration (like auto in C++) It means that the type will be deduced by the compiler instead of you having to know it (can help for Container (like array) and foreach statement) Using it is not good if you know the type of data that will be store in your variable
15th Aug 2017, 10:46 AM
Baptiste E. Prunier
Baptiste E. Prunier - avatar