What will the value of the totalsString variable be after the following code is executed? var totals = [141.95, 212.95, 411, 10.95]; totals[2] = 312.95; var totalsString = “”; for (var i = 0; i < totals.length; i++) { totalsString += totals[i] + "|";
What will the value of the totalsString variable be after the following code is
executed?
var totals = [141.95, 212.95, 411, 10.95];
totals[2] = 312.95;
var totalsString = “”;
for (var i = 0; i < totals.length; i++) {
totalsString += totals[i] + “|”;