Skip to content

Commit 32af036

Browse files
authored
Create article.md
typo for evaluates words.
1 parent 5b4ea88 commit 32af036

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ There's one more syntax for creating functions -- very simple and concise. It's
372372
let func = (arg1, arg2, ...argN) => expression
373373
```
374374

375-
...This creates a function `func` that has arguments `arg1..argN`, evaludates the `expression` on the right side with their use and returns its result.
375+
...This creates a function `func` that has arguments `arg1..argN`, evaluates the `expression` on the right side with their use and returns its result.
376376

377377
In other words, it's roughly the same as:
378378

0 commit comments

Comments
 (0)