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


159

Javascriptを使用して数値を切り上げたい。数値は通貨なので、次の例のように切り上げてください(小数点以下2桁)。

  • 192.168 => 192.20
  • 192.11 => 192.20
  • 192.21 => 192.30
  • 192.26 => 192.30
  • 192.20 => 192.20

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

回答:


313
/**
 * @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

2
@AndrewMarshall乗算してから10で除算する目的は何ですか?
codecowboy 2013年

6
@codecowboyそうでない場合は、ceil()が返されます193。そのため、保持する精度がすべて小数点の前になるようにする必要があります。次に、「元の」値を復元するために、逆の操作を行います。
Andrew Marshall

1
のような番号を取得した場合は、192.19999999999997.toFixed(1)num
flamer.ohrに

4
そして、最も近いWHOLE数に切り上げる方法を知りたい場合は、Math.ceil()が必要です。残りは小数を扱うだけです。私の脳がそれに到達するのにかかった時間を他の人を救うために!
Nigel B. Peck

このソリューションにはバグがあります:Math.ceil(0.0159 * 1000000000)/精度。端数は0.015900001になります。精度のために範囲検証を追加する必要があります。
フランク

26

少し遅れますが、この目的のために再利用可能な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));

2
これはうまく機能しますが、OPは数値を切り上げる方法を尋ねたため、Math.roundの代わりにMath.ceilを使用する必要があります。
kloddant 2016

あなたが目指している小数位にもかかわらず適切に切り上げようとしているなら、この答えは受け入れられた答えよりも優れています。例:1.054-> 1.05 1.055-> 1.06ただし、ここでは極端なケースがあります:1.005-> 1 1.006-> 1.01 AND 1.015-> 1.01 1.016-> 1.02したがって、注意してください。
ジェイK

21

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

Math.round(price * 10)/10

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

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

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


Math.round(192.11 * 100)/ 100-> 192.11
krtek

1
2番目のものは丸めを必要としません。それはより似ていますprice.toFixed(2)
マイケルクレリン-ハッカー

@Krtekおっと、それをキャッチしてくれてありがとう。質問を読み間違えました。回答を更新しました。
Shad

2
OPは数値を切り上げる方法を尋ねたため、ここではMath.roundの代わりにMath.ceilを使用する必要があります。
kloddant 16

10

TheEyeの回答に非常に近いですが、機能させるために少し変更します。

var num = 192.16;
    
console.log(    Math.ceil(num * 10) / 10    );


2

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つのアプローチを参照してください。1つ目は、通常、単純に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

わかりました、これは回答されましたが、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が求めていたものです。


1

この関数は、丸め数なしの10進数を制限します

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

より短い代替として:return( '' + num).split( '。')。shift()
Roberto

Robertoにはこのコードが機能することに感謝しますが、すべての小数点を削除します
Behnam Mohammadi

0

@AndrewMarshallの回答を長い間使用してきましたが、いくつかのエッジケースが見つかりました。次のテストはパスしません:

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
テストケースが正しくないようです。roundUp(37.760000000000005, 4)である必要が37.7601ありroundUp(5.83333333, 4)ます5.8334。これら2つ(および最初の2つ)はすべて、提供したfnに当てはまります。
Andrew Marshall

理由がある@AndrewMarshall、あなたの期待値は、ケース2と3のために間違っている
AMN

-3

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

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

parseInt()+ 1を実行

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.