Contact: aviboots(AT)netvision.net.il
40,769 questions
53,151 answers
573 users
function toFixedPoint(x, decimal_places) { return Number.parseFloat(x).toFixed(decimal_places); } console.log(toFixedPoint(12427453.86901, 2)); /* run: 12427453.87 */