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