当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript Set clear()用法及代码示例


设置clear()方法JavaScript 中用于从集合中删除所有元素并使其为空。

设置clear()方法语法

mySet.clear();

设置clear()方法参数

该方法不接受任何参数。

设置clear()方法返回值

返回未定义的值。

设置clear()方法示例

示例 1:使用 Set clear() 方法清空集合

下面是一个示例设置.clear()方法。

Javascript


// Create a new set using Set() constructor
let myset = new Set();
// Append new elements to the
// set using add() method
myset.add(23);
// Print the modified set
console.log(myset);
console.log(myset.size);
// The clear() method will remove 
// all elements from the set 
myset.clear();
// This will return 0 as there
// are no elements present in the Set
console.log(myset.size);
输出
Set(1) { 23 }
1
0


解释

  • 在上面的示例中,我们使用 Set() 构造函数初始化一个名为 myset 的新 Set。
  • 使用 add() 方法将元素 23 添加到集合中,并打印集合及其大小。
  • 使用 clear() 方法清除集合并再次打印其大小,这确认它为 0。

示例 2:使用 Set clear() 方法清空集合

下面是一个例子设置.clear()方法。

Javascript


// Create a new set using Set() constructor
let myset = new Set();
// Append new elements to the
// set using add() method
myset.add("Manchester");
myset.add("London");
myset.add("Leeds");
// Print the modified set
console.log(myset);
console.log(myset.size);
// The clear() method will remove
// all elements from the set 
myset.clear();
// This will return 0 as the set is empty
console.log(myset.size);
输出
Set(3) { 'Manchester', 'London', 'Leeds' }
3
0


解释

  • 在上面的示例中,我们使用 Set() 构造函数初始化一个名为 myset 的新 Set。
  • 使用 add() 方法将三个字符串(“Manchester”、“London” 和 “Leeds”)添加到集合中,并打印该集合及其大小。
  • 使用 clear() 方法清除集合并再次打印其大小,确认其为 0,因为集合为空。

我们有 Javascript Set 方法的完整列表,要检查这些方法,请浏览此JavaScript 中的集合文章。

支持的浏览器



相关用法


注:本文由纯净天空筛选整理自shinjanpatra大神的英文原创作品 JavaScript Set clear() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。