标签:title ons 通过 结构 键值 from 缺点 成员 不重复
缺点是没办法像数组一样通过下标取值的方法.
构造:
let set = new Set([1,2,3]);
set.size // 3
数组去重:
let arr = [1,2,3,4,5,4,23,1,3];
arr= Array.from(new Set(arr)); // [1, 2, 3, 4, 5, 23]
构造:
const map = new Map([
['name', '张三'],
['title', 'Author']
]);
map.size // 2
map.has('name') // true
map.get('name') // "张三"
map.has('title') // true
map.get('title') // "Author"
标签:title ons 通过 结构 键值 from 缺点 成员 不重复
原文地址:https://www.cnblogs.com/IT123/p/10912160.html