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