[JavaScript] Set类型在JavaScript中的使用

news/2024/11/18 0:15:40/

初识Set

  • 在Set里,不能有重复的值。
let set = new Set()
set.add(1)
set.add(1)
console.log(set)

运行结果:
在这里插入图片描述
修改一下

let set = new Set()
set.add(1)
set.add('1')
console.log(set)

运行结果:
在这里插入图片描述

这里和对象进行一下比较:对象是不区分字符串和数字的,而且后面的会把前面的覆盖。

let obj = {1: 'hello','1': 'dust',
}
console.log(obj);

在这里插入图片描述


Set里的增删改查

  • 查找:set.has('dust')set.values()
  • 增加:set.add('good')
  • 删除:set.delete('hello')
  • 全部删除:set.clear()
let set = new Set(['hello', 'dust'])
console.log(set.size) //2
console.log(set.delete('hello')) //true
console.log(set.delete('hello123')) //false
console.log(set.has('dust')) //true
set.add('good')
console.log(set.values()) //[Set Iterator] { 'dust', 'good' }
console.log(set.clear()) //undefined
console.log(set.size) //0

类型之间互相帮助才是好兄弟

  • 例题:去除字符串内小于5的
let a = new Set('123456789')
let arr = [...a].filter((item) => item < 5)
a = new Set(arr)
console.log(a) //Set(4) { '1', '2', '3', '4' }
  • 例题:数组去重

这是我见过的最简单的写法了,震惊啊!

let array = [1, 2, 3, 4, 5, 1, 2, 3, 4]
array = [...new Set(array)]
console.log(array) //[ 1, 2, 3, 4, 5 ]
  • 例题:数组合并
let a = [1, 2, 3, 4, 5]
let b = [3, 4, 5, 6, 7, 8]
let set = new Set([...a, ...b])
let res = [...set]
console.log(res)

运行结果:
在这里插入图片描述


查看Set里的内容

let set = new Set(['hello', 'dust'])
console.log(set.entries())

运行结果:
在这里插入图片描述


Set的遍历

  • forEach的遍历
let set = new Set(['hello', 'dust'])
set.forEach((value,key,set)=>{console.log(value,key);
})

运行结果:
在这里插入图片描述

  • for-of遍历:
for (const value of set) {console.log(value)
}

运行结果:
在这里插入图片描述


http://www.ppmy.cn/news/607475.html

相关文章

netty学习(1):多个客户端与服务器通信

1. 基于前面一节netty学习&#xff08;1&#xff09;:1个客户端与服务器通信 只需要把服务器的handler改造一下即可&#xff0c;通过ChannelGroup 找到所有的客户端channel&#xff0c;发送消息即可。 package server;import io.netty.channel.*; import io.netty.channel.gr…

tensorflow 学习笔记-- tf.reduce_max、tf.sequence_mask

1、tf.reduce_max函数的作用&#xff1a;计算张量的各个维度上的元素的最大值。例子: import tensorflow as tfmax_value tf.reduce_max([1, 3, 2])with tf.Session() as sess: max_value sess.run(max_value) print(max_value)结果为3 2、tf.sequence_mask的作用是构建序…

数据湖(十八):Flink与Iceberg整合SQL API操作

文章目录 Flink与Iceberg整合SQL API操作 一、​​​​​​​​​​​​​​SQL API 创建Iceberg表并写入数据

服务器创建和附加虚拟磁盘,Windows 7 虚拟硬盘中的新增功能

【IT168 专稿】Microsoft 虚拟硬盘文件格式 (.vhd) 是一种公用格式规范&#xff0c;用于指定封装在单个文件中的虚拟硬盘&#xff0c;它能够承载本机文件系统并支持标准的磁盘操作。 Microsoft Windows Server 2008 Hyper-V、Microsoft Virtual Server 和 Microsoft Virtual PC…

PyTorch: 序列到序列模型(Seq2Seq)实现机器翻译实战

版权声明&#xff1a;博客文章都是作者辛苦整理的&#xff0c;转载请注明出处&#xff0c;谢谢&#xff01;http://blog.csdn.net/m0_37306360/article/details/79318644简介在这个项目中&#xff0c;我们将使用PyTorch框架实现一个神经网络&#xff0c;这个网络实现法文翻译成…

[JavaScript] Map类型在JavaScript中的使用

感受Map键值对 花样很多 let map new Map() map.set(name, dust) map.set(function () {}, hello) map.set({}, hi) map.set(1, www.baidu.com) console.log(map)运行结果&#xff1a; 也可以一次性添加多个值 let map2 new Map([[name, dust],[function () {}, hello],…

服务器显示内存已超标,服务器显示内存已超标

服务器显示内存已超标 内容精选换一换在“资源使用详情”区域内&#xff0c;内存分配率统计了当前系统的真实情况&#xff0c;包括部分系统管理内存。各项指标的计算方法如下。总量&#xff1a;可用内存容量&#xff0c;指所有DeC物理服务器上的物理内存容量总和。内存总量数值…

大数据必学Java基础(三十一):IDEA模板的使用

文章目录 IDEA模板的使用 一、代码模板是什么 1、所处位置 2、区别