Create article.md

typo for evaluates words.
This commit is contained in:
Amarkant Kumar 2017-04-15 01:14:38 +05:30 committed by GitHub
parent 5b4ea88f4a
commit 32af036864

View file

@ -372,7 +372,7 @@ There's one more syntax for creating functions -- very simple and concise. It's
let func = (arg1, arg2, ...argN) => expression let func = (arg1, arg2, ...argN) => expression
``` ```
...This creates a function `func` that has arguments `arg1..argN`, evaludates the `expression` on the right side with their use and returns its result. ...This creates a function `func` that has arguments `arg1..argN`, evaluates the `expression` on the right side with their use and returns its result.
In other words, it's roughly the same as: In other words, it's roughly the same as: