美文网首页
for_of循环

for_of循环

作者: 牛耀 | 来源:发表于2018-09-27 23:40 被阅读0次

for(let value of target){}循环遍历

  1. 遍历数组
  2. 遍历Set
  3. 遍历Map
  4. 遍历字符串
  5. 遍历伪数组
    let arr = [1,2,3,4,5,5,6,2];
    let arr1 = [];
    let set = new Set(arr);
    for(let i of set){
        console.log(i);
        arr1.push(i);
    }
    console.log(arr1);
    let map = new Map([['aaa', 'username', 25], [36, 'age']]);
    for(let i of map){
        console.log(i);
    }

相关文章

  • for_of循环

    for(let value of target){}循环遍历 遍历数组 遍历Set 遍历Map 遍历字符串 遍历伪数组

  • python学习笔记(2)

    循环嵌套:在循环中嵌入其他的循环体,for循环中可以嵌入for循环,while循环中嵌入while循环,for循环...

  • 循环结构

    for循环 for in循环 while循环 do while循环

  • ES6基础教程(第十节)——for_of

    ​今天来玩个新特性 for...of: 它是一种用于遍历数据结构的方法。它可遍历的对象包括数组,字符串,set和m...

  • 《每天一点Java知识》Java基础知识——循环

    循环概念 循环是在一定条件下进行循环的逻辑结构 循环组成 循环由循环入口、循环条件与循环体组成。 循环分类 已知次...

  • 4-8 循环引用

    3种循环引用 自循环引用 相互循环引用 多循环引用 Block的循环引用 NSTimer 的循环引用 破除循环引用...

  • java 温故知新 第三天

    1.循环for循环 循环次数可知 最常用while循环 循环次数非必...

  • go逻辑判断语句

    if语句 for 循环 循环嵌套 for 死循环 for 循环的分解版

  • typescript笔记(四)

    一、循环:for循环、for...in...循环、for…of 、forEach、every 和 some 循环、...

  • while循环 for循环

    循环语句whilei=1while i<=20:if i%5==0:print(i)else:print(i,en...

网友评论

      本文标题:for_of循环

      本文链接:https://www.haomeiwen.com/subject/wjtuoftx.html