showing results for - "varoables in js"
Bob
09 Jan 2017
1var oneVariable = 22;
2var twoVariable = 24;
3
4if (oneVariable != twoVariable){
5	var same = 2;
6  	if (oneVariable + same){
7    	cosnole.log("oneVariable it's same than twoVariable")
8    }
9} else {
10	var help = 1;
11  	(oneVariable + help) {
12    	console.log("oneVarible is more big than twoVarible")
13    }
14    
15}