How do you round to 1 decimal place in Javascript?

前端 未结 21 1786
难免孤独
难免孤独 2020-11-22 08:49

Can you round a number in javascript to 1 character after the decimal point (properly rounded)?

I tried the *10, round, /10 but it leaves two decimals at the end of

21条回答
  •  日久生厌
    2020-11-22 09:14

    function rnd(v,n=2) {
        return Math.round((v+Number.EPSILON)*Math.pow(10,n))/Math.pow(10,n)
    }
    

    this one catch the corner cases well

提交回复
热议问题