Members
获取集合中的项目数。
获取集合中所有值的无序数组。这是一个实时数组,将自动反映集合中的值,不应直接修改。
Methods
确定提供的键是否在数组中。
Name | Type | Description |
---|---|---|
key
|
String | Number | 检查的关键。 |
Returns:
如果键在数组中,则为
true
,否则为
false
。
检索与提供的键关联的值。
Name | Type | Description |
---|---|---|
key
|
String | Number | 要检索其值的键。 |
Returns:
关联的值,如果集合中不存在键,则为 undefined。
从集合中移除一个键值对。
Name | Type | Description |
---|---|---|
key
|
String | Number | 要删除的密钥。 |
Returns:
如果它已被删除,则为真,如果键不在集合中,则为假。
清除集合。
将提供的键与提供的值相关联。如果键已经存在,它会被新值覆盖。
Name | Type | Description |
---|---|---|
key
|
String | Number | 唯一标识符。 |
value
|
* | 与提供的键关联的值。 |