Showing posts with label for loop. Show all posts
Showing posts with label for loop. Show all posts

Monday, September 10, 2012

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>