Showing posts with label javascript loop example. Show all posts
Showing posts with label javascript loop example. Show all posts

Monday, September 10, 2012

while loop example in javascript


while loop example in javascript

<html>
<script language="Javascript">
var a=1
while (a<=10)
{
document.writeln("<br>"+a);
a++
}
</script>
</html>


for loop example in Javascript


for loop example in Javascript


<html>
<script language="Javascript">
var a
for( a=1;a<=10;a++)
{
document.writeln("<br>"+a);
}
</script>
</html>