File size: 567 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
function convertToInternationalCurrencySystem(labelValue) {
// Nine Zeroes for Billions
return Math.abs(Number(labelValue)) >= 1.0e9
? (Math.abs(Number(labelValue)) / 1.0e9).toFixed(2) + "B"
: // Six Zeroes for Millions
Math.abs(Number(labelValue)) >= 1.0e6
? (Math.abs(Number(labelValue)) / 1.0e6).toFixed(2) + "M"
: // Three Zeroes for Thousands
Math.abs(Number(labelValue)) >= 1.0e3
? (Math.abs(Number(labelValue)) / 1.0e3).toFixed(2) + "K"
: Math.abs(Number(labelValue));
}
export default convertToInternationalCurrencySystem;
|