본문 바로가기

프로그래밍/AngularJs

[AngularJs] - toFixed

728x90
반응형

개요

toFixed() 의 기능을 알아보고자 함.


해결

( )안의 숫자만큼 소수점이 나옴

 

function financial(x) {
  return Number.parseFloat(x).toFixed(2);
}

console.log(financial(123.456));
// expected output: "123.46"

 


Reference

Number.prototype.toFixed()

728x90
반응형