Foreach पाने के सूचकांक जावास्क्रिप्ट

कोड उदाहरण

52
0

N

var colors = ['red', 'blue', 'green'];

colors.forEach(function(color) {
  console.log(color);
});
32
0

N

let words = ['one', 'two', 'three', 'four'];
words.forEach((word) => {
  console.log(word);
});
// one
// two
// three
// four
22
0

N

const array1 = ['a', 'b', 'c'];

array1.forEach(element => console.log(element));
12
0

N

users.forEach((user, index)=>{
	console.log(index); // Prints the index at which the loop is currently at
});
8
0

N

let colors = ['red', 'blue', 'green'];
// idx and sourceArr optional; sourceArr == colors
colors.forEach(function(color, idx, sourceArr) {
	console.log(color, idx, sourceArr)
});
// Output:
// red 0 ['red', 'blue', 'green']
// blue 1 ['red', 'blue', 'green']
// green 2 ['red', 'blue', 'green']
3
0

N

const array1 = ['a', 'b', 'c'];

array1.forEach((element, index) => console.log(element, index));

इसी तरह के पन्ने

उदाहरणों के साथ समान पृष्ठ

अन्य भाषाओं में

यह पृष्ठ अन्य भाषाओं में है

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

इस श्रेणी में लोकप्रिय

श्रेणी में उदाहरण के साथ लोकप्रिय पृष्ठों