Skip to content

Commit 14b2742

Browse files
authored
placed a semicolon after this function expression
1 parent dc904d1 commit 14b2742

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ In other words, it's roughly the same as:
375375
```js
376376
let func = function(arg1, arg2, ...argN) {
377377
return expression;
378-
}
378+
};
379379
```
380380

381381
...But much more concise.

0 commit comments

Comments
 (0)