본문 바로가기

HealRo Project

JavaScript 소수점 버림

반응형
var BMI = (weight / (height * height)).toFixed(2);
alert(BMI);

toFixed() 함수로 원하는 자리까지 출력 가능.

반응형