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

6 lines
99 B
Markdown

The answer is `2`, that's the first truthy value.
```js run
alert( null || 2 || undefined );
```