This commit is contained in:
Alexey Pyltsyn 2019-11-08 23:50:31 +03:00 committed by GitHub
parent b2e53efe2b
commit 53ae1bb015
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -272,7 +272,7 @@ We covered three ways to create a function in JavaScript:
- Parameters can have default values: `function sum(a = 1, b = 2) {...}`.
- Functions always return something. If there's no `return` statement, then the result is `undefined`.
Details: see <info:function-basics>, <info:function-expressions-arrows>.
Details: see <info:function-basics>, <info:arrow-functions-basics>.
## More to come