diff --git a/1-js/02-first-steps/15-function-expressions-arrows/article.md b/1-js/02-first-steps/15-function-expressions-arrows/article.md index 44cf3764..cebda86b 100644 --- a/1-js/02-first-steps/15-function-expressions-arrows/article.md +++ b/1-js/02-first-steps/15-function-expressions-arrows/article.md @@ -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.