toFixed

개요

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


해결

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

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

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

Reference

Number.prototype.toFixed()

Comments