반응형
//parseInt 사용 예 parseInt(“08”); // 0 반환 parseInt(“8”); // 8 반환 parseInt(“08”, 10); // 8 반환
참고
If the string begins with "0x", the radix is 16 (hexadecimal)
If the string begins with "0", the radix is 8 (octal). This feature is deprecated
If the string begins with any other value, the radix is 10 (decimal)
반응형
'Dev > JavaScript' 카테고리의 다른 글
자바스크립트 2차원 배열 사용 예 (0) | 2010.06.09 |
---|---|
자바스크립트 eval 사용 예 (0) | 2010.06.09 |
자바스크립트 undefined, null, 빈값 체크 (1) | 2010.06.09 |
자바스크립트 배열 뒤집기 (2) | 2010.06.09 |
window 객체 속성 - 자바스크립트 (0) | 2008.04.18 |