Mod operator, if statement and continue : continue : Statement JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » Statement » continue »

 

Mod operator, if statement and continue

















<html>
<head>
<title>A Simple Page</title>
<script language="JavaScript">
<!--
var x = 0;
while (x < 10)
{
    x++;
    if (x % == 0)
    {
        continue;
    }
    document.write(x);
}
//  -->
</script>
</head>
<body>

</body>
</html>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo Statement
» continue