Skip to content

Commit a087279

Browse files
authored
Merge pull request #3804 from mhi1627/patch-1
Update article.md
2 parents e466826 + dc14378 commit a087279

File tree

1 file changed

+1
-1
lines changed
  • 1-js/02-first-steps/16-function-expressions

1 file changed

+1
-1
lines changed

Diff for: 1-js/02-first-steps/16-function-expressions/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ let sayHi = function() { // (1) create
8282
alert( "Hello" );
8383
};
8484

85-
let func = sayHi;
85+
let func = sayHi; //(2)
8686
// ...
8787
```
8888

0 commit comments

Comments
 (0)