본문 바로가기
정보/IT

Javascript parseInt 함수

by 키운씨 2014. 6. 27.

parseInt("정수형으로 변환할  변수", "진수");

* 첫번째 매개변수는 정수형으로 변환할 변수 문자열

* 두번째 매개변수는 입력된 문자열이 몇진수인지를 정의한다.

* 진수 를 지정하지 않으면 자릿수에 따라 8진수,16진수로 자동 변환 된다.


W3SCHOOL

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진수로 간주됩니다.