From 610c164510e4d780584fb33e1256fed1213948d1 Mon Sep 17 00:00:00 2001 From: Jay Date: Fri, 9 Nov 2018 08:22:37 +0100 Subject: [PATCH] Improved phrasing --- 1-js/02-first-steps/11-logical-operators/2-alert-or/task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/11-logical-operators/2-alert-or/task.md b/1-js/02-first-steps/11-logical-operators/2-alert-or/task.md index bc622abf..3908fa2e 100644 --- a/1-js/02-first-steps/11-logical-operators/2-alert-or/task.md +++ b/1-js/02-first-steps/11-logical-operators/2-alert-or/task.md @@ -4,7 +4,7 @@ importance: 3 # What's the result of OR'ed alerts? -What the code below will output? +What will the code below output? ```js alert( alert(1) || 2 || alert(3) );