foreach and replace item based on condition

JavaScript
arr.forEach(function(part, index, theArray) {
  theArray[index] = "hello world";
});arr.forEach(function(part, index) {
  this[index] = "hello world";
}, arr); // use arr as this
Source

Also in JavaScript: