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

6 lines
111 B
Markdown

The answer: `null`, because it's the first falsy value from the list.
```js run
alert( 1 && null && 2 );
```