码迷,mamicode.com
首页 > 其他好文 > 详细

Set和Map的区别 (@es6)

时间:2019-05-23 15:58:57      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:title   ons   通过   结构   键值   from   缺点   成员   不重复   

Set结构是类似于数组结构,但是成员都是不重复的值

缺点是没办法像数组一样通过下标取值的方法.

构造:
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]

Map结构是键值对集合(Hash结构)

构造:
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"

Set和Map的区别 (@es6)

标签:title   ons   通过   结构   键值   from   缺点   成员   不重复   

原文地址:https://www.cnblogs.com/IT123/p/10912160.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!