aboutsummaryrefslogtreecommitdiff
path: root/files/pl/web/javascript/referencje/obiekty/math/log2e
diff options
context:
space:
mode:
Diffstat (limited to 'files/pl/web/javascript/referencje/obiekty/math/log2e')
-rw-r--r--files/pl/web/javascript/referencje/obiekty/math/log2e/index.html42
1 files changed, 0 insertions, 42 deletions
diff --git a/files/pl/web/javascript/referencje/obiekty/math/log2e/index.html b/files/pl/web/javascript/referencje/obiekty/math/log2e/index.html
deleted file mode 100644
index 29d465fe42..0000000000
--- a/files/pl/web/javascript/referencje/obiekty/math/log2e/index.html
+++ /dev/null
@@ -1,42 +0,0 @@
----
-title: Math.LOG2E
-slug: Web/JavaScript/Referencje/Obiekty/Math/LOG2E
-tags:
- - JavaScript
- - Math
- - Property
-translation_of: Web/JavaScript/Reference/Global_Objects/Math/LOG2E
----
-<p>{{JSRef}}</p>
-
-<h2 id="Podsumowanie" name="Podsumowanie">Podsumowanie</h2>
-
-<p>Logarytm o podstawie 2 z E, w przybliżeniu 1.442.</p>
-
-<p><math display="block"><semantics><mrow><mstyle mathvariant="monospace"><mi>Math.LOG2E</mi></mstyle><mo>=</mo><msub><mo lspace="0em" rspace="0em">log</mo><mn>2</mn></msub><mo stretchy="false">(</mo><mi>e</mi><mo stretchy="false">)</mo><mo>≈</mo><mn>1.442</mn></mrow><annotation encoding="TeX">\mathtt{\mi{Math.LOG2E}} = \log_2(e) \approx 1.442</annotation></semantics></math></p>
-
-<div>{{js_property_attributes(0, 0, 0)}}</div>
-
-<h2 id="Opis" name="Opis">Opis</h2>
-
-<p>Ponieważ <code>LOG2E</code> jest statyczną własnością obiektu {{jsxref("Math")}}, zawsze odwołujemy się do niej poprzez <code>Math.LOG2E</code>, a nie jak do własności instancji obiektu Math utworzonej przez użytkownika.</p>
-
-<h2 id="Przyk.C5.82ady" name="Przyk.C5.82ady">Przykłady</h2>
-
-<h3 id="Przyk.C5.82ad:_Zastosowanie_LOG2E" name="Przyk.C5.82ad:_Zastosowanie_LOG2E">Przykład: Zastosowanie <code>Math.LOG2E</code></h3>
-
-<p>Poniższa funkcja zwraca logarytm o podstawie 2 z E:</p>
-
-<pre class="brush: js language-js">function getLog2e() {
- return Math.LOG2E;
-}
-
-getLog2e(); <code class="language-js"><span class="token comment">// 1.4426950408889634</span></code></pre>
-
-<h2 id="Zobacz_tak.C5.BCe" name="Zobacz_tak.C5.BCe">Zobacz także</h2>
-
-<ul>
- <li>{{jsxref("Math.exp()")}}</li>
- <li>{{jsxref("Math.log()")}}</li>
- <li>{{jsxref("Math.log2()")}} {{experimental_inline}}</li>
-</ul>