We have a price, say 5000,00 kr
per item and we have two items.
I calculate the new price to 10000
something like this:
var newPrice = parseInt(originalPrice) * parseInt(amount);
But I would like to keep the ,00
part and the currency in this case kr
.
How would I go about to achieveme this the easiest?