Skip to content

Commit 9b55869

Browse files
authored
insert the 'if' word
even it's -> even if it's
1 parent b6b06f6 commit 9b55869

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

+1-1
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)