Welcome aboard! We are happy you are here and wish you good net-raft!
<!DOCTYPE html>
<html>
<head>
</head>
<body onload = "load()">
<div id="test"></div>
<script type="text/javascript">
function load()
{
var text = ""
var i;
for (i = 0; i < 5; i++) {
if (i === 3) {
continue;
}
text += "The number is " + i + "<br>";
}
document.getElementById("test").innerHTML = text;
}
</script>
</body>
</html>
The most helpful JAVASCRIPT solutions