From 43f3300c8ffceff99410882c3c4f15943bc21b28 Mon Sep 17 00:00:00 2001 From: Jay Date: Fri, 9 Nov 2018 08:29:47 +0100 Subject: [PATCH] Improved phrasing --- 1-js/02-first-steps/11-logical-operators/8-if-question/task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/11-logical-operators/8-if-question/task.md b/1-js/02-first-steps/11-logical-operators/8-if-question/task.md index f824779b..55987121 100644 --- a/1-js/02-first-steps/11-logical-operators/8-if-question/task.md +++ b/1-js/02-first-steps/11-logical-operators/8-if-question/task.md @@ -6,7 +6,7 @@ importance: 5 Which of these `alert`s are going to execute? -What will be the results of the expressions inside `if(...)`? +What will the results of the expressions be inside `if(...)`? ```js if (-1 || 0) alert( 'first' );