From 3fb362f2314306b0465b65338fd6a4fb64283251 Mon Sep 17 00:00:00 2001 From: Ivaylo Karafeizov Date: Wed, 21 Sep 2022 12:21:19 +0300 Subject: [PATCH] Add do...while statement in JavaScript roadmap (#1820) * Update 104-do-while-statement.md * Update content/roadmaps/106-javascript/content/106-javascript-loops-iterations/104-do-while-statement.md Co-authored-by: Kamran Ahmed --- .../104-do-while-statement.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/106-javascript/content/106-javascript-loops-iterations/104-do-while-statement.md b/content/roadmaps/106-javascript/content/106-javascript-loops-iterations/104-do-while-statement.md index e8001fc66..0cda8042a 100644 --- a/content/roadmaps/106-javascript/content/106-javascript-loops-iterations/104-do-while-statement.md +++ b/content/roadmaps/106-javascript/content/106-javascript-loops-iterations/104-do-while-statement.md @@ -1 +1,7 @@ -# Do while statement \ No newline at end of file +# do...while statement + +The `do...while` statement creates a loop that executes a specified statement until the test condition evaluates to `false`. The condition is evaluated after executing the statement, resulting in the specified statement executing at least once. + +Free Content +do...while - MDN +JavaScript do...while Loop - W3Schools