ES6中map数据结构

Posted eternityz

tags:

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

key值可以任意值或对象,value值可以是任意值或对象
let json={
    name:'eternity',
    skill:'java'
};
let map=new Map();
map.set(json,'I am');
console.log(map);
map.set('zhang',json);
console.log(map);

//map增删查
map.get(json);

//删
map.delete('zhang');

//全删
map.clear();

//查找
map.has(json);//true
map.has('zhang');//false

//长度(属性,不是方法)
map.size;

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

ES6中map数据结构

ES6新特性:map和reduce

ES6 第十四节 map数据结构

ES6中map数据结构学习

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

es6-Set和Map数据结构