varoables in js

JavaScript
//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 reassignedvar 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")
    }
    
}// let & var are both editable variables:
var cow = 'moo';
let pig = 'oink';
cow = 10;
pig = 10;
// const is a permanent variable; you cannot change it.
const uncuttableGrass = '\/\/';
uncuttableGrass = '___';
// above throws an error
Source

Also in JavaScript: