JavaScript Variable , Functions and CSS
Variable is used to storing the data value. A variable is any characteristics, number, or quantity that can be measured or counted. A variable may also be called a data item. JavaScript support non variant variable. JavaScript dose not used data type. Types of variable :- a) Variant variable verify the data using the data type,e.g. int a b) Non variant variable dose not used any data type.It is depend on data value.It is used in JavaScript and Linux.e.g. a=10, a= 10.5,a=Ramesh. Create variable in JavaScript using var keyword. In user input variable, only declare the name of variable. In any programming language, default input will be string . example:- int a=10; ...