en.javascript.info/1-js/02-first-steps/11-logical-operators/3-alert-1-null-2/solution.md
Jared 41da5cd8df
updated solution.md
removed redundant spacing
2022-06-05 11:21:23 +08:00

109 B

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

alert(1 && null && 2);