A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Math/LN2 below:

Math.LN2 - JavaScript | MDN

Math.LN2

Baseline Widely available

The Math.LN2 property represents the natural logarithm of 2, approximately 0.693:

Math.LN2 속성은 2의 자연로그 값, 약 0.693의 값을 가집니다.

Math.LN2 = ln ( 2 ) ≈ 0.693 \mathtt{\mi{Math.LN2}} = \ln(2) \approx 0.693 시도해 보기
function getNatLog2() {
  return Math.LN2;
}

console.log(getNatLog2());
// Expected output: 0.6931471805599453
쓰기 가능 불가능 열거 가능 불가능 설정 가능 불가능 설명

LN2는 Math의 정적 속성이므로, 사용자가 생성한 Math 객체의 속성으로 접근할 수 없고 항상 Math.LN2를 사용해야 합니다. (Math는 생성자가 아닙니다)

Examples Math.LN2 사용하기

다음 함수는 2의 자연 로그 값을 반환합니다.

function getNatLog2() {
  return Math.LN2;
}

getNatLog2(); // 0.6931471805599453
명세 브라우저 호환성 같이 보기

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4