<html>
<head>
<title>
Using Continue Statement
</title>
</head>
<body>
<script type="text/javascript">
var count=0;
while(count<10)
{
++count;
if(count%2==0)
{
// jump to next iteration
continue;
}
document.write("count="+count+"<BR/>");
}
document.write("While loop terminated");
</script>
</body>
</html>