I was curious if anybody knows if one is faster than the other in either specific use cases or in general, and why.
Specifically, I'm referring to
for (let myVariable in myArray) { *do something* }
and
myArray.forEach(myVariable => { *do something* })