From 5391f6699644bcf8184dcfc5aa75898942624076 Mon Sep 17 00:00:00 2001 From: George Mihov <53583283+gmihov001@users.noreply.github.com> Date: Fri, 3 Sep 2021 10:03:38 -0400 Subject: [PATCH] Update README.md --- exercises/11-Do-while/README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/exercises/11-Do-while/README.md b/exercises/11-Do-while/README.md index 195e6b41..6fbfc838 100644 --- a/exercises/11-Do-while/README.md +++ b/exercises/11-Do-while/README.md @@ -18,9 +18,12 @@ do { ## 📝 Instructions: -1. Print every iteration number on the console from 20 to 0 but concatenate an exclamation point to the output if the number is a module of 5. +1. Print every iteration number on the console from 20 to 0. -2. At the end `console.log()`de `LIFTOFF`. +2. Print the numbers that are module of 5 with a concatenated exclamation mark. + +3. When the loop reaches zero, print `LIFTOFF` instead of `0`. This `console.log()` statement must go **inside** of the loop. + ### Expected result: @@ -38,5 +41,6 @@ do { 10! . . +1 LIFTOFF -``` \ No newline at end of file +```