4
I’m having trouble making a price calculation for various products on the Front-end.
I have a 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);
It’s just that you’re giving me a strange value in return:
"45,90100,99"
What I need to do?
You’re trying to add up strings.
– Woss
Possible duplicate of Why are you concatenating instead of adding?
– Woss