parseInt("정수형으로 변환할 변수", "진수");
* 첫번째 매개변수는 정수형으로 변환할 변수 문자열
* 두번째 매개변수는 입력된 문자열이 몇진수인지를 정의한다.
* 진수 를 지정하지 않으면 자릿수에 따라 8진수,16진수로 자동 변환 된다.
The parseInt() function parses a string and returns an integer.
The radix parameter is used to specify which numeral system to be used, for example, a radix of 16 (hexadecimal) indicates that the number in the string should be parsed from a hexadecimal number to a decimal number.
If the radix parameter is omitted, JavaScript assumes the following:
· 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)
parseInt(numString, [radix])
문자열을 정수로 변환합니다.
매개 변수
numString
필수 요소. 숫자로 변환할 문자열입니다.
radix
선택 사항입니다. numString에서 숫자의 기수를 지정하는 2에서 36까지의 값입니다. 이 인수를 제공하지 않으면 '0x'로 시작되는 문자열은 16진수로 간주됩니다. 다른 모든 문자열은 10진수로 간주됩니다.
'정보 > IT' 카테고리의 다른 글
Data-Driven Documents (D3.js) (0) | 2014.10.24 |
---|---|
[javascript/HexToDec]16진수 계산 [parseInt("0x8001001B", 16) - 0xffffffff - 1;] (0) | 2014.06.27 |
VisualSVN 서버로 Subversion 서버 구동하기 (0) | 2013.04.09 |
ActiveX 와 보안 (0) | 2012.07.14 |
Javascript Preprocessor(2) (0) | 2012.07.13 |