minor fixes

This commit is contained in:
Ilya Kantor 2022-04-14 06:35:11 +03:00
parent 613e921f73
commit 246156d6e2
4 changed files with 8 additions and 8 deletions

View file

@ -256,7 +256,7 @@ We covered three ways to create a function in JavaScript:
3. Arrow functions:
```js
// expression at the right side
// expression on the right side
let sum = (a, b) => a + b;
// or multi-line syntax with { ... }, need return here: