Skip to content

Commit 4524596

Browse files
authored
Merge pull request #1202 from dagolinuxoid/patch-3
insert the 'if' word
2 parents b6b06f6 + 9b55869 commit 4524596

File tree

1 file changed

+1
-1
lines changed
  • 1-js/06-advanced-functions/06-function-object

1 file changed

+1
-1
lines changed

1-js/06-advanced-functions/06-function-object/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function sayHi() {
2424
alert(sayHi.name); // sayHi
2525
```
2626

27-
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:
27+
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:
2828

2929
```js run
3030
let sayHi = function() {

0 commit comments

Comments
 (0)