aboutsummaryrefslogtreecommitdiff
path: root/files/pl/web/javascript/referencje/obiekty/date/getminutes/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pl/web/javascript/referencje/obiekty/date/getminutes/index.html')
-rw-r--r--files/pl/web/javascript/referencje/obiekty/date/getminutes/index.html48
1 files changed, 0 insertions, 48 deletions
diff --git a/files/pl/web/javascript/referencje/obiekty/date/getminutes/index.html b/files/pl/web/javascript/referencje/obiekty/date/getminutes/index.html
deleted file mode 100644
index 3ee877bd14..0000000000
--- a/files/pl/web/javascript/referencje/obiekty/date/getminutes/index.html
+++ /dev/null
@@ -1,48 +0,0 @@
----
-title: Date.prototype.getMinutes()
-slug: Web/JavaScript/Referencje/Obiekty/Date/getMinutes
-tags:
- - Date
- - JavaScript
- - Method
- - Prototype
-translation_of: Web/JavaScript/Reference/Global_Objects/Date/getMinutes
----
-<div>{{JSRef}}</div>
-
-<h2 id="Podsumowanie" name="Podsumowanie">Podsumowanie</h2>
-
-<p>Zwraca minuty dla określonej daty w zależności od czasu lokalnego.</p>
-
-<h2 id="Sk.C5.82adnia" name="Sk.C5.82adnia">Składnia</h2>
-
-<pre class="syntaxbox"><code><var>dateObj</var>.getMinutes()</code></pre>
-
-<h3 id="Parametry" name="Parametry">Parametry</h3>
-
-<p>Brak.</p>
-
-<h2 id="Opis" name="Opis">Opis</h2>
-
-<p>Wartość zwracana przez <code>getMinutes</code> jest liczbą całkowitą z przedziału od 0 do 59.</p>
-
-<h2 id="Przyk.C5.82ady" name="Przyk.C5.82ady">Przykłady</h2>
-
-<h3 id="Przyk.C5.82ad:_Zastosowanie_getMinutes" name="Przyk.C5.82ad:_Zastosowanie_getMinutes">Przykład: Zastosowanie <code>getMinutes</code></h3>
-
-<p>Druga instrukcja poniżej przypisuje wartość 15 do zmiennej <code>minutes</code>, bazując na wartości obiektu <code>Xmas95</code> typu <code>Date</code>.</p>
-
-<pre class="brush: js">var Xmas95 = new Date("December 25, 1995 23:15:00");
-var minutes = Xmas95.getMinutes();
-
-console.log(minutes); // 15
-</pre>
-
-<h2 id="Zobacz_tak.C5.BCe" name="Zobacz_tak.C5.BCe">Zobacz także</h2>
-
-<div class="noinclude">
-<ul>
- <li>{{jsxref("Date.prototype.getUTCMinutes()")}}</li>
- <li>{{jsxref("Date.prototype.setMinutes()")}}</li>
-</ul>
-</div>