web-dev-qa-db-ja.com

Javascriptで数値を切り上げる方法は?

Javascriptを使用して数値を切り上げます。数値は通貨であるため、これらの例のように切り上げたい(小数点以下2桁):

  • 192.168 => 192.2
  • 192.11 => 192.2
  • 192.21 => 192.
  • 192.26 => 192.
  • 192.20 => 192.2

Javascriptを使用してこれを達成する方法は?組み込みのJavascript関数は、標準ロジックに基づいて数値を切り上げます(切り上げる場合は5を超えます)。

151
cyberfly
/**
 * @param num The number to round
 * @param precision The number of decimal places to preserve
 */
function roundUp(num, precision) {
  precision = Math.pow(10, precision)
  return Math.ceil(num * precision) / precision
}

roundUp(192.168, 1) //=> 192.2
289
Andrew Marshall

少し遅れましたが、この目的のために再利用可能なJavaScript関数を作成できます。

// Arguments: number to round, number of decimal places
function roundNumber(rnum, rlength) { 
    var newnumber = Math.round(rnum * Math.pow(10, rlength)) / Math.pow(10, rlength);
    return newnumber;
}

として関数を呼び出す

alert(roundNumber(192.168,2));
26
suryakiran

通常の丸めは、小さな調整で機能します。

Math.round(price * 10)/10

通貨形式を保持する場合は、Numberメソッド.toFixed()を使用できます

(Math.round(price * 10)/10).toFixed(2)

これにより文字列になります=)

19
Shad

TheEye answerに非常に近いですが、動作するように少し変更します。

var num = 192.16;
    
console.log(    Math.ceil(num * 10) / 10    );
9
Hoàng Long

わかりました、これは答えられましたが、math.pow()関数を1回呼び出す私の答えを見たいと思うかもしれません。物を乾かしておくのが好きだと思う。

function roundIt(num, precision) {
    var rounder = Math.pow(10, precision);
    return (Math.round(num * rounder) / rounder).toFixed(precision)
};

それは一種のすべてをまとめます。 Math.round()をMath.ceil()に置き換えて、丸めではなく切り上げを行います。これはOPが望んでいたものです。

2
John Grabauskas

OPは2つのことを期待しています。
A。 10分の1に切り上げる
B。 100分の1の位にゼロを表示する(通貨の一般的な必要性)。

両方の要件を満たすには、上記のそれぞれに個別の方法が必要になるようです。スリヤキランの提案された答えに基づいたアプローチを次に示します。

//Arguments: number to round, number of decimal places.

function roundPrice(rnum, rlength) {
    var newnumber = Math.ceil(rnum * Math.pow(10, rlength-1)) / Math.pow(10, rlength-1);
    var toTenths = newnumber.toFixed(rlength);
    return toTenths;
}

alert(roundPrice(678.91011,2)); // returns 679.00
alert(roundPrice(876.54321,2)); // returns 876.60

重要な注意:このソリューションは、負の数と指数の数で非常に異なる結果を生成します。

この答えと非常に似ている2つの答えを比較するために、次の2つのアプローチを参照してください。最初の値は、通常どおり、最も近い100分の1に丸められ、2番目の値は、最も近い100分の1(より大きい)に丸められます。

function roundNumber(rnum, rlength) { 
    var newnumber = Math.round(rnum * Math.pow(10, rlength)) / Math.pow(10, rlength);
    return newnumber;
}

alert(roundNumber(678.91011,2)); // returns 678.91

function ceilNumber(rnum, rlength) { 
    var newnumber = Math.ceil(rnum * Math.pow(10, rlength)) / Math.pow(10, rlength);
    return newnumber;
}

alert(ceilNumber(678.91011,2)); // returns 678.92
2
Kay V

私は長い間@AndrewMarshallの回答を使用してきましたが、いくつかのEdgeケースを見つけました。次のテストは合格しません。

equals(roundUp(9.69545, 4), 9.6955);
equals(roundUp(37.760000000000005, 4), 37.76);
equals(roundUp(5.83333333, 4), 5.8333);

切り上げが正しく動作するように私が今使用しているものは次のとおりです。

// Closure
(function() {
  /**
   * Decimal adjustment of a number.
   *
   * @param {String}  type  The type of adjustment.
   * @param {Number}  value The number.
   * @param {Integer} exp   The exponent (the 10 logarithm of the adjustment base).
   * @returns {Number} The adjusted value.
   */
  function decimalAdjust(type, value, exp) {
    // If the exp is undefined or zero...
    if (typeof exp === 'undefined' || +exp === 0) {
      return Math[type](value);
    }
    value = +value;
    exp = +exp;
    // If the value is not a number or the exp is not an integer...
    if (isNaN(value) || !(typeof exp === 'number' && exp % 1 === 0)) {
      return NaN;
    }
    // If the value is negative...
    if (value < 0) {
      return -decimalAdjust(type, -value, exp);
    }
    // Shift
    value = value.toString().split('e');
    value = Math[type](+(value[0] + 'e' + (value[1] ? (+value[1] - exp) : -exp)));
    // Shift back
    value = value.toString().split('e');
    return +(value[0] + 'e' + (value[1] ? (+value[1] + exp) : exp));
  }

  // Decimal round
  if (!Math.round10) {
    Math.round10 = function(value, exp) {
      return decimalAdjust('round', value, exp);
    };
  }
  // Decimal floor
  if (!Math.floor10) {
    Math.floor10 = function(value, exp) {
      return decimalAdjust('floor', value, exp);
    };
  }
  // Decimal ceil
  if (!Math.ceil10) {
    Math.ceil10 = function(value, exp) {
      return decimalAdjust('ceil', value, exp);
    };
  }
})();

// Round
Math.round10(55.55, -1);   // 55.6
Math.round10(55.549, -1);  // 55.5
Math.round10(55, 1);       // 60
Math.round10(54.9, 1);     // 50
Math.round10(-55.55, -1);  // -55.5
Math.round10(-55.551, -1); // -55.6
Math.round10(-55, 1);      // -50
Math.round10(-55.1, 1);    // -60
Math.round10(1.005, -2);   // 1.01 -- compare this with Math.round(1.005*100)/100 above
Math.round10(-1.005, -2);  // -1.01
// Floor
Math.floor10(55.59, -1);   // 55.5
Math.floor10(59, 1);       // 50
Math.floor10(-55.51, -1);  // -55.6
Math.floor10(-51, 1);      // -60
// Ceil
Math.ceil10(55.51, -1);    // 55.6
Math.ceil10(51, 1);        // 60
Math.ceil10(-55.59, -1);   // -55.5
Math.ceil10(-59, 1);       // -50

ソース: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/round

1
Nicolas BADIA

この関数は、ラウンド数なしで小数を制限します

function limitDecimal(num,decimal){
     return num.toString().substring(0, num.toString().indexOf('.')) + (num.toString().substr(num.toString().indexOf('.'), decimal+1));
}
1

parseIntは常にsoo .....を切り捨てます.

console.log(parseInt(5.8)+1);

parseInt()+ 1を行います

0
Omar