en.javascript.info/1-js/02-first-steps/11-logical-operators/5-alert-and-or/task.md
2018-11-08 17:02:03 +01:00

12 lines
114 B
Markdown

importance: 5
---
# The result of OR AND OR
What will the result be?
```js
alert( null || 2 && 3 || 4 );
```