placed a semicolon after this function expression

This commit is contained in:
Mrchazaaa 2018-10-28 14:38:32 +00:00 committed by GitHub
parent dc904d122e
commit 14b27426db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -375,7 +375,7 @@ In other words, it's roughly the same as:
```js ```js
let func = function(arg1, arg2, ...argN) { let func = function(arg1, arg2, ...argN) {
return expression; return expression;
} };
``` ```
...But much more concise. ...But much more concise.