Published 2023. 10. 25. 23:01
반응형
const formatNumber = (number:any) => {
const roundedNumber = Math.round(number * 100) / 100; // 소수점 둘째 자리까지 반올림
const isInteger = roundedNumber % 1 === 0; // 소수점이 없는지 확인
if (isInteger) {
return roundedNumber.toString(); // 소수점이 없으면 그냥 반환
} else {
return roundedNumber.toFixed(2); // 소수점이 있으면 둘째 자리까지 표시
}
};
반응형
'Frontend > HTML, CSS, DOM, jQuery' 카테고리의 다른 글
aria-label 의 설명과 SEO와의 관련성 (0) | 2023.12.14 |
---|---|
node 최신버전(노드 최신버전) 설치했는데, 인식 못할때 (0) | 2023.10.27 |
overflow clip (overflow hidden과 차이점, overflow-clip) (0) | 2023.10.24 |
TypScripti) 특정 값 배열 타입, 인자, 파라미터 안에 any인 불특정 인자 (0) | 2023.02.17 |
NextJS) NextAuth 로그인 인증 (login authentication) (0) | 2023.02.13 |