toFixed() 메소드는 소수 자릿수를 지정toExponential() 메소드는 과학적 표기법을 사용하여 숫자를 표현하고, 매개변수는 소수 자릿수를 지정합니다.toPrecision() 메소드는 toFixed() 호출 여부를 자동으로 결정합니다. 또는 toExponential() 메소드를 사용하고 매개변수는 모든 숫자의 자릿수 코드 복사 코드는 다음과 같습니다. var num = 99; alert(toFixed(2)); //99.00 alert(toExponential(1)) //9.0e 1 alert(toPrecision( 1)); //9.0e 1 alert(toPrecision(2)); //99 alert(toPrecision(3));