how to create a varible in js code example
Example: 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")
}
}