From 37ace2fb1ff2900560502a23ef41c7ab9ac59820 Mon Sep 17 00:00:00 2001 From: Jools Date: Sun, 14 May 2017 19:52:52 +0200 Subject: [PATCH] minor change to "while loop" description (#14790) --- .../basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json b/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json index c74cfece16..f8ece3ed79 100755 --- a/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json +++ b/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json @@ -4949,7 +4949,7 @@ "title": "Iterate with JavaScript While Loops", "description": [ "You can run the same code multiple times by using a loop.", - "Another type of JavaScript loop is called a \"while loop\", because it runs \"while\" a specified condition is true and stops once that condition is no longer true.", + "The first type of loop we will learn is called a \"while\" loop because it runs \"while\" a specified condition is true and stops once that condition is no longer true.", "
var ourArray = [];
var i = 0;
while(i < 5) {
ourArray.push(i);
i++;
}
", "Let's try getting a while loop to work by pushing values to an array.", "
",