diff --git a/1-js/05-data-types/05-array-methods/article.md b/1-js/05-data-types/05-array-methods/article.md index 83487cee..a378bd0f 100644 --- a/1-js/05-data-types/05-array-methods/article.md +++ b/1-js/05-data-types/05-array-methods/article.md @@ -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 );