I have a rather big array in javascript and use function below to pick out values and sum them, works fine in Chrome but nog in IE
var test = checkoutConfig.quoteItemData.reduce((a, v) => a += parseFloat(v.row_weight),0);
There are other questions about this issue, but i can't figure it out...