JS Number

Junho Yun·2023년 3월 28일
0
post-thumbnail

Number

JavaScript에서 Number는 숫자 값을 생성하고 조작하는 내장 생성자 함수입니다.

Number 생성자 함수

let x = new Number(42);
console.log(x); // Output: 42

Number 프로퍼티

https://www.youtube.com/watch?v=-GsrYvZoAdA
부동소수점 내용 ( 0.1 + 0.2 !== 0.3 )

  • Number.MAX_VALUE: JavaScript에서 표현할 수 있는 최대 숫자를 반환합니다.
  • Number.MIN_VALUE: JavaScript에서 표현할 수 있는 가장 작은 양수를 반환합니다.
  • Number.NaN: "Not-a-Number" 값을 나타냅니다.
  • Number.POSITIVE_INFINITY: 양의 무한대를 나타냅니다.
  • Number.NEGATIVE_INFINITY: 음의 무한대를 나타냅니다.
console.log(Number.MAX_VALUE); // Output: 1.7976931348623157e+308
console.log(Number.MIN_VALUE); // Output: 5e-324
console.log(Number.NaN); // Output: NaN
console.log(Number.POSITIVE_INFINITY); // Output: Infinity
console.log(Number.NEGATIVE_INFINITY); // Output: -Infinity

Number 메서드

  • Number.parseInt(): 문자열을 구문 분석하고 정수를 반환합니다.
  • Number.parseFloat(): 문자열을 구문 분석하고 부동 소수점 숫자를 반환합니다.
  • Number.toFixed(): 숫자를 지정된 소수 자릿수로 포맷합니다.
  • Number.toString(): 숫자를 문자열로 변환합니다.
console.log(Number.parseInt("42")); // Output: 42
console.log(Number.parseFloat("3.14159")); // Output: 3.14159
console.log((10/3).toFixed(2)); // Output: 3.33
console.log((255).toString(16)); // Output: ff
profile
의미 없는 코드는 없다.

0개의 댓글