たとえば6.688689
、に丸める必要があります6.7
が、常に表示されます7
。
私の方法:
Math.round(6.688689);
//or
Math.round(6.688689, 1);
//or
Math.round(6.688689, 2);
しかし、結果は常に同じ7
です...私は何を間違っていますか?
.toFixed
文字列を返します。結果は必ずでラップしてくださいNumber()
。受け入れられた回答などを参照してください。
たとえば6.688689
、に丸める必要があります6.7
が、常に表示されます7
。
私の方法:
Math.round(6.688689);
//or
Math.round(6.688689, 1);
//or
Math.round(6.688689, 2);
しかし、結果は常に同じ7
です...私は何を間違っていますか?
.toFixed
文字列を返します。結果は必ずでラップしてくださいNumber()
。受け入れられた回答などを参照してください。
回答:
Number((6.688689).toFixed(1)); // 6.7
Number((456.1235).toFixed(3)) -> 456.123
、Number((1.235).toFixed(2)) -> 1.24
...愚かなJavaSript ...
var number = 6.688689;
var roundedNumber = Math.round(number * 10) / 10;
1.005 * 100 = 100.49999999999999
少なくとも私が試したJSエンジンでは)。これが機能しない理由であり、フロートが完全に正確であることに依存すべきではありません。
toFixed()
関数を使用します。
(6.688689).toFixed(); // equal to 7
(6.688689).toFixed(1); // equal to 6.7
(6.688689).toFixed(2); // equal to 6.69
アップデート(2019-10)。以下のReece Danielsのおかげで、npm-package expected-roundにパックされた関数のセットとして利用できるようになりました(見てください)。
MDNの例からヘルパー関数を使用できます。より多くの柔軟性が得られます。
Math.round10(5.25, 0); // 5
Math.round10(5.25, -1); // 5.3
Math.round10(5.25, -2); // 5.25
Math.round10(5, 0); // 5
Math.round10(5, -1); // 5
Math.round10(5, -2); // 5
アップデート(2019-01-15)。MDNドキュメントにはこのヘルパー関数がなくなったようです。ここに例のあるバックアップがあります:
// 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
> +(6.688687).toPrecision(2)
6.7
Number
JavaScript のオブジェクトには、必要なことを正確に実行するメソッドがあります。その方法はNumber.toPrecision([precision])
。
と同様に.toFixed(1)
、結果を文字列に変換し、数値に戻す必要があります。+
ここではプレフィックスを使用して行われました。
私のラップトップの簡単なベンチマーク:
number = 25.645234 typeof number
50000000 x number.toFixed(1) = 25.6 typeof string / 17527ms
50000000 x +(number.toFixed(1)) = 25.6 typeof number / 23764ms
50000000 x number.toPrecision(3) = 25.6 typeof string / 10100ms
50000000 x +(number.toPrecision(3)) = 25.6 typeof number / 18492ms
50000000 x Math.round(number*10)/10 = 25.6 typeof number / 58ms
string = 25.645234 typeof string
50000000 x Math.round(string*10)/10 = 25.6 typeof number / 7109ms
1e-10.toPrecision(3)
: "1.00e-10"- 有効数字に丸めます。
あなたが使用したくない場合にのみtoFixed()
でなく、ceil()
及びfloor()
フロートの上に、あなたは、次の関数を使用することができます。
function roundUsing(func, number, prec) {
var tempnumber = number * Math.pow(10, prec);
tempnumber = func(tempnumber);
return tempnumber / Math.pow(10, prec);
}
生成:
> roundUsing(Math.floor, 0.99999999, 3)
0.999
> roundUsing(Math.ceil, 0.1111111, 3)
0.112
UPD:
他の可能な方法はこれです:
Number.prototype.roundUsing = function(func, prec){
var temp = this * Math.pow(10, prec)
temp = func(temp);
return temp / Math.pow(10, prec)
}
生成:
> 6.688689.roundUsing(Math.ceil, 1)
6.7
> 6.688689.roundUsing(Math.round, 1)
6.7
> 6.688689.roundUsing(Math.floor, 1)
6.6
私の拡張ラウンド関数:
function round(value, precision) {
if (Number.isInteger(precision)) {
var shift = Math.pow(10, precision);
// Limited preventing decimal issue
return (Math.round( value * shift + 0.00000000000001 ) / shift);
} else {
return Math.round(value);
}
}
出力例:
round(123.688689) // 123
round(123.688689, 0) // 123
round(123.688689, 1) // 123.7
round(123.688689, 2) // 123.69
round(123.688689, -2) // 100
round(1.015, 2) // 1.02
下記参照
var original = 28.59;
var result=Math.round(original*10)/10
あなたは戻ります 28.6
これがあなたの望むものであることを願っています。
この機能が役立つと思います。
function round(value, ndec){
var n = 10;
for(var i = 1; i < ndec; i++){
n *=10;
}
if(!ndec || ndec <= 0)
return Math.round(value);
else
return Math.round(value * n) / n;
}
round(2.245, 2) //2.25
round(2.245, 0) //2
以下の機能が役立つと思います
function roundOff(value,round) {
return (parseInt(value * (10 ** (round + 1))) - parseInt(value * (10 ** round)) * 10) > 4 ? (((parseFloat(parseInt((value + parseFloat(1 / (10 ** round))) * (10 ** round))))) / (10 ** round)) : (parseFloat(parseInt(value * (10 ** round))) / ( 10 ** round));
}
使用法:roundOff(600.23458,2);
戻ります600.23
数値をフォーマットするための代替.toLocaleString()があり、ロケール、グループ化、通貨フォーマット、表記法に関する多くのオプションがあります。いくつかの例:
10進数で1に丸め、浮動小数点数を返します。
const n = +6.688689.toLocaleString('fullwide', {maximumFractionDigits:1})
console.log(
n, typeof n
)
小数第2位に四捨五入し、指定した記号を使用して通貨としてフォーマットし、数千の場合はカンマグループを使用します。
console.log(
68766.688689.toLocaleString('fullwide', {maximumFractionDigits:2, style:'currency', currency:'USD', useGrouping:true})
)
ロケール通貨としてフォーマット:
console.log(
68766.688689.toLocaleString('fr-FR', {maximumFractionDigits:2, style:'currency', currency:'EUR'})
)
小数点以下3桁に丸め、強制的にゼロを表示します。
console.log(
6.000000.toLocaleString('fullwide', {minimumFractionDigits:3})
)
比率のパーセントスタイル。入力* 100、%記号付き
console.log(
6.688689.toLocaleString('fullwide', {maximumFractionDigits:2, style:'percent'})
)
toFixed()が機能しない場合の非常に良い解決策があります。
function roundOff(value, decimals) {
return Number(Math.round(value+'e'+decimals)+'e-'+decimals);
}
例
roundOff(10.456,2) //output 10.46
この答えのマイナーな調整:
function roundToStep(value, stepParam) {
var step = stepParam || 1.0;
var inv = 1.0 / step;
return Math.round(value * inv) / inv;
}
roundToStep(2.55, 0.1) = 2.6
roundToStep(2.55, 0.01) = 2.55
roundToStep(2, 0.01) = 2
roundToStep(1.015, 0.001)
(6.688689).toFixed(1);