2018-11-11 map

使用set排重数组。

var s = new Set([1, 2, 3]);
console.log(s);
var ary = [2,3,4,66,77,3,55,99,4,555,66,5,3,3,5]
var non = [...(new Set(ary))].sort((a,b)=>a>b)
console.log(non);

map的方法总结

const lg = console.log

/*
* 初始化Map数据结构
* */
const map = new Map([
    ['name', 'wu.yu'],
    ['code', '007']
]);
// 设置键值对 set(key,val)
map.set('englishName','David').set('favitor',['bike','code'])
map.get('englishName')
map.delete('englishName')

map.set({},'oneObj')
map.set({},'twoObj')
lg('所有的值',map.values())
lg('所有的键',map.keys())
lg('所有键值对',map.entries())
lg('map的个数',map.size)

你可能感兴趣的:(2018-11-11 map)