赞 | 23 |
VIP | 22 |
好人卡 | 18 |
积分 | 608 |
经验 | 44466 |
最后登录 | 2024-11-9 |
在线时间 | 1934 小时 |
Lv6.析梦学徒 Fuzzy Ginkgo Taciturn Knight
- 梦石
- 0
- 星屑
- 60819
- 在线时间
- 1934 小时
- 注册时间
- 2010-6-26
- 帖子
- 1605
|
本帖最后由 orzfly 于 2015-11-1 12:30 编辑
- Array.prototype.concat.apply([], [[{a:"a",appearTime:1}, {a:"b",appearTime:2}],[{a:"d",appearTime:4}, {a:"c",appearTime:3}]]).sort(function(a, b) {return a.appearTime - b.appearTime;});
复制代码 虽然最前面和 flatten 还是有一定本质区别的逃(
如果有 lodash,那可以- _([[{a:"a",appearTime:1}, {a:"b",appearTime:2}],[{a:"d",appearTime:4}, {a:"c",appearTime:3}]]).flatten().sortBy("appearTime").value()
复制代码 |
|