Javascript While Do Loop

Javascript While Do Loop

Javascript While Do Loop


javascript while do loop,do while en javascript,javascript break for loop,do while loop javascript,what does do in javascript


Do

<html>
<head>
<title>
welcome
</title>
</head>
<body>
<script>
var a;
a=1;
do
{
document.write("<br>"+a);
a++;
}
while(a<=20);
</script>
</body>
</html>


Post a Comment

1 Comments