05 2021 档案

摘要:/** * 数组内容排序(包括汉字也能排序) */sort (arr) { arr.sort(function (item1, item2) { return item1.localeCompare(item2, 'zh-CN') }) return arr},/** * 数据去重 */dedupl 阅读全文
posted @ 2021-05-07 14:25 流星星星星星 阅读(82) 评论(0) 推荐(0)