Language Basics JavaScript DHTML



A Simple Page

var x = 0;
while (x < 10) 
{
    x++;
    if (x == 5)
    {
        continue;
    }
    alert(x);