EN
JavaScript - change values in array during foreach
0 points
In this article, we would like to show you how to change values in array during foreach in JavaScript.
Quick solution (ES6):
xxxxxxxxxx
1
const letters = ['a', 'b', 'c'];
2
3
letters.forEach((element, index, array) => array[index] = 'x');
4
5
console.log(letters); // [ 'x', 'x', 'x' ]
In this example, we alternatively use forEach()
with a second argument (context), which will be used as the value of this in each call to the callback function.
xxxxxxxxxx
1
var letters = ['a', 'b', 'c'];
2
3
letters.forEach(function(element, index) {
4
this[index] = 'x';
5
}, letters);
6
7
console.log(letters); // [ 'x', 'x', 'x' ]
Warning:
This solution won't work with arrow functions.