Skip to content

Commit c199655

Browse files
committed
Improved exercise instructions.
Made the exercise instructions clearer. Replaced improper usage of "which" with "that."
1 parent 49e24e9 commit c199655

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

loops/while.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ do {
3232

3333
---
3434

35-
Create using a while-loop a variable named `message` which equals the concatenation of integers (0, 1, 2, ...) as long as its length (`message.length`) is less than 100.
35+
Using a while-loop, create a variable named `message` that equals the concatenation of integers (0, 1, 2, ...) as long as its length (`message.length`) is less than 100.
3636

3737
```js
3838
var message = "";

0 commit comments

Comments
 (0)