官术网_书友最值得收藏!

Maps

ECMAScript 6 introduces maps. A map is a simple key-value map and can iterate its elements in the order of their insertion. The following snippet shows some methods of the Map type and their usage:

var founders = new Map();
founders.set("facebook", "mark");
founders.set("google", "larry");
founders.size; // 2
founders.get("twitter"); // undefined
founders.has("yahoo"); // false

for (var [key, value] of founders) {
  console.log(key + " founded by " + value);
}
// "facebook founded by mark"
// "google founded by larry"
主站蜘蛛池模板: 巴楚县| 金山区| 阜康市| 梁河县| 常州市| 同仁县| 进贤县| 武川县| 库伦旗| 东城区| 揭阳市| 象州县| 遂平县| 东乡县| 盐城市| 屏南县| 台中市| 扬中市| 江津市| 城市| 大厂| 河北区| 岚皋县| 辽宁省| 乃东县| 贡嘎县| 安国市| 远安县| 镇雄县| 永清县| 博爱县| 锡林浩特市| 祁东县| 绿春县| 唐山市| 武鸣县| 巴塘县| 云和县| 沂水县| 大悟县| 武义县|