Published
- 1 min read
vbscript for loop
The solution for this is noted below
vbscript for loop
Solution
Dim i
For i = 1 To 5
document.write("The number is " & i & "<br />")
Next
' Output:
' The number is 1
' The number is 2
' The number is 3
' The number is 4
' The number is 5
Try other methods by searching on the site. That is if this doesn’t work