반응형
자바스크립트 소수점 보여주기
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
반응형
'프로그래밍 > Script' 카테고리의 다른 글
[JAVASCRIPT] Angular.JS - javascript, web app (0) | 2013.01.25 |
---|---|
[APP] 웹앱 제작시 중요고려사항 - Important Considerations When Building Single Page Web Apps (0) | 2013.01.24 |
12+ jQuery Mobile Layout Plugins and Examples (0) | 2013.01.16 |
10 jQuery Grids Plugins (0) | 2013.01.16 |
[APP] < 하이브리드앱 개발방법 > (0) | 2013.01.16 |