Merge pull request #2203 from leviding/patch-25

OPT: change "false" to "falsy"
This commit is contained in:
Ilya Kantor 2020-11-11 18:54:47 +03:00 committed by GitHub
commit 611236fd7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -132,7 +132,7 @@ We can sketch it as:
</li>
</ul>
That's when the function starts to execute. The condition `n == 1` is false, so the flow continues into the second branch of `if`:
That's when the function starts to execute. The condition `n == 1` is falsy, so the flow continues into the second branch of `if`:
```js run
function pow(x, n) {