updated solution.md

removed redundant spacing
This commit is contained in:
Jared 2022-06-05 11:21:23 +08:00 committed by GitHub
parent 2efe0dce18
commit 41da5cd8df
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. The answer: `null`, because it's the first falsy value from the list.
```js run ```js run
alert( 1 && null && 2 ); alert(1 && null && 2);
``` ```