Skip to content

Commit c720872

Browse files
authored
Assignment operator in code formatting
1 parent 6109448 commit c720872

File tree

1 file changed

+2
-3
lines changed
  • 1-js/02-first-steps/15-function-expressions-arrows

1 file changed

+2
-3
lines changed

1-js/02-first-steps/15-function-expressions-arrows/article.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,8 @@ First, the syntax: how to see what is what in the code.
187187
return a + b;
188188
}
189189
```
190-
- *Function Expression:* a function, created inside an expression or inside another syntax construct.
191-
192-
Here, the function is created at the right side of the "assignment expression =":
190+
- *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" `=`:
191+
193192
```js
194193
// Function Expression
195194
let sum = function(a, b) {

0 commit comments

Comments
 (0)