Merge pull request #104 from jorgesmash/patch-1

Update: 15-function-expressions-arrows/article.md
This commit is contained in:
Ilya Kantor 2017-07-23 11:29:40 +02:00 committed by GitHub
commit a2bbf6337f

View file

@ -195,7 +195,7 @@ First, the syntax: how to see what is what in the code.
// Function Expression
let sum = function(a, b) {
return a + b;
}
};
```
The more subtle difference is *when* a function is created by JavaScript engine.