--- title: Map.prototype.clear() slug: Web/JavaScript/Reference/Global_Objects/Map/clear tags: - ECMAScript 2015 - JavaScript - Map translation_of: Web/JavaScript/Reference/Global_Objects/Map/clear ---
{{JSRef}}

clear()方法会移除Map对象中的所有元素。

{{EmbedInteractiveExample("pages/js/map-prototype-clear.html")}}

语法

myMap.clear();

返回值

{{jsxref("undefined")}}.

示例

调用clear方法

var myMap = new Map();
myMap.set("bar", "baz");
myMap.set(1, "foo");

myMap.size;       // 2
myMap.has("bar"); // true

myMap.clear();

myMap.size;       // 0
myMap.has("bar")  // false

规范

Specification Status Comment
{{SpecName('ES2015', '#sec-map.prototype.clear', 'Map.prototype.clear')}} {{Spec2('ES2015')}} Initial definition.
{{SpecName('ESDraft', '#sec-map.prototype.clear', 'Map.prototype.clear')}} {{Spec2('ESDraft')}}  

浏览器兼容

{{Compat("javascript.builtins.Map.clear")}}

相关链接