insert the 'if' word

even it's -> even if it's
This commit is contained in:
daGo 2019-08-02 11:46:48 +03:00 committed by GitHub
parent b6b06f6b35
commit 9b55869085
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,7 +24,7 @@ function sayHi() {
alert(sayHi.name); // sayHi alert(sayHi.name); // sayHi
``` ```
What's kind of funny, the name-assigning logic is smart. It also assigns the correct name to a function even it's created without one, and then immediately assigned: What's kind of funny, the name-assigning logic is smart. It also assigns the correct name to a function even if it's created without one, and then immediately assigned:
```js run ```js run
let sayHi = function() { let sayHi = function() {