priceIt = 100;
priceIt2 = -50;

var totale = priceIt + priceIt2; // = 50
var totale = Math.abs(priceIt) + Math.abs(priceIt2); // = 150


con Math.abs sommi i valori assoluti