fixing broken link on array-methods page

fixing broken link on array-methods page
This commit is contained in:
Yao Yu 2018-08-28 00:23:00 -04:00
parent 62226efedc
commit d2329c197c

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 );