From 2c5453e3bdd873e2fd84b4d468ac92eec1239133 Mon Sep 17 00:00:00 2001 From: allison-strandberg <55810428+allison-strandberg@users.noreply.github.com> Date: Mon, 11 Nov 2019 10:48:51 -0500 Subject: [PATCH] Clarify instructions (#37735) Closes #37734 --- .../comparisons-with-the-logical-and-operator.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comparisons-with-the-logical-and-operator.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comparisons-with-the-logical-and-operator.english.md index 4e856dcce6..3a38b289e9 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comparisons-with-the-logical-and-operator.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comparisons-with-the-logical-and-operator.english.md @@ -33,7 +33,7 @@ return "No"; ## Instructions
-Combine the two if statements into one statement which will return "Yes" if val is less than or equal to 50 and greater than or equal to 25. Otherwise, will return "No". +Replace the two if statements with one statement, using the && operator, which will return "Yes" if val is less than or equal to 50 and greater than or equal to 25. Otherwise, will return "No".
## Tests