Skip to content

Commit dc14378

Browse files
authored
Update article.md
the comment number is missing when the we mention line 2
1 parent 34a80e7 commit dc14378

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • 1-js/02-first-steps/16-function-expressions

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

Lines changed: 1 addition & 1 deletion
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)