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