Price Per Gram Calculator






Price per Gram Calculator



Price per Gram Calculator


Total Price ($):




Total Weight (grams):








[removed]
function calculatePricePerGram() {
var totalPrice = document.getElementById('totalPrice').value;
var totalWeight = document.getElementById('totalWeight').value;

if (totalPrice && totalWeight) {
var pricePerGram = (totalPrice / totalWeight).toFixed(2);
document.getElementById('result').innerText = 'Price per Gram: $' + pricePerGram;
} else {
document.getElementById('result').innerText = 'Please enter both total price and total weight.';
}
}
[removed]


Leave a Comment