From 14b27426db1bade5e84dc1993f7cd4d91c9c0b0e Mon Sep 17 00:00:00 2001 From: Mrchazaaa Date: Sun, 28 Oct 2018 14:38:32 +0000 Subject: [PATCH] placed a semicolon after this function expression --- 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 201a1ffe..b90ed2ef 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 @@ -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.