VBScript Do while looper

Do while looper

<html>
<body>

<script type="text/vbscript">
i=0
do while i < 5
  document.write(i & "<br>")
  i=i+1
loop
</script>

</body>
</html>