Weekly Payment
-
$ {{
(parseFloat(props.installment.toString().replace(/[^0-9.]/g, '')) * 12 / 52).toFixed(2)
}}
Weekly Interest
-
$ {{
(function() {
var inst = parseFloat(props.installment.toString().replace(/[^0-9.]/g, ''));
var interest = parseFloat(props.interest.toString().replace(/[^0-9.]/g, ''));
var total = parseFloat(props.total.toString().replace(/[^0-9.]/g, ''));
var totalWeeks = (total / inst) * (52 / 12);
return (interest / totalWeeks).toFixed(2);
})()
}}
Weekly Total Payment
-
$ {{
(function() {
var inst = parseFloat(props.installment.toString().replace(/[^0-9.]/g, ''));
var total = parseFloat(props.total.toString().replace(/[^0-9.]/g, ''));
var totalWeeks = (total / inst) * (52 / 12);
return (total / totalWeeks).toFixed(2);
})()
}}
Title and other fees and incentives are not included in this calculation, which is an estimate only. Monthly payment estimates are for informational purpose and do not represent a financing offer from the seller of this vehicle. Other taxes may apply.