parseInt()

차노·2023년 7월 30일
0

JS

목록 보기
70/96

The ParseInt() function parses a string argument and returns an interger of the specified radix.

parse(v). analyze (a sentence) into its parts and describe their syntactic roles. 나누다; 분리하다
COMPUTING analyze (a string or text) into logical syntactic components, typically in order to test conformability to a logical grammer.

Description

The parseInt function converts its first argument to a string, parses that string, then returns an integer or NaN.

정의

parseInt() is a built-in JavaScript function that is used to parse (or convert) a string into an integer.

pareInt()는 말 그대로 정수로 분석해서 보여준다는 의미이다. 스트링의 형태를 정수로 치환함을 뜻한다.

It takes two arguments: the string to be converted and an optional radix (base) that specifies the numeral system to be used for parsing.

치환해야 할 스트링과, 파싱하는 데 사용되는 숫자 체계를 특징 짓는 선택적 래딕스를 인자로 받는다.

0개의 댓글