Answers for "how to get "this" in a .each loop js"

2

es6 forEach

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

array1.forEach((element) => {
  console.log(element)
});

// expected output: "a"
// expected output: "b"
// expected output: "c"
Posted by: Guest on August-25-2020
3

forEach index

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

array1.forEach((element, index) => console.log(element, index));
Posted by: Guest on September-09-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language