var i; while (i<100){ document.write(i); i++; }
<script type="text/javascript"> var i=0; while (i<100){ document.write(i); i++; } </script>