Module 1

What is the output of this code?
var x = 0;
while(x<6) {
x++;
}
document.write(x);
 
 6

Comments

Popular posts from this blog

Introducing object part 3

Comparison Operators part 2

Module 2