Merge pull request #487 from welkin25/master

fixing broken link on array-methods page
This commit is contained in:
Ilya Kantor 2018-08-30 13:41:34 +03:00 committed by GitHub
commit 6567236735
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -417,7 +417,7 @@ alert(arr); // *!*1, 2, 15*/!*
````
````smart header="Arrow functions for the best"
Remember [arrow functions](info:function-expression#arrow-functions)? We can use them here for neater sorting:
Remember [arrow functions](info:function-expressions-arrows#arrow-functions)? We can use them here for neater sorting:
```js
arr.sort( (a, b) => a - b );