en.javascript.info/1-js/02-first-steps/11-logical-ops/3-alert-1-null-2/solution.md
Ilya Kantor 9ad9063d00 up
2016-11-28 21:35:42 +03:00

111 B

The answer: null, because it's the first falsy value from the list.

alert( 1 && null && 2 );