Всем привет, нашел кусок кода и переделал под себя. Подскажите пожалуйста как осуществить правильное окреглення числа. В результате 2 * 230 выводит 4.603703604606814e + 44, а нужно чтобы было 460
$(document).ready(function() {
function change($tr, val) {
var $input = $tr.find('.count');
var count = parseInt($input.val()) + val;
count = count < 1 ? 1 : count;
$input.val(count);
var $price = $tr.find('.price');
$price.text(count * parseInt($('.old-price').text()));
}
$('.count').on("input", function() {
var $price = $(this).closest('.package').find('.price');
$price.text(this.value * parseInt($('.old-price').text()));
});
});