6 lines
99 B
Markdown
6 lines
99 B
Markdown
The answer is `2`, that's the first truthy value.
|
|
|
|
```js run
|
|
alert( null || 2 || undefined );
|
|
```
|
|
|