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

12 lines
133 B
Markdown

importance: 5
---
# What's the result of OR?
What the code below is going to output?
```js
alert( null || 2 || undefined );
```