From 6e8f1177d799c72d0090ba5104fa7d438dd44e78 Mon Sep 17 00:00:00 2001 From: jorgesmash Date: Wed, 19 Jul 2017 12:25:40 -0400 Subject: [PATCH] Update: 15-function-expressions-arrows/article.md This code snippet should be shown with the semicolon: // Function Expression let sum = function(a, b) { return a + b; } --- 1-js/02-first-steps/15-function-expressions-arrows/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.