Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Number.EPSILON

 Number.EPSILON 속성(property)은 Number 형으로 표현될 수 있는 1과 1보다 큰 값 중에서 가장 작은 값의, 차입니다.

당신은 이 정적 속성에 접근하기 위하여 Number 객체를 생성할 필요가 없습니다. Number.EPSILON을 쓰면 됩니다.

Property attributes of Number.EPSILON
Writable no
Enumerable no
Configurable no

설명

이 EPSILON 속성은 대략 2.2204460492503130808472633361816E-16 또는 2-52의 값을 갖습니다.

예제

동일성 확인하기

const x = 0.2, y = 0.3, z = 0.1;
let equal = (Math.abs(x - y + z) < Number.EPSILON);

명세

명세 상태 비고
ECMAScript 2015 (6th Edition, ECMA-262)
The definition of 'Number.EPSILON' in that specification.
Standard 최초로 정의됨.
ECMAScript 2017 Draft (ECMA-262)
The definition of 'Number.EPSILON' in that specification.
Draft  

브라우저 호환성

기능 Chrome Firefox(Gecko) Internet Explorer Opera Safari
기본적인 지원 (Yes) 25.0 (25.0) No support (Yes) No support
기능 Android Chrome for Android Firefox Mobile(Gecko) IE Mobile Opera Mobile Safari Mobile
기본적인 지원 No support No support 25.0 (25.0) No support No support No support

관련된 문서

  • 이 속성을 가지고 있는 Number 객체

문서 태그 및 공헌자

 이 페이지의 공헌자: K._
 최종 변경: K._,