728x90
반응형
개요
toFixed() 의 기능을 알아보고자 함.
해결
( )안의 숫자만큼 소수점이 나옴
function financial(x) {
return Number.parseFloat(x).toFixed(2);
}
console.log(financial(123.456));
// expected output: "123.46"
Reference
728x90
반응형
'프로그래밍 > AngularJs' 카테고리의 다른 글
[AngularJs] - angularJS 이중 배열 for문으로 접근하기(html) (0) | 2021.01.13 |
---|---|
[AngularJs] - 반복문으로 이중배열 데이터를 빈 배열에 추가 (0) | 2021.01.13 |
[AngularJs] - ng:cpws Can't copy! Making copies of Window or Scope instances is not supported (0) | 2021.01.13 |
[AngularJs] - ng-repeat으로 이중 배열 접근 (0) | 2021.01.11 |
[AngularJs] - $timeout 딜레이 후 함수 실행 (0) | 2021.01.11 |