I'm having trouble performing a price calculation for multiple products on the Front End.
I have array
of products and I need to add them through a function.
Example:
produto[0] = {produto:'Camisa',preco:'45,90'};
produto[0] = {produto:'Calça', preco:'100,99'};
function somarTudo(arrProdutos){
var total = 0;
for (i = 0; i < arrProdutos.length; i++) {
total += arrProdutos[i].preco;
}
}
somarTudo(produto);
Only you're giving me a strange value as a return:
"45,90100,99"
What do I need to do?