반복기에서 자바스크립트에서 배열

코드 예제

2
0

N

let arr = ['js', 'python', 'c++', 'dart']

// no 1
for (item of arr) {
	console.log(item);
}

// no 2
for (var item = 0; item < arr.length; item++) {
	console.log(arr[i]);
}

// no 3
arr.forEach(item=>{
	console.log(item);
})

// no 4
arr.map(item=>{
	console.log(item);
})

// no 5
var item = 0;
while (item < arr.length) {
	console.log(arr[item]);
  	item++;
}





비슷한 페이지

예제가있는 유사한 페이지

다른 언어로

이 페이지는 다른 언어로되어 있습니다

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................