Answers for "foreach with index in ts"

23

foreach jas

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

array1.forEach(element => console.log(element));
Posted by: Guest on January-10-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