Language Basics JavaScript DHTML




i = 0
while (i <= 5){
    document.write("The number is " + i)
    document.write("
")
    i++
}