标签:技术分享 nbsp bubuko inf api src img 分享 image
1. 去重
let a=[1,1,1,1,1,1,1,2]去重: let b = [...new Set(a)]
->[1, 2]
es6 部分api
原文地址:https://www.cnblogs.com/tongbiao/p/10015373.html