should i use var in javascript code example
Example 1: javascript variable
// This is best way to make a variable
// Varibales Store Data
var variable1 = 56;
//OR
var variable2 = true;
var variable3 = "Hello World";
Example 2: how to define variable in javascript
var <variable-name>;
var <variable-name> = <value>;
Example 3: variables javascript
var example = "hello";
document.write(example);// it will say hello when it runs