javascript how to store a variable code example
Example 1: how to store variable in javascript
var example1 = "hello this is string variable" ; //this is string variable
var example2 = 12345 ; //this is numeric variable
var example3 = true ; //boolean variable
Example 2: how to instialise var in js
var variable-name = number;
/*eg*/
var a = 10;