ES6 基础(set数据结构和map数据结构)

Posted 七分sunshine!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6 基础(set数据结构和map数据结构)相关的知识,希望对你有一定的参考价值。

set数据结构:(每一项都不一样)

API:  add(); delete();clear();has();size属性;

let arr=["wowo","hh","web"];

let setArr = new Set(arr);

console.log(setArr );      //Set(3) {"wowo", "hh", "web"}
typeof setArr                  // object

setArr.add("呵呵哒");
console.log(setArr );      //Set(4) {"wowo", "hh", "web","呵呵哒"}
                                      //其实追加的位置并没有顺序;
setArr.delete("wowo");
console.log(setArr);      //Set(3) { "hh", "web","呵呵哒"}

clear();会情况全部内容;has返回true或false;

用for of 或 foreach()来遍历 set数据结构;

 

WeakSet数据结构;

需要先声明对象之后然后add进去;不然会报错;在这 weakSet数据结构只能存放对象,且不能被遍历;

 

Map数据结构:(API set( ); get( );  delete( ); has(); clear(); size() )

先看看一个一个普通的json对象:

let  json ={"name":"liuliu","age":23};

console.log(json.name); 这个过程中取到name的值,是会循环json中的每个属性的;

而map不一样它是按映射存放的而且 key,val 可以为其他任何数据类型:

let map =new Map();

map.set("age","22");

map.get("age") //22;

map.has("age") //true;

map.delete("age");

map.size;        //0;

 

以上是关于ES6 基础(set数据结构和map数据结构)的主要内容,如果未能解决你的问题,请参考以下文章

ES6Set和Map数据结构

ES6的新特性(12)——Set 和 Map 数据结构

es6-Set和Map数据结构

ES6新特性:Set和Map

ES6之路第九篇:Set和Map数据结构

ES6 之 Set数据结构和Map数据结构 Iterator和for...of循环