const array1 = ['a', 'b', 'c'];
array1.forEach(element => console.log(element));
// expected output: "a"
// expected output: "b"
// expected output: "c"
var new_array = old_array.map(function(e) {
e.data = e.data.split(',');
return e;
});
theArray.forEach(element => { // ...use `element`... });