Tuesday, 5 August 2014

Tutorial 3/11
== Introduction to while loops ==
A fellow of infinite loops

Solve:
understand = true;

while(understand){
    console.log("I'm learning while loops!");
    //Change the value of 'understand' here!
    understand = false;
}

No comments:

Post a Comment