Merge pull request #581 from Mrchazaaa/patch-1

placed a semicolon after this function expression
This commit is contained in:
Ilya Kantor 2018-11-03 19:33:15 +03:00 committed by GitHub
commit 6be46c10eb
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
let func = function(arg1, arg2, ...argN) {
return expression;
}
};
```
...But much more concise.