<html>
<head>
<title>Test</title>
</head>
<body>
<script type="text/javascript">
<!--
var i = 0, j = 0;
while (i < 6)
{
i++;
if (i == 3) continue;
j++;
}
alert("i ist gleich " + i + " und j ist gleich " + j);
</script>
</body>
</html>