A detailed introduction to for/of, for/in in JavaScript

A detailed introduction to for/of, for/in in JavaScript

In JavaScript , there are several common ways to write for loops:

The first and most common way of writing:

nums = [1,2,3,4]

for (let i=0; i<nums.length; i++){
    console.log(nums[i])
}

Second type:

The second for/of syntax is available since ES6 . It can directly iterate each element in the array without getting the element by subscript index position. In fact, as long as it is an iterable object, for/of can be used.

for (let item of nums){
    console.log(item)
}

The third type:

The third writing method for/in . Unlike for/of must be iterable objects, for/in can iterate over any object. The name of the property of the loop iteration object. If it is an array, the iterated value is the subscript index of the array, which is the same as the original for .

let p = {name:"zhang", age:10}

for(let key in p){
    console.log(p[key])
}

Output:

zhang
10

for (let index in nums){
    console.log(nums[index])
}


for/in cannot enumerate all the properties of the iterated object, such as symbol properties cannot be enumerated

When defining variables for/of and for/in syntax, you can also use the const keyword. const declares a constant value during a loop iteration.

This is the end of this article about the detailed introduction of for/of, for/in in JavaScript. For more relevant JavaScript for/of, for/in introduction content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Differences and usage examples of for, for...in, for...of and forEach in JS
  • Summary of the use of three for loop statements in JavaScript (for, for...in, for...of)
  • Analyzing the difference between JavaScript for in and for of through examples
  • Summary of examples of using forEach, for in, and for of loops in js
  • Detailed explanation of js traversal (forEach, map, for, for...in, for...of)
  • Detailed explanation of the usage of for...in and for...of in Js
  • A brief analysis of the usage of map, filter, some, every, forEach, for in, for of in JS
  • A comprehensive analysis of the loop methods in JavaScript: forEach, for-in, for-of

<<:  Detailed tutorial on installation and configuration of compressed version of MySQL database

>>:  CSS realizes the mask effect when the mouse moves to the image

Recommend

Understanding and solutions of 1px line in mobile development

Reasons why the 1px line becomes thicker When wor...

How to install Android x86 in vmware virtual machine

Sometimes you just want to test an app but don’t ...

Sharing ideas on processing tens of millions of data in a single MySQL table

Table of contents Project Background Improvement ...

Implementation of adding remark information to mysql

Preface Some people have asked me some MySQL note...

Vue imports Echarts to realize line scatter chart

This article shares the specific code of Vue impo...

How to implement responsiveness in Vue source code learning

Table of contents Preface 1. Key Elements of a Re...

Typical cases of MySQL index failure

Table of contents Typical Cases Appendix: Common ...

JavaScript manual implementation of instanceof method

1. Usage of instanceof instanceof operator is use...

Delete the image operation of none in docker images

Since I usually use the docker build command to g...

MySQL solution for creating horizontal histogram

Preface Histogram is a basic statistical informat...

Web Design Teaching or Learning Program

Section Course content Hours 1 Web Design Overvie...

How to implement the observer pattern in JavaScript

Table of contents Overview Application scenarios ...

Installation steps of docker-ce on Raspberry Pi 4b ubuntu19 server

The Raspberry Pi model is 4b, 1G RAM. The system ...

Mysql index types and basic usage examples

Table of contents index - General index - Unique ...

Detailed introduction to Mysql date query

Query the current date SELECT CURRENT_DATE(); SEL...