const n = 1.23456789; console.log(n.toFixed(1)) // 1.2 console.log(n.toFixed(3)) // 1.235 console.log(n.toFixed(6)) // 1.234568
JavaScript에서 toFixed()함수를 활용해 소수점 n째까지 반올림을 할 수 있다.
리턴 타입은 string이다.