how to use a number var in js code example

Example 1: varoables in js

var oneVariable = 22;
var twoVariable = 24;

if (oneVariable != twoVariable){
	var same = 2;
  	if (oneVariable + same){
    	cosnole.log("oneVariable it's same than twoVariable")
    }
} else {
	var help = 1;
  	(oneVariable + help) {
    	console.log("oneVarible is more big than twoVarible")
    }
    
}

Example 2: javascript declare a variable

//choose the best for your solution
var myVariable = 22; //this can be a string or number. var is globally defined

let myVariable = 22; //this can be a string or number. let is block scoped

const myVariable = 22; //this can be a string or number. const is block scoped and can't be reassigned

Tags:

Html Example