Skip to content

Commit 8019572

Browse files
authored
Merge pull request #504 from amarkantk14/patch-1
Create article.md
2 parents 23ee5a4 + 32af036 commit 8019572

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)