Merge pull request #3037 from jarede-dev/patch-1

updated solution.md
This commit is contained in:
Ilya Kantor 2022-06-13 08:04:16 +02:00 committed by GitHub
commit 5fc0a635e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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