1천, 1만, 1.1만
- 숫자 표기가 길어질 때가 있다. 짧게 단위를 붙여서 표기해보자
const compactNumberFormatter = new Intl.NumberFormat('ko', {
notation: 'compact',
});
function compactNumber(number: number): string {
return compactNumberFormatter.format(number);
}
'Javascript' 카테고리의 다른 글
[TypeScript] Difference between type and interface (0) | 2024.01.17 |
---|---|
[JS] 모니터/브라우저 기준 팝업창 가운데 띄우기 (window.open) (1) | 2023.12.29 |
JavaScript 접속기기 모바일/웹 여부 확인 (0) | 2023.11.27 |
글 작성 경과 시간 표시 / elapsedTime (방금 전, 몇 분 전 작성) / Javascript (0) | 2023.11.07 |
[node.js] JavaScript heap out of memory (0) | 2023.08.29 |