From 80eafdad6e4f0494685de073fd8b8bcc0a2cb099 Mon Sep 17 00:00:00 2001 From: Ivaylo Karafeizov Date: Wed, 21 Sep 2022 12:21:47 +0300 Subject: [PATCH] Add while statement in JavaScript roadmap (#1819) * Update 105-while-statement.md * Update content/roadmaps/106-javascript/content/106-javascript-loops-iterations/105-while-statement.md Co-authored-by: Kamran Ahmed --- .../106-javascript-loops-iterations/105-while-statement.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/106-javascript/content/106-javascript-loops-iterations/105-while-statement.md b/content/roadmaps/106-javascript/content/106-javascript-loops-iterations/105-while-statement.md index 7864b9484..4619df332 100644 --- a/content/roadmaps/106-javascript/content/106-javascript-loops-iterations/105-while-statement.md +++ b/content/roadmaps/106-javascript/content/106-javascript-loops-iterations/105-while-statement.md @@ -1 +1,6 @@ -# While statement \ No newline at end of file +# while statement + +The `while` statement creates a loop that executes a specified statement as long as the test condition evaluates to `true`. The condition is evaluated before executing the statement. + +Free Content +While Statement - MDN