In 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 (let item of nums){ console.log(item) } The third type: The third writing method let p = {name:"zhang", age:10} for(let key in p){ console.log(p[key]) } Output:
for (let index in nums){ console.log(nums[index]) }
When defining variables 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:
|
<<: Detailed tutorial on installation and configuration of compressed version of MySQL database
>>: CSS realizes the mask effect when the mouse moves to the image
Reasons why the 1px line becomes thicker When wor...
Sometimes you just want to test an app but don’t ...
Table of contents Project Background Improvement ...
Preface Some people have asked me some MySQL note...
This article shares the specific code of Vue impo...
Table of contents Preface 1. Key Elements of a Re...
Table of contents Typical Cases Appendix: Common ...
1. Usage of instanceof instanceof operator is use...
Since I usually use the docker build command to g...
Preface Histogram is a basic statistical informat...
Section Course content Hours 1 Web Design Overvie...
Table of contents Overview Application scenarios ...
The Raspberry Pi model is 4b, 1G RAM. The system ...
Table of contents index - General index - Unique ...
Query the current date SELECT CURRENT_DATE(); SEL...