diff --git a/Array-sort/main.js b/Array-sort/main.js index 90185d1..55f5abc 100644 --- a/Array-sort/main.js +++ b/Array-sort/main.js @@ -55,7 +55,7 @@ function quickSort(arr){ rightArr.push(_arr[i]); } } - return quickSort(leftArr).concat(temp, quickSort(rightArr)); + return quickSort(leftArr).concat([temp], quickSort(rightArr)); } //插入排序(v8在10个以内的数组是这么排序的) function insertSort(arr){ diff --git a/date-format/Main/index.js b/date-format/Main/index.js index 0d4e953..b127020 100644 --- a/date-format/Main/index.js +++ b/date-format/Main/index.js @@ -1,6 +1,7 @@ /** * Created by Stevenzwzhai on 2017/2/8. */ + 请移步https://github.com/Stevenzwzhai/z-mimo (function(date){ var _date = date; })(date) \ No newline at end of file