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) );