JavaScript do while Loop
You are Here:
JavaScript do while Loop
The do while
loop executes a specified statement until the test condition evaluates to false.
Note: Unlike while loop, In do while
loop, the condition is evaluated after executing the statement, resulting in the specified statement executing at least once.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<p id="point"></p>
<script>
var x = document.getElementById("point");
var i = 1;
var txt = "";
do{
txt += i;
i++;
}while(i < 0);
x.innerText = txt;
</script>
</body>
</html>
Syntax
do{
// code block
}while(condition);
Reminder
Hi Developers, we almost covered 97% of JavaScript Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in JavaScript.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.