1K 1천 1.1천 같이 숫자를 포맷하기

1천, 1만, 1.1만

  • 숫자 표기가 길어질 때가 있다. 짧게 단위를 붙여서 표기해보자
example.ts
1
2
3
4
5
6
7
const compactNumberFormatter = new Intl.NumberFormat('ko', {
notation: 'compact',
});

function compactNumber(number: number): string {
return compactNumberFormatter.format(number);
}

참고

1K 1천 1.1천 같이 숫자를 포맷하기

https://chinsun9.github.io/2022/03/05/js-number-format/

Author

chinsung

Posted on

2022-03-05

Updated on

2022-05-15

Licensed under

댓글