How do you round to 1 decimal place in Javascript?

前端 未结 21 1438
难免孤独
难免孤独 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 08:52

    Using toPrecision method:

    var a = 1.2345
    a.toPrecision(2)
    
    // result "1.2"
    
    0 讨论(0)
  • 2020-11-22 08:53

    Math.round( num * 10) / 10 doesn't work.

    For example, 1455581777.8-145558160.4 gives you 1310023617.3999999.

    So only use num.toFixed(1)

    0 讨论(0)
  • 2020-11-22 08:54

    This seems to work reliably across anything I throw at it:

    function round(val, multiplesOf) {
      var s = 1 / multiplesOf;
      var res = Math.ceil(val*s)/s;
      res = res < val ? res + multiplesOf: res;
      var afterZero = multiplesOf.toString().split(".")[1];
      return parseFloat(res.toFixed(afterZero ? afterZero.length : 0));
    }
    

    It rounds up, so you may need to modify it according to use case. This should work:

    console.log(round(10.01, 1)); //outputs 11
    console.log(round(10.01, 0.1)); //outputs 10.1
    
    0 讨论(0)
  • 2020-11-22 08:55

    ES 6 Version of Accepted Answer:

    function round(value, precision) {
        const multiplier = 10 ** (precision || 0);
        return Math.round(value * multiplier) / multiplier;
    }
    
    0 讨论(0)
  • 2020-11-22 08:57

    In general, decimal rounding is done by scaling: round(num * p) / p

    Naive implementation

    Using the following function with halfway numbers, you will get either the upper rounded value as expected, or the lower rounded value sometimes depending on the input.

    This inconsistency in rounding may introduce hard to detect bugs in the client code.

    function naiveRound(num, decimalPlaces) {
        var p = Math.pow(10, decimalPlaces);
        return Math.round(num * p) / p;
    }
    
    console.log( naiveRound(1.245, 2) );  // 1.25 correct (rounded as expected)
    console.log( naiveRound(1.255, 2) );  // 1.25 incorrect (should be 1.26)

    Better implementations

    By converting the number to a string in the exponential notation, positive numbers are rounded as expected. But, be aware that negative numbers round differently than positive numbers.

    In fact, it performs what is basically equivalent to "round half up" as the rule, you will see that round(-1.005, 2) evaluates to -1 even though round(1.005, 2) evaluates to 1.01. The lodash _.round method uses this technique.

    /**
     * Round half up ('round half towards positive infinity')
     * Uses exponential notation to avoid floating-point issues.
     * Negative numbers round differently than positive numbers.
     */
    function round(num, decimalPlaces) {
        num = Math.round(num + "e" + decimalPlaces);
        return Number(num + "e" + -decimalPlaces);
    }
    
    // test rounding of half
    console.log( round(0.5, 0) );  // 1
    console.log( round(-0.5, 0) ); // 0
    
    // testing edge cases
    console.log( round(1.005, 2) );   // 1.01
    console.log( round(2.175, 2) );   // 2.18
    console.log( round(5.015, 2) );   // 5.02
    
    console.log( round(-1.005, 2) );  // -1
    console.log( round(-2.175, 2) );  // -2.17
    console.log( round(-5.015, 2) );  // -5.01

    If you want the usual behavior when rounding negative numbers, you would need to convert negative numbers to positive before calling Math.round(), and then convert them back to negative numbers before returning.

    // Round half away from zero
    function round(num, decimalPlaces) {
        num = Math.round(Math.abs(num) + "e" + decimalPlaces) * Math.sign(num);
        return Number(num + "e" + -decimalPlaces);
    }
    

    There is a different purely mathematical technique to perform round-to-nearest (using "round half away from zero"), in which epsilon correction is applied before calling the rounding function.

    Simply, we add the smallest possible float value (= 1.0 ulp; unit in the last place) to the number before rounding. This moves to the next representable value after the number, away from zero.

    /**
     * Round half away from zero ('commercial' rounding)
     * Uses correction to offset floating-point inaccuracies.
     * Works symmetrically for positive and negative numbers.
     */
    function round(num, decimalPlaces) {
        var p = Math.pow(10, decimalPlaces);
        var e = Number.EPSILON * num * p;
        return Math.round((num * p) + e) / p;
    }
    
    // test rounding of half
    console.log( round(0.5, 0) );  // 1
    console.log( round(-0.5, 0) ); // -1
    
    // testing edge cases
    console.log( round(1.005, 2) );  // 1.01
    console.log( round(2.175, 2) );  // 2.18
    console.log( round(5.015, 2) );  // 5.02
    
    console.log( round(-1.005, 2) ); // -1.01
    console.log( round(-2.175, 2) ); // -2.18
    console.log( round(-5.015, 2) ); // -5.02

    This is needed to offset the implicit round-off error that may occur during encoding of decimal numbers, particularly those having "5" in the last decimal position, like 1.005, 2.675 and 16.235. Actually, 1.005 in decimal system is encoded to 1.0049999999999999 in 64-bit binary float; while, 1234567.005 in decimal system is encoded to 1234567.0049999998882413 in 64-bit binary float.

    It is worth noting that the maximum binary round-off error is dependent upon (1) the magnitude of the number and (2) the relative machine epsilon (2^-52).

    0 讨论(0)
  • 2020-11-22 08:57

    Little Angular filter if anyone wants it:

    angular.module('filters').filter('decimalPlace', function() {
        return function(num, precision) {
            var multiplier = Math.pow(10, precision || 0);
            return Math.round(num * multiplier) / multiplier;
        };
    });
    

    use if via:

    {{model.value| decimalPlace}}
    {{model.value| decimalPlace:1}}
    {{model.value| decimalPlace:2}}
    

    :)

    0 讨论(0)
提交回复
热议问题