Statement JavaScript Tutorial

< html>





for (var i = 1; i < 101; i++) {
    if (i == 99) {
        alert("The number is " + i);
    }
}