diff --git a/README.md b/README.md index 7586677..8d706cd 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ # javascript学习笔记 - **[JavaScript之面向对象](https://github.com/codingplayboy/javascript_notes/blob/master/js_object.md)** -- **[JavaScript之文档加载load与ready](https://github.com/codingplayboy/javascript_notes/blob/master/js_domReady.md)** \ No newline at end of file +- **[JavaScript之文档加载load与ready](https://github.com/codingplayboy/javascript_notes/blob/master/js_domReady.md)** +- **[JavaScript之数组排序、去重及最值算法](https://github.com/codingplayboy/javascript_notes/blob/master/js_arrAlgortithm.md)** \ No newline at end of file diff --git a/js_arrAlgortithm.md b/js_arrAlgortithm.md index 782216d..ec4e851 100644 --- a/js_arrAlgortithm.md +++ b/js_arrAlgortithm.md @@ -1,4 +1,4 @@ -#JavaScript数组值之多样操作 +#JavaScript数组值之排序、去重及最值操作 本篇主要总结常见的排序算法在JavaScript中的实现及js数组取最值,去重,篇幅较长,如有需要可以跳越阅读。