개요
toFixed()
의 기능을 알아보고자 함.
해결
( )안의 숫자만큼 소수점이 나옴
function financial(x) {
return Number.parseFloat(x).toFixed(2);
}
console.log(financial(123.456));
// expected output: "123.46"
toFixed()
의 기능을 알아보고자 함.
( )안의 숫자만큼 소수점이 나옴
function financial(x) {
return Number.parseFloat(x).toFixed(2);
}
console.log(financial(123.456));
// expected output: "123.46"
Comments