Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- accept
- 시간계산
- php
- parent of iframe
- date포맷
- 세션
- 문자열포함여부
- 세션사용법
- disabled
- ucfirst
- SubString
- strtotime
- Meta Tag
- mb_strimwidth
- input
- HTML
- File
- JQuery
- Selector
- CSS
- 웹프로그래밍
- indexOf
- 쿠키
- attr
- element추가
- date
- Javascript
- mysql
- 이전주소
- strpos
Archives
- Today
- Total
목록toExponential (1)
Heojju
[JavaScript] 소수점 올림 / 버림 / 반올림 / 자리수 표기
▤ 소수점 올림 document.write(Math.ceil(123.456)+"\n"); //124 document.write(Math.ceil(123.567)+"\n"); //124 ▤ 소수점 버림 document.write(Math.floor(123.456)+"\n"); //124 document.write(Math.floor(123.567)+"\n"); //124 ▤ 소수점 반올림 document.write(Math.round(123.456)+"\n"); //123 document.write(Math.round(123.567)+"\n"); //124 ▤ toFixed : 숫자를 문자열로 변환하면서 지정된 소수점 이하 숫자를 반올림하여 출력 document.write((123.456).toFixed(..
카테고리 없음
2017. 8. 17. 13:33