반응형

웹 개발 273

[javascript] 원시타입 - Infinity

자바스크립트에서는 최대 숫자를 벗어나는 숫자를 표현하기 위해 Infinity라고 하는 값이 정의되어 있다. 실제로 Infinity의 타입은 “number”로 나온다. 자바스크립트에서 지원하는 최소값을 벗어나는 문자를 표현하고 싶다면 –Infinity를 사용하면 된다. var maxNumber = Math.pow(10, 1000); // max positive number if (maxNumber === Infinity) { console.log("Let's call it Infinity!"); // expected output: "Let's call it Infinity!" } console.log(1 / maxNumber); // expected output: 0

웹 개발 2019.08.23
728x90
반응형
loading