Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

js set map #60

Open
0xtokobin opened this issue Jun 6, 2023 · 0 comments
Open

js set map #60

0xtokobin opened this issue Jun 6, 2023 · 0 comments

Comments

@0xtokobin
Copy link
Collaborator

set 类数组

map 类对象

以下是 Set 对象的主要方法和属性:

add(value):添加一个新的值到 Set 对象。
delete(value):移除 Set 的中与这个值相等的元素。
has(value):返回一个布尔值,表示该值在 Set 中存在与否。
clear():清除 Set 对象中的所有元素。
size:返回 Set 对象中元素的个数。
values() / keys():返回一个新的 Iterator 对象,它包含 Set 对象中的按插入顺序排列的所有元素。
以下是 Map 对象的主要方法和属性:

set(key, value):设置 Map 对象中键的值。返回该 Map 对象。
get(key):返回键对应的值,如果不存在,则返回 undefined。
has(key):返回一个布尔值,表示某个键是否在当前 Map 对象中。
delete(key):删除任何与键相关联的值。
clear():清除 Map 对象中的所有键/值对。
size:返回 Map 对象中的元素个数。
keys():返回一个新的 Iterator 对象,它包含 Map 对象中的按插入顺序排列的所有键。
values():返回一个新的 Iterator 对象,它包含 Map 对象中的按插入顺序排列的所有值。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant