Home > Web Front-end > JS Tutorial > body text

Introduction to javascript traversal method (code example)

不言
Release: 2018-10-24 17:38:49
forward
2033 people have browsed it

This article brings you an introduction to the JavaScript traversal method (code example). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

It is useful to convert the object object into an array, and then I thought of the traversal method, so I also want to record it

1. Terminate or jump out of the loop

  • break jumps out of the loop body, the loop body is over

  • return Terminate function execution

  • for (let i = 0; i < 5; i++) {
        if (i == 3) break;
        console.log("The number is " + i);
        /* 只输出 0 , 1 , 2 , 到3就跳出循环了 */
    }
    for (let i = 0; i <= 5; i++) {
        if (i == 3) continue;
        console.log("The number is " + i);
        /* 不输出3,因为continue跳过了,直接进入下一次循环 */
    }
    Copy after login

    2. Traversal method

Fake data

  • const temporaryArray = [6,2,3,4,5,1,1,2,3,4,5];
    const objectArray = [
        {
            id: 1,
            name: &#39;d&#39;
        }, {
            id: 2,
            name: &#39;d&#39;
        }, {
            id: 3,
            name: &#39;c&#39;
        }, {
            id: 1,
            name: &#39;a&#39;
        }
    ];
    const temporaryObject = {
        a: 1,
        b: 2,
        c: 3,
        d: 4,
    };
    const length = temporaryArray.length;
    Copy after login

  • Normal for loop traversal
  • for(let i = 0; i < length; i++) {
        console.log(temporaryArray[i]);
    }
    Copy after login

  • for in loop
  • /* for in 循环主要用于遍历普通对象,
    * 当用它来遍历数组时候,也能达到同样的效果,
    * 但是这是有风险的,因为 i 输出为字符串形式,而不是数组需要的数字下标,
    * 这意味着在某些情况下,会发生字符串运算,导致数据错误
    * */
    for(let i in temporaryObject) {
        /* hasOwnProperty只加载自身属性 */
        if(temporaryObject.hasOwnProperty(i)) {
            console.log(temporaryObject[i]);
        }
    }
    Copy after login

  • for of loop, used to traverse iterable objects
  • for(let i of temporaryArray) {
        console.log(i);
    }
    Copy after login

  • forEach first The first value is the value of the current index of the array, and the second one is the index value. It can only traverse the array, has no return value, and cannot break out of the loop.
  • let a = temporaryArray.forEach(function(item, index) {
        console.log(index, item);
    });
    Copy after login

  • map Return The new array can only traverse the array
  • temporaryArray.map(function(item) {
        console.log(item);
    });
    Copy after login

  • filter is a built-in object of the array, does not change the original array, and has a return value
  • temporaryArray.filter(function(item) {
        console.log(item%2 == 0);
    });
    Copy after login

  • some determines whether there are matching values
  • let newArray = temporaryArray.some(function(item) {
        return item > 1;
    });
    console.log(newArray);
    Copy after login

  • every determines whether all the values ​​in the array meet the conditions
  • let newArray1 = temporaryArray.every(function(item) {
        return item > 6;
    });
    console.log(newArray1);
    Copy after login

  • reduce(function(total, currentValue, currentIndex, array) {}, [])
  • total: initial value or The return value after the calculation is completed, the current element value when currentValue is traversed, the current index value of currentIndex, and the current array of array

    If no parameter is specified - empty array [], the cumulative variable total defaults to the value of the first element
  • After specifying the parameter empty array, the initial value of the accumulated variable total becomes the empty array
let temporaryObject3 = {};
let newArray2 = objectArray.reduce(function(countArray, currentValue) {
    /* 利用temporaryObject3里存放id来判断原数组里的对象是否相同,若id相同,则继续下一步,不同则将该对象放入新数组中
     * 则countArray为去重后的数组
      * */
    temporaryObject3[currentValue.id] ? '' : temporaryObject3[currentValue.id] = true && countArray.push(currentValue);
    return countArray;
}, []);
console.log(newArray2);
Copy after login



The above is the detailed content of Introduction to javascript traversal method (code example). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:segmentfault.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!