From c720872bd2de4a0cf49920ce12d4625a7d4d8f1c Mon Sep 17 00:00:00 2001 From: Brent Guffens Date: Thu, 18 Jan 2018 21:32:32 +0100 Subject: [PATCH] Assignment operator in code formatting --- .../02-first-steps/15-function-expressions-arrows/article.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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 a7a840d0..5b1da956 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 @@ -187,9 +187,8 @@ First, the syntax: how to see what is what in the code. return a + b; } ``` -- *Function Expression:* a function, created inside an expression or inside another syntax construct. - - Here, the function is created at the right side of the "assignment expression =": +- *Function Expression:* a function, created inside an expression or inside another syntax construct. Here, the function is created at the right side of the "assignment expression" `=`: + ```js // Function Expression let sum = function(a, b) {