JavaScript의 for...of 루프
4745 단어 beginnersjavascript
~을 위한...의
이 시점에서 문자열, float, 객체, 배열 등과 같은 JavaScript의 다양한 데이터 유형과 상호 작용했을 수 있습니다. 이 부분에서는 배열에만 초점을 맞출 것입니다. 지금은 배열에 익숙할 것입니다. 배열은 함께 묶인 항목의 모음입니다. 이러한 항목은 숫자, 문자열, 중첩 배열, 부울 또는 객체일 수 있습니다. for...of를 사용하여 문자열과 숫자의 배열을 반복합니다. for...of 루프는 어떤 식으로든 복잡하지 않습니다. 사실 꽤 간단합니다. for...of는 for (let item of items){code to execute} 형식을 사용합니다. 숫자와 문자열의 배열을 통해 반복하여 이것을 실행해 봅시다.
//create a variable using const to store the array of numbers
const numbers = [24, 67, 84, 38, 39, 92,37];
//loop through the numbers to check it is an even or odd number
for (let number of numbers) {
//code to execute
//checks if number is even or odd
if (number%2===0){
console.log(`${number} is even`)
}else {
console.log(`${number} is odd`)
}
}
/*
24 is even
67 is odd
84 is even
38 is even
39 is odd
92 is even
37 is odd
*/
For...of 루프는 모든 데이터 유형의 항목을 포함하는 배열을 반복하는 데 사용할 수도 있습니다. for...of 루프를 사용하여 문자열 배열을 반복해 보겠습니다. 배열의 각 단어를 대문자로 표시합니다.
//create a variable using const to store the array of countries
const countries = ["Kenya", "Sudan", "Nigeria", "Tanzania", "Brazil", "Germany", "India"];
//loop through the countries and convert each country name to uppercase
for (let country of countries) {
console.log(country.toUpperCase())
}
/*
KENYA
SUDAN
NIGERIA
TANZANIA
BRAZIL
GERMANY
INDIA
*/
지금까지 for...of 루프를 사용하여 배열을 반복하는 방법을 배웠습니다. **for...of ** 루프는 html 노드 모음을 반복하는 데 사용할 수 있습니다. 이것이 이번 포스트의 전부입니다. 즐거운 독서와 행복한 코딩이 되셨기를 바랍니다.
Reference
이 문제에 관하여(JavaScript의 for...of 루프), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/chibukasia/forof-loop-in-javasript-4j9h텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)