Menata Tampilan Angka di Belakang Koma pada Bilangan Pecahan
var num = 10;
var result = num.toFixed(2); // hasil 10.00
num = 930.9805;
result = num.toFixed(3); // hasil 930.981
num = 500.2349;
result = num.toPrecision(4); // hasil 500.2
num = 5000.2349;
result = num.toPrecision(4); // hasil 5000
num = 555.55;
result = num.toPrecision(2); // hasil 5.6e+2
Menata Tampilan Bilangan Ribuan ke Atas
Untuk menampilkan titik atau koma pemisah ribuan, perlu dibuat fungsi seperti di bawah ini;
function addCommas(nStr)Sumber : http://mredkj.com/javascript/numberFormatPage2.html
{
nStr += '';
x = nStr.split('.');
x1 = x[0];
x2 = x.length > 1 ? '.' + x[1] : '';
var rgx = /(\d+)(\d{3})/;
while (rgx.test(x1)) {
x1 = x1.replace(rgx, '$1' + ',' + '$2');
}
return x1 + x2;
}
1 komentar:
Mantap Sangat Membantu pekerjaan saya.
Terima Kasih
Posting Komentar