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

6 lines
109 B
Markdown

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