js循环

作者: null_14ee | 来源:发表于2019-07-12 22:48 被阅读0次

forEach()

let array = [1,2,3,4];

array.forEach((item, index, array) =>{console.log(item);});

forEach会遍历数组, 没有返回值, 不允许在循环体内写return, 不会改变原来数组的内容.

2. map()

let array = [1, 2, 3, 4];

let temp = array.map((item, index, array) => {

  return item * 10;

});

console.log(temp);  //  [10, 20, 30, 40];

console.log(array);  // [1, 2, 3, 4]

// map 遍历数组, 会返回一个新数组, 不会改变原来数组里的内容

let temp2 = array.map(String);  // 把数组里的元素都转成字符串

相关文章

  • JavaScript 04 (do...while循环/for

    js循环,js循环嵌套,js do...while循环,js的for循环,js中的break,js中的contin...

  • 【基础】循环

    循环 循环数组html {{item.content}} js /...

  • 2019-03-28

    JS 事件循环机制 - 任务队列、web API、JS主线程的相互协同 这篇文章的核心是分析js的事件循环,在此我...

  • js循环

    循环语句 while(条件){ 条件为true执行; } 列:while 循环 var a=1; while(a<...

  • JS for循环

    练习for循环:

  • js - for of 循环

    js 中for of 相当于 python 中的 for infor … of 循环是ES6引入的新的语法,用fo...

  • js for循环

    //javascript 的第一课 //原始值(栈 stack) // number string boolean...

  • js循环

    重复的东西叫做循环 while循环 初始值 while(条件){ 语句1 自增 } 当...

  • js循环

    for循环 forEach 但是forEach不能中止或者中途跳出循环,即不能使用break,continue这些...

  • js循环

    forEach() let array = [1,2,3,4]; array.forEach((item, ind...

网友评论

      本文标题:js循环

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