set() method adds or updates an element with a specified key and a value to a Map 对象。

The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.

句法

myMap.set(key, value)
					

参数

key
The key of the element to add to the Map 对象。
value
The value of the element to add to the Map 对象。

返回值

Map 对象。

范例

使用 set()

let myMap = new Map()
// Add new elements to the map
myMap.set('bar', 'foo')
myMap.set(1, 'foobar')
// Update an element in the map
myMap.set('bar', 'baz')
					

使用 set() with chaining

Since the set() method returns back the same Map object, you can chain the method call like below:

// Add new elements to the map with chaining.
myMap.set('bar', 'foo')
     .set(1, 'foobar')
     .set(2, 'baz');
					

规范

规范
ECMAScript (ECMA-262)
The definition of 'Map.prototype.set' in that specification.

浏览器兼容性

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request. 更新 GitHub 上的兼容性数据
Desktop Mobile Server
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet Node.js
set Chrome 38 Edge 12 Firefox 13 IE 部分支持 11
部分支持 11
Returns 'undefined' instead of the 'Map' object.
Opera 25 Safari 8 WebView Android 38 Chrome Android 38 Firefox Android 14 Opera Android 25 Safari iOS 8 Samsung Internet Android 3.0 nodejs 0.12
0.12
0.10 Disabled
Disabled From version 0.10: this feature is behind the --harmony runtime flag.

图例

完整支持

完整支持

部分支持

部分支持

见实现注意事项。

用户必须明确启用此特征。

用户必须明确启用此特征。

另请参阅

元数据

  • 最后修改: