I'm working with an array of items and using a forEach loop. I need to extract the value of the current item in each iteration. Any suggestions on how I can achieve this?
var bottom_array = [41,42,43,44]
bottom_array.forEach(function(){
console.log(*current item*);
})
console> 41
console> 42
console> 43
console> 44
Your help is greatly appreciated!