Monday, September 10, 2012

Javascript Do while Example


Javascript Do while Example 



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

0 comments:

Post a Comment