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