Math.log2()

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.

Die statische Methode Math.log2() gibt den Logarithmus zur Basis 2 einer Zahl zurück. Das bedeutet

x > 0 , 𝙼𝚊𝚝𝚑.𝚕𝚘𝚐𝟸 ( 𝚡 ) = log 2 ( x ) = the unique  y  such that  2 y = x \forall x > 0,\;\mathtt{\operatorname{Math.log2}(x)}} = \log_2(x) = \text{the unique } y \text{ such that } 2^y = x

Probieren Sie es aus

Syntax

js
Math.log2(x)

Parameter

x

Eine Zahl größer als oder gleich 0.

Rückgabewert

Der Logarithmus zur Basis 2 von x. Wenn x < 0, wird NaN zurückgegeben.

Beschreibung

Da log2() eine statische Methode von Math ist, verwenden Sie sie immer als Math.log2() und nicht als Methode eines erstellten Math Objekts (Math ist kein Konstruktor).

Diese Funktion entspricht Math.log(x) / Math.log(2). Für log2(e) verwenden Sie die Konstante Math.LOG2E, die 1 / Math.LN2 ist.

Beispiele

Verwendung von Math.log2()

js
Math.log2(-2); // NaN
Math.log2(-0); // -Infinity
Math.log2(0); // -Infinity
Math.log2(1); // 0
Math.log2(2); // 1
Math.log2(3); // 1.584962500721156
Math.log2(1024); // 10
Math.log2(Infinity); // Infinity

Spezifikationen

Specification
ECMAScript Language Specification
# sec-math.log2

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch