JavaScript Do while loop
JavaScript Do while loop
<html>
<head>
<title>JavaScript Do while loop</title>
</head>
<body>
<script>
var i=0;
do{
i++;
document.write(i+"<br>");
}
while(i<=10)
</script>
</body>
</html>
PHP Interview Questions and Answers PHP(Hypertext Preprocessor) most commonly asked Interview questions and answers are explain in sim...
Created By Infotech Solution
Post A Comment
No comments :
Thanks For visiting Infotech Solutuion Blog