반응형

자바스크립트 소수점 보여주기

 

var tempAvg = 4.436;

 

Math.ceil(tempAvg) : 올림

 

Math.round(tempAvg) : 반올림

 

Math.floor(tempAvg) : 내림

 

parseInt(tempAvg) : 내림(정수)

 

parseFloat("123.4567") : 소수점있는 문자열을 숫자(float)로 변환

 

parseInt("13456") : 문자를 숫자(int)로 변환

 

parseFloat("13456") : 문자를 숫자(float)로 변환

 

var tempAvg = 5.0;

 

소수점 1자리 보여주시 : tempAvg.toFixed(1); -> 5.0

 

소수점 2자리 보여주시 : tempAvg.toFixed(2); -> 5.00

반응형

+ Recent posts