aboutsummaryrefslogtreecommitdiff
path: root/files/pl/web/javascript/referencje/obiekty/math/log10e/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pl/web/javascript/referencje/obiekty/math/log10e/index.html')
-rw-r--r--files/pl/web/javascript/referencje/obiekty/math/log10e/index.html44
1 files changed, 0 insertions, 44 deletions
diff --git a/files/pl/web/javascript/referencje/obiekty/math/log10e/index.html b/files/pl/web/javascript/referencje/obiekty/math/log10e/index.html
deleted file mode 100644
index 33765632e0..0000000000
--- a/files/pl/web/javascript/referencje/obiekty/math/log10e/index.html
+++ /dev/null
@@ -1,44 +0,0 @@
----
-title: Math.LOG10E
-slug: Web/JavaScript/Referencje/Obiekty/Math/LOG10E
-tags:
- - JavaScript
- - Math
- - Property
-translation_of: Web/JavaScript/Reference/Global_Objects/Math/LOG10E
----
-<p>{{JSRef}}</p>
-
-<h2 id="Podsumowanie" name="Podsumowanie">Podsumowanie</h2>
-
-<p>Logarytm o podstawie 10 z E, w przybliżeniu 0.434.</p>
-
-<p><math display="block"><semantics><mrow><mstyle mathvariant="monospace"><mi>Math.LOG10E</mi></mstyle><mo>=</mo><msub><mo lspace="0em" rspace="0em">log</mo><mn>10</mn></msub><mo stretchy="false">(</mo><mi>e</mi><mo stretchy="false">)</mo><mo>≈</mo><mn>0.434</mn></mrow><annotation encoding="TeX">\mathtt{\mi{Math.LOG10E}} = \log_10(e) \approx 0.434</annotation></semantics></math></p>
-
-<div>{{js_property_attributes(0, 0, 0)}}</div>
-
-<h2 id="sect1"> </h2>
-
-<h3 id="Opis" name="Opis">Opis</h3>
-
-<p>Ponieważ <code>LOG10E</code> jest statyczną własnością obiektu <code>Math</code>, zawsze odwołujemy się do niej poprzez <code>Math.LOG10E</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_LOG10E" name="Przyk.C5.82ad:_Zastosowanie_LOG10E">Przykład: Zastosowanie <code>Math.LOG10E</code></h3>
-
-<p>Poniższa funkcja zwraca logarytm o podstawie 10 z E:</p>
-
-<pre class="brush:js language-js">function getLog10e() {
- return Math.LOG10E;
-}
-
-getLog10e();<code class="language-js"><span class="token comment"> // 0.4342944819032518</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.log10()")}} {{experimental_inline}}</li>
-</ul>