en.javascript.info/1-js/02-first-steps/11-logical-operators/2-alert-or/task.md
Ilya Kantor ab9ab64bd5 up
2017-03-21 14:41:49 +03:00

12 lines
139 B
Markdown

importance: 3
---
# What's the result of OR'ed alerts?
What the code below will output?
```js
alert( alert(1) || 2 || alert(3) );
```