Javascript
Sunday, January 12, 2014
JavaScript Do While Loop Example.
<html>
<body>
<script>
var m=5;
do
{
document.write(m+"<br>");
m++;
}while (m<=10);
</script>
</body>
<html>
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment