JavaScript-소수점 아래 특정 자리에서 반올림

hannah·2023년 8월 28일
0

JavaScript

목록 보기
73/121
post-custom-banner

실수를 출력할 때 소수점 아래 특정 자리에서 반올림할 수 있다.

//특정 실수에 대하여 toFixed()를 이용해 소수점 아래 둘째 자리까지 출력
let x = 123.456
console.log(x.toFixed(2));

0개의 댓글