make from a variable js code example
Example 1: varianle in javascript
var one = 1; // variable stores numeric value
var two = 'two'; // variable stores string value
var three; // declared a variable without assigning a value
Example 2: javascript define variable
var variable1 = "some variable content";