Number() 생성자

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

Number() 생성자Number 객체를 생성합니다.

구문

js
new Number(value);

매개변수

value

만들어질 객체의 숫자 값.

예제

Number 객체 만들기

js
const a = new Number("123"); // a === 123 은 거짓
const b = Number("123"); // b === 123 은 참
a instanceof Number; // 참
b instanceof Number; // 참

명세

Specification
ECMAScript Language Specification
# sec-number-constructor

브라우저 호환성

BCD tables only load in the browser

같이 보기

  • 최신 Number 동작(2진수와 8진수를 지원하는)의 폴리필은 core-js를 참고하세요
  • NaN
  • Math 전역 객체
  • 임의 정밀도 정수: BigInt