使用 for...of 循环遍历数组

nums: number[]
       
  let nums_set:Set<number> = new Set();
        for(const num of nums){
            nums_set.add(num);
        }
 
for...of 循环是 ES6 (ECMAScript 2015) 引入的一种新的 for 循环语法,它允许你直接遍历数组或其他可迭代对象的元素,而不需要使用索引
posted @ 2024-09-27 14:58  流星曳尾  阅读(5)  评论(0编辑  收藏  举报