var a=5 , b=1 var obj = { a : 10 } with(obj) { alert(b) }
for(var num=10;num>=1;num--) { document.writeln(num); }
var num=10; while(num>=1) { document.writeln(num); num++; }
switch(expression) { statements }
var count = 0; while (count < 10) { console.log(count); count++; }
var string1 = ”123”; var intvalue = 123; alert( string1 + intvalue );
Please disable the adBlock and continue. Thank you.