From de5c456ebded0e038adbf23db34cc290c8829180 Mon Sep 17 00:00:00 2001 From: Florian Merz Date: Thu, 11 Feb 2021 14:49:24 +0100 Subject: unslug pl: move --- .../manipulating_documents/index.html | 127 ++++ .../first_steps/a_first_splash/index.html | 687 +++++++++++++++++++++ files/pl/learn/javascript/first_steps/index.html | 61 ++ .../learn/javascript/first_steps/math/index.html | 455 ++++++++++++++ .../javascript/first_steps/variables/index.html | 453 ++++++++++++++ .../first_steps/what_is_javascript/index.html | 342 ++++++++++ .../first_steps/what_went_wrong/index.html | 257 ++++++++ files/pl/learn/javascript/obiekty/index.html | 47 -- files/pl/learn/javascript/objects/index.html | 47 ++ .../pierwsze_kroki/a_first_splash/index.html | 687 --------------------- .../pierwsze_kroki/co_poszlo_nie_tak/index.html | 257 -------- .../pl/learn/javascript/pierwsze_kroki/index.html | 61 -- .../javascript/pierwsze_kroki/math/index.html | 455 -------------- .../pierwsze_kroki/what_is_javascript/index.html | 342 ---------- .../javascript/pierwsze_kroki/zmienne/index.html | 453 -------------- 15 files changed, 2429 insertions(+), 2302 deletions(-) create mode 100644 files/pl/learn/javascript/client-side_web_apis/manipulating_documents/index.html create mode 100644 files/pl/learn/javascript/first_steps/a_first_splash/index.html create mode 100644 files/pl/learn/javascript/first_steps/index.html create mode 100644 files/pl/learn/javascript/first_steps/math/index.html create mode 100644 files/pl/learn/javascript/first_steps/variables/index.html create mode 100644 files/pl/learn/javascript/first_steps/what_is_javascript/index.html create mode 100644 files/pl/learn/javascript/first_steps/what_went_wrong/index.html delete mode 100644 files/pl/learn/javascript/obiekty/index.html create mode 100644 files/pl/learn/javascript/objects/index.html delete mode 100644 files/pl/learn/javascript/pierwsze_kroki/a_first_splash/index.html delete mode 100644 files/pl/learn/javascript/pierwsze_kroki/co_poszlo_nie_tak/index.html delete mode 100644 files/pl/learn/javascript/pierwsze_kroki/index.html delete mode 100644 files/pl/learn/javascript/pierwsze_kroki/math/index.html delete mode 100644 files/pl/learn/javascript/pierwsze_kroki/what_is_javascript/index.html delete mode 100644 files/pl/learn/javascript/pierwsze_kroki/zmienne/index.html (limited to 'files/pl/learn/javascript') diff --git a/files/pl/learn/javascript/client-side_web_apis/manipulating_documents/index.html b/files/pl/learn/javascript/client-side_web_apis/manipulating_documents/index.html new file mode 100644 index 0000000000..128ef84501 --- /dev/null +++ b/files/pl/learn/javascript/client-side_web_apis/manipulating_documents/index.html @@ -0,0 +1,127 @@ +--- +title: JavaScript +slug: Web/CSS/Na_początek/JavaScript +tags: + - 'CSS:Na_początek' +translation_of: Learn/JavaScript/Client-side_web_APIs/Manipulating_documents +translation_of_original: Web/Guide/CSS/Getting_started/JavaScript +--- +

+

Jest to druga część tego kursu. Część II zawiera trochę przykładów pokazujących zakres użycia CSS w Mozilli. +

Każda strona Części II ilustruje jak CSS współpracuje z innymi technologiami. +Te strony nie zostały stworzone po to, aby nauczyć Cię korzystać z tych technologii. +Jeśli chcesz je poznać, skorzystaj z innych kursów. +

Natomiast, te strony zostały stworzone po to, aby pokazać wiele możliwości wykorzystania CSS. +Aby używać tych stron, powinieneś(aś) znać CSS, ale nie musisz znać innych technologii. +

+

Informacja: JavaScript

+

JavaScript jest językiem programowania. +Duża część kodu aplikacji Mozilla (na przykład przeglądarki) jest napisana w JavaScripcie. +

JavaScript może współpracować z arkuszami stylów, pozwalając Ci pisać aplikacje, które dynamicznie zmieniają styl dokumentu. +

Istnieją na to trzy sposoby: +

+ + + +
Więcej szczegółów +
Aby dowiedzieć się więcej o JavaScripcie w Mozilli, zajrzyj na stronę JavaScript na tym wiki. +
+

Zadanie: Demonstracja wykorzystania Javascript-u

+

Stwórz nowy dokument HTML, doc5.html. +Skopiuj i wklej poniższy kod, upewniając się, że zaznaczyłeś(aś) cały: +

+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<HTML>
+
+<HEAD>
+<TITLE>Mozilla CSS Getting Started - JavaScript demonstration</TITLE>
+<LINK rel="stylesheet" type="text/css" href="style5.css">
+<SCRIPT type="text/javascript" src="script5.js"></SCRIPT>
+</HEAD>
+
+<BODY>
+<H1>JavaScript sample</H1>
+
+<DIV id="square"></DIV>
+
+<BUTTON type="button" onclick="doDemo(this);">Click Me</BUTTON>
+
+</BODY>
+</HTML>
+
+

Stwórz nowy plik CSS, style5.css. +Skopiuj i wklej do niego poniższy kod: +

+
/*** JavaScript demonstration ***/
+#square {
+  width: 20em;
+  height: 20em;
+  border: 2px inset gray;
+  margin-bottom: 1em;
+  }
+
+button {
+  padding: .5em 2em;
+  }
+
+

Stwórz nowy plik tekstowy, script5.js. +Skopiuj i wklej do niego poniższy kod: +

+
// JavaScript demonstration
+function doDemo (button) {
+  var square = document.getElementById("square")
+  square.style.backgroundColor = "#fa4"
+  button.setAttribute("disabled", "true")
+  setTimeout(clearDemo, 2000, button)
+  }
+
+function clearDemo (button) {
+  var square = document.getElementById("square")
+  square.style.backgroundColor = "transparent"
+  button.removeAttribute("disabled")
+  }
+
+

Otwórz dokument w swojej przeglądarce i naciśnij przycisk. +

To wiki nie obsługuje JavaScriptu na stronach, więc nie jest możliwe zademonstrowanie działania tego kodu tutaj. +Wygląda to mniej więcej jak poniżej, przed i po naciśnięciu przycisku: +

+ + +
+ + +

JavaScript demonstration

+
+
+
+
+ + +

JavaScript demonstration

+
+
+
+
+

Uwagi dotyczące demonstracji: +

+ + + +
Wyzwanie +
Zmień skrypt tak, aby obiekt square skakał w prawo o 20 em, kiedy jego kolor się zmienia, i skakał z powrotem, kiedy kolor wraca do podstawowego. +
+

Co dalej?

+

Jeżeli masz problemy ze zrozumieniem tej strony albo chcesz ją skomentować, pomóż nam, dopisując się na stronie Dyskusji. +

W tej demonstracji dokument HTML posiada odnośnik do skryptu, mimo że używa go tylko element przycisku. +Mozilla rozszerza CSS, aby umożliwić wiązanie kodu JavaScript (oraz treści i innych arkuszy stylów) z wybranymi elementami. +Następna strona opisuje to: +Wiązania XBL +

{{ languages( { "en": "en/CSS/Getting_Started/JavaScript", "fr": "fr/CSS/Premiers_pas/JavaScript", "pt": "pt/CSS/Como_come\u00e7ar/JavaScript" } ) }} diff --git a/files/pl/learn/javascript/first_steps/a_first_splash/index.html b/files/pl/learn/javascript/first_steps/a_first_splash/index.html new file mode 100644 index 0000000000..0d0f49c69a --- /dev/null +++ b/files/pl/learn/javascript/first_steps/a_first_splash/index.html @@ -0,0 +1,687 @@ +--- +title: A first splash into JavaScript +slug: Learn/JavaScript/Pierwsze_kroki/A_first_splash +translation_of: Learn/JavaScript/First_steps/A_first_splash +--- +
{{LearnSidebar}}
+ +
{{PreviousMenuNext("Learn/JavaScript/First_steps/What_is_JavaScript", "Learn/JavaScript/First_steps/What_went_wrong", "Learn/JavaScript/First_steps")}}
+ +

Zaznajomiłeś się już nieco z teorią JavaScript i masz już pewne pojęcie co do zastosowania tego języka. Teraz zamierzamy udzielić Ci przyspieszonego kursu z podstawowych funkcji JavaScript'u poprzez ten, w pełni praktyczny, samouczek. Krok po kroku napiszesz tu prostą grę pod tytułem: "Zgadnij liczbę".

+ + + + + + + + + + + + +
Wymagania wstępne:Podstawowa umiejętność posługiwania się komputerem, podstawowa znajomość HTML i CSS, podstawowa znajomość czym jest JavaScript.
Cel:Pierwsze doświadczenia w pisaniu kodu w JavaScript i zrozumienie- przynajmniej w podstawowym stopniu- z czym związane jest pisanie programu w JavaScript.
+ +

Nie oczekujemy od Ciebie całkowitego zrozumienia kodu od zaraz - chcemy raczej przedstawić Ci nieco ogólniejsze spojrzenie i dać Ci odczuć sposób, w jaki działa JavaScript (jak również i inne języki programowania). W późniejszych artykułach wrócimy do użytych tu funkcjonalności w bardziej szczegółowy spsób.

+ +
+

Wiele funkcjonalności, które zobaczysz w JavaScript, jest takich samych, jak w innych językach programowania (funkcje, pętle itd.) Składnia języka wygląda inaczej, ale zasada działania jest przeważnie ta sama.

+
+ +

Myśleć jak programista

+ +

Składnia danego języka nie jest - wbrew pozorom - najtrudniejszym aspektem, z jakim trzeba zmierzyć się podczas nauki programowania. Sprawą znacznie poważniejszą jest bowiem nauczyć się stosować posiadaną wiedzę do rozwiązywania problemów ze świata realnego. Musisz zacząć myśleć jak programista. Wiąże się to z patrzeniem na opisy oczekiwanego efektu działania programu, przemyśleniem, jakich konstrukcji kodu w tym celu użyć i zaplanowaniem, jak połączyć je wszystkie w efektywnie współpracującą całość.

+ +

Wymaga to połączenia ciężkiej pracy, doświadczenia ze składnią języków i praktyki - wraz z odrobiną kreatywności. Im więcej napiszesz kodu, tym lepszy w tym się staniesz. Nie możemy obiecać, że wypracujesz  w sobie "mózg programisty" w pięć minut, ale damy Ci wiele możliwości praktykowania myślenia jak programista w czasie trwania tego kursu.

+ +

Pamiętając o tym, przyjrzyjmy się ogólnie procesowi pisania kodu dzieląc go na poszczególne konkretne zadania. Posłuży nam w tym celu poniższy przykładowy program.

+ +

Przykład: Gra "Zgadnij liczbę"

+ +

Oto przykład prostej gry:

+ + + +

{{ EmbedLiveSample('Top_hidden_code', '100%', 320, "", "", "hide-codepen-jsfiddle") }}

+ +

Nie krępuj się - pograj sobie chwilę. Zwróć uwagę na elementy tej gry zanim przejdziesz dalej.

+ +

Wyobraźmy sobie, że Twój szef postawił przed Tobą następujące zadanie:

+ +
+

Chcę, żebyś napisał prostą grę typu "zgadnij liczbę". Gra powinna wybierać losową liczbę pomiędzy 1 a 100. Zadaniem gracza jest odgadnąć tę liczbę w najwyżej 10 próbach. Po każdej próbie gracz powinien otrzymać informację, czy zgadł, czy też nie i - jeśli nie odgadł, powinien dodatkowo dowiedzieć się, czy jego liczba miała wartość za małą, czy za dużą. Ponadto gracz powinien widzieć wybrane poprzednio przez siebie liczby. Gra ma się zakończyć gdy gracz poda prawidłową odpowiedź, lub gdy wykorzysta ostatnią próbę. Po zakończeniu gry gracz powinien mieć możliwośc rozpocząć ją od nowa.

+
+ +

Zacznijmy od przedstawienia powyższego opisu w sposób bliższy myśleniu programisty i podzielmy go na proste pojedyncze zadania:

+ +
    +
  1. Wybierz losową liczbę z zakresu od 1 do 100.
  2. +
  3. Zapisz numer próby, którą podejmuje gracz. Zacznij od 1.
  4. +
  5. Podaj graczowi sposób, w jaki może odgadnąć tę liczbę.
  6. +
  7. Gdy padnie odpowiedź zapisz ją gdzieś, aby użytkownik mógł widzieć swoje poprzednie próby.
  8. +
  9. Sprawdź, czy padła prawidłowa odpowiedź.
  10. +
  11. Jeśli tak: +
      +
    1. Wyświetl gratulacje.
    2. +
    3. Zablokuj możliwość podawania dalszych odpowiedzi (to mogłoby namieszać w grze).
    4. +
    5. Udostępnij narzędzie, którym gracz może ponownie uruchomić grę.
    6. +
    +
  12. +
  13. Jeśli nie i graczowi pozostały jeszcze próby: +
      +
    1. Poinformuj o nieprawidłowej odpowiedzi.
    2. +
    3. Pozwól podać kolejną odpowiedź.
    4. +
    5. Zwiększ numer próby gracza o 1.
    6. +
    +
  14. +
  15. Jeśli nie i graczowi nie pozostała już ani jedna próba: +
      +
    1. Poinformuj o zakończeniu gry.
    2. +
    3. Zablokuj możliwość podawania dalszych odpowiedzi (to mogłoby namieszać w grze).
    4. +
    5. Udostępnij narzędzie, którym gracz może ponownie uruchomić grę.
    6. +
    +
  16. +
  17. Gdy gra uruchomi się ponownie, upewnij się, że dane z poprzedniej gry zostały całkowicie usunięte i interfejs powrócił do stanu początkowego. Przejdź do punktu nr 1.
  18. +
+ +

Zróbmy kolejny krok i spróbujmy zamienić powyższe punkty w kod, który zbuduje naszą grę. W ten sposób zobaczysz w działaniu kilka funcji JavaScript.

+ +

Przygotowanie

+ +

Aby rozpocząć pracę potrzebujesz mieć na swoim komputerze kopię pliku number-guessing-game-start.html (see it live here). Otwórz go w edytorze tekstowym i jednocześnie w swojej przeglądarce. Plik ten zawiera nagłówek, akapit z krótką instrukcją gry, oraz (jeszcze nie działający) formularz do wprowadzania odpowiedzi.

+ +

Nasz kod będziemy pisać w bloku określonym znacznikiem {{htmlelement("script")}} u dołu pliku HTML:

+ +
<script>
+
+  // Twój kod JavaScript
+
+</script>
+
+ +

Pojemniki na dane - zmienne

+ +

Zaczynamy. W pierwszej kolejności dodaj poniższe linijki kodu do bloku oznaczonego {{htmlelement("script")}}.

+ +
var randomNumber = Math.floor(Math.random() * 100) + 1;
+
+var guesses = document.querySelector('.guesses');
+var lastResult = document.querySelector('.lastResult');
+var lowOrHi = document.querySelector('.lowOrHi');
+
+var guessSubmit = document.querySelector('.guessSubmit');
+var guessField = document.querySelector('.guessField');
+
+var guessCount = 1;
+var resetButton;
+ +

Ta część kodu definiuje zmienne i stałe niezbędne do pracy programu. Najprościej rzecz ujmując, zmienne są pojemnikami na wartości takie jak liczby, czy ciągi znaków. Zmienną tworzymy używając słowo kluczowe let (lub var), po którym wpisujemy nazwę tej zmiennej. Następnie możemy tej zmiennej przypisać wartość. Robimy to za pomocą znaku równości (=), po którego prawej stronie wpisujemy żądaną wartość. Więcej informacji na temat różnic pomiędzy słowami kluczowymi let i var możesz znaleźć w tym artykule. Stałe natomiast mają za zadanie przechować dane, które mają się nie zmieniać i tworzy się je podobnie jak zmienne, ale przy użyciu słowa kluczowego const. W naszym przykładzie użyjemy stałych do przechowania odnośników (referencji) do poszczególnych części naszego interfejsu użytkownika. Tekst w niektórych z nich może w którymś momencie ulec zmianie, jednak bloki kodu HTML, do których odnoszą się nasze stałe pozostaną niezmienne.

+ +

W naszym przykładzie:

+ + + +
+

Na temat zmiennych i stałych będziesz dowiadywał się coraz więcej w toku trwania kursu, począwszy już od tego artykułu.

+
+ +

Funkcje

+ +

Wstaw następujący kod poniżej dodanego w poprzednim kroku:

+ +
function checkGuess() {
+  alert('I am a placeholder');
+}
+ +

Funkcje są blokami kodu "wielokrotnego użytku". Napisane raz, mogą być wywoływane wielokrotnie bez potrzeby ponownego pisania ich w całości. Ta cecha funkcji nie tylko oszczędza czas pisania kodu, ale również znacząco poprawia jego czytelność. Istnieje kilka sposobów definiowania funkcji. W tym przykładzie zajmiemy się jednym z prostszych. Rozpoczynamy od słowa kluczowego function, następnie piszemy nazwę naszej funkcji, a na jej końcu- nawiasy zwykłe. Potem wstawiamy dwa nawiasy klamrowe ({ }). To właśnie w nich zawarte jest ciało funkcji - kod, który będzie wykonywał się, ilekroć wywołamy tę funkcję.

+ +

Funkcje wywołuje się pisząc jej nazwę wraz z nawiasami zwykłymi.

+ +

Spróbujmy. Zapisz zmiany w swoim pliku z kodem i odśwież okno przeglądarki. Teraz przejdź do konsoli JavaScript w narzędziach programisty w przeglądarce i wprowadź tę linię:

+ +
checkGuess();
+ +

Po zatwierdzeniu klawiszem Return/Enter, powinno pojawić się okno alertu z tekstem: "I am a placeholder". Dzieje się tak, poniważ w naszym kodzie zdefiniowaliśmy funkcję, która uruchamia ten alert, kiedy tylko ją wywołamy.

+ +
+

dalszej części kursu dowiesz się znacznie więcej o funkcjach.

+
+ +

Operatory

+ +

Za pomocą operatorów w JavaScript możemy przeprowadzać porównania, dokonywać obliczeń, łączyć ze sobą ciągi znaków i robić wiele innych przydatnych rzeczy.

+ +

Jeśli jeszcze nie zapisałeś zmian w swoim pliku z kodem, oraz nie odświeżyłeś okna przeglądarki, zrób to teraz. Otwórz konsolę Javascript w narzędziach programisty w przeglądarce. Teraz będziesz mógł sprawdzić działanie operatorów. Przepisz dokładnie każde z poleceń z kolumny "Example" i zatwierdź każde z nich klawiszem Return/Enter. Obserwuj wyniki. Jeśli z jakiegoś powodu nie masz dostępu do  narzędzi programistycznych w Twojej przeglądarce, możesz użyć poniższej prostej konsoli:

+ + + +

{{ EmbedLiveSample('Hidden_code', '100%', 300, "", "", "hide-codepen-jsfiddle") }}

+ +

Najpierw zajmiemy się operatorami arytmetycznymi:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
OperatorNameExample
+Dodawanie6 + 9
-Odejmowanie20 - 15
*Mnożenie3 * 7
/Dzielenie10 / 5
+ +

Operatora + możemy też użyć do łączenia ciągów znaków (takie działanie nazywa się w programowaniu konkatenacją). Wprowadź poniższe linie, oddzielając je klawiszem Return / Enter :

+ +
var name = 'Bingo';
+name;
+var hello = ' says hello!';
+hello;
+var greeting = name + hello;
+greeting;
+ +

Dostępne są również pewne ułatwiające życie skróty, zwane złożonymi operatorami przypisania. Jeśli na przykład chcielibyśmy w prosty sposób dodać nowy ciąg tekstowy do już istniejącego, możemy napisać tak:

+ +
name += ' says hello!';
+ +

Co jest równoznaczne z:

+ +
name = name + ' says hello!';
+ +

Kiedy dokonujemy sprawdzenia prawda / fałsz (na przykład w instrukcjach warunkowych - zobacz {{anch("Instrukcje warunkowe", "poniżej")}}) używamy operatorów porównania. Na przykład:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
OperatorNameExample
===Ścisła równość (czy jest dokładnie tym samym?)5 === 2 + 4
!==Różne od (czy nie jest tym samym?)'Chris' !== 'Ch' + 'ris'
<Mniejsze od10 < 6
>Większe od10 > 20
+ +

Instrukcje warunkowe

+ +

Wrócmy teraz do naszej funkcji checkGuess().  Z pewnością lepiej mogłaby nam się przysłużyć, gdyby jej działanie nie ograniczało się tylko do wyświetlenia komunikatu "placeholder". Mamy dla niej o wiele ważniejsze zadanie - chcemy, by sprawdzała każdą odpowiedź gracza i odpowiednio reagowała.

+ +

W tym celu zastąp obecną funkcję checkGuess() jej nową wersją:

+ +
function checkGuess() {
+  var userGuess = Number(guessField.value);
+  if (guessCount === 1) {
+    guesses.textContent = 'Previous guesses: ';
+  }
+  guesses.textContent += userGuess + ' ';
+
+  if (userGuess === randomNumber) {
+    lastResult.textContent = 'Congratulations! You got it right!';
+    lastResult.style.backgroundColor = 'green';
+    lowOrHi.textContent = '';
+    setGameOver();
+  } else if (guessCount === 10) {
+    lastResult.textContent = '!!!GAME OVER!!!';
+    setGameOver();
+  } else {
+    lastResult.textContent = 'Wrong!';
+    lastResult.style.backgroundColor = 'red';
+    if(userGuess < randomNumber) {
+      lowOrHi.textContent = 'Last guess was too low!';
+    } else if(userGuess > randomNumber) {
+      lowOrHi.textContent = 'Last guess was too high!';
+    }
+  }
+
+  guessCount++;
+  guessField.value = '';
+  guessField.focus();
+}
+ +

Sporo kodu, prawda? Przyjrzyjmy mu się bliżej:

+ + + +

Zdarzenia (events)

+ +

Udało nam się całkiem zgrabnie zaimplementować funkcję checkGuess(), jednak na razie nie wykona ona żadnej akcji z tej prostej przyczyny, że jeszcze jej nie wywołaliśmy. Funkcja ta ma zostać wywołana przy naciśnięciu przycisku "Submit guess". W tym celu użyjemy zdarzenia. Zdarzenie jest tym, co dzieje się w przeglądarce (np. kliknięcie przycisku, załadowanie strony, odtwarzanie filmu, itd.) i czego możemy użyć  w celu wywołania konkretnego bloku kodu. Konstrukty, które "nasłuchują", czy miało miejsce zdarzenie nazywane są detektorami zdarzeń (event listeners), a wywoływane w odpowiedzi na nie bloki kodu - modułami obsługi zdarzeń (event handlers).

+ +

Do swojej funkcji checkGuess() dodaj poniższą linię:

+ +
guessSubmit.addEventListener('click', checkGuess);
+ +

W ten sposób dodałeś detektor zdarzenia do przycisku guessSubmit. Jest to metoda, która ma dwie dane wejściowe (zwane argumentami) zapisane w formie  ciągu znaków: typ zdarzenia, które ma zajść (w tym przypadku click), oraz fragment kodu, który ma zostać uruchomiony poprzez to zdarzenie (funkcja checkGuess()). Nazwę funkcji piszemy bez cudzysłowia. {{domxref("EventTarget.addEventListener", "addEventListener()")}}.

+ +

Zapisz i odśwież swój kod. Powinien już prawie w pełni działać. Pozostała jeszcze jedna kwestia: gdy odgadniesz właściwą odpowiedź, lub wykorzystasz wszystkie próby odpowiedzi, gra zostanie przerwana, ponieważ jak dotąd nie zdefiniowaliśmy funkcji setGameOver(), która ma zostać wywołana w przypadku zakończenia gry. Dodajmy zatem brakującą część kodu, aby nasza gra zyskała wszystkie funkcjonalności.

+ +

Finishing the game functionality

+ +

Let's add that setGameOver() function to the bottom of our code and then walk through it. Add this now, below the rest of your JavaScript:

+ +
function setGameOver() {
+  guessField.disabled = true;
+  guessSubmit.disabled = true;
+  resetButton = document.createElement('button');
+  resetButton.textContent = 'Start new game';
+  document.body.appendChild(resetButton);
+  resetButton.addEventListener('click', resetGame);
+}
+ + + +

Now we need to define this function too! Add the following code, again to the bottom of your JavaScript:

+ +
function resetGame() {
+  guessCount = 1;
+
+  var resetParas = document.querySelectorAll('.resultParas p');
+  for (var i = 0 ; i < resetParas.length ; i++) {
+    resetParas[i].textContent = '';
+  }
+
+  resetButton.parentNode.removeChild(resetButton);
+
+  guessField.disabled = false;
+  guessSubmit.disabled = false;
+  guessField.value = '';
+  guessField.focus();
+
+  lastResult.style.backgroundColor = 'white';
+
+  randomNumber = Math.floor(Math.random() * 100) + 1;
+}
+ +

This rather long block of code completely resets everything to how it was at the start of the game, so the player can have another go. It:

+ + + +

At this point you should have a fully working (simple) game — congratulations!

+ +

All we have left to do now in this article is talk about a few other important code features that you've already seen, although you may have not realized it.

+ +

Loops

+ +

One part of the above code that we need to take a more detailed look at is the for loop. Loops are a very important concept in programming, which allow you to keep running a piece of code over and over again, until a certain condition is met.

+ +

To start with, go to your browser developer tools JavaScript console again, and enter the following:

+ +
for (var i = 1 ; i < 21 ; i++) { console.log(i) }
+ +

What happened? The numbers 1 to 20 were printed out in your console. This is because of the loop. A for loop takes three input values (arguments):

+ +
    +
  1. A starting value: In this case we are starting a count at 1, but this could be any number you like. You could replace the letter i with any name you like too, but i is used as a convention because it's short and easy to remember.
  2. +
  3. An exit condition: Here we have specified i < 21 — the loop will keep going until i is no longer less than 21. When i reaches 21, the loop will no longer run.
  4. +
  5. An incrementor: We have specified i++, which means "add 1 to i". The loop will run once for every value of i, until i reaches a value of 21 (as discussed above). In this case, we are simply printing the value of i out to the console on every iteration using {{domxref("Console.log", "console.log()")}}.
  6. +
+ +

Now let's look at the loop in our number guessing game — the following can be found inside the resetGame() function:

+ +
var resetParas = document.querySelectorAll('.resultParas p');
+for (var i = 0 ; i < resetParas.length ; i++) {
+  resetParas[i].textContent = '';
+}
+ +

This code creates a variable containing a list of all the paragraphs inside <div class="resultParas"> using the {{domxref("Document.querySelectorAll", "querySelectorAll()")}} method, then it loops through each one, removing the text content of each.

+ +

A small discussion on objects

+ +

Let's add one more final improvement before we get to this discussion. Add the following line just below the var resetButton; line near the top of your JavaScript, then save your file:

+ +
guessField.focus();
+ +

This line uses the {{domxref("HTMLElement.focus", "focus()")}} method to automatically put the text cursor into the {{htmlelement("input")}} text field as soon as the page loads, meaning that the user can start typing their first guess right away, without having to click the form field first. It's only a small addition, but it improves usability — giving the user a good visual clue as to what they've got to do to play the game.

+ +

Let's analyze what's going on here in a bit more detail. In JavaScript, everything is an object. An object is a collection of related functionality stored in a single grouping. You can create your own objects, but that is quite advanced and we won't be covering it until much later in the course. For now, we'll just briefly discuss the built-in objects that your browser contains, which allow you to do lots of useful things.

+ +

In this particular case, we first created a guessField variable that stores a reference to the text input form field in our HTML — the following line can be found amongst our variable declarations near the top:

+ +
var guessField = document.querySelector('.guessField');
+ +

To get this reference, we used the {{domxref("document.querySelector", "querySelector()")}} method of the {{domxref("document")}} object. querySelector() takes one piece of information — a CSS selector that selects the element you want a reference to.

+ +

Because guessField now contains a reference to an {{htmlelement("input")}} element, it will now have access to a number of properties (basically variables stored inside objects, some of which can't have their values changed) and methods (basically functions stored inside objects). One method available to input elements is focus(), so we can now use this line to focus the text input:

+ +
guessField.focus();
+ +

Variables that don't contain references to form elements won't have focus() available to them. For example, the guesses variable contains a reference to a {{htmlelement("p")}} element, and guessCount contains a number.

+ +

Playing with browser objects

+ +

Let's play with some browser objects a bit.

+ +
    +
  1. First of all, open up your program in a browser.
  2. +
  3. Next, open your browser developer tools, and make sure the JavaScript console tab is open.
  4. +
  5. Type in guessField and the console will show you that the variable contains an {{htmlelement("input")}} element. You'll also notice that the console autocompletes the names of objects that exist inside the execution environment, including your variables!
  6. +
  7. Now type in the following: +
    guessField.value = 'Hello';
    + The value property represents the current value entered into the text field. You'll see that by entering this command, we've changed the text in the text field!
  8. +
  9. Now try typing in guesses and pressing return. The console will show you that the variable contains a {{htmlelement("p")}} element.
  10. +
  11. Now try entering the following line: +
    guesses.value
    + The browser will return undefined, because paragraphs don't have the value property.
  12. +
  13. To change the text inside a paragraph, you need the {{domxref("Node.textContent", "textContent")}} property instead. Try this: +
    guesses.textContent = 'Where is my paragraph?';
    +
  14. +
  15. Now for some fun stuff. Try entering the below lines, one by one: +
    guesses.style.backgroundColor = 'yellow';
    +guesses.style.fontSize = '200%';
    +guesses.style.padding = '10px';
    +guesses.style.boxShadow = '3px 3px 6px black';
    + Every element on a page has a style property, which itself contains an object whose properties contain all the inline CSS styles applied to that element. This allows us to dynamically set new CSS styles on elements using JavaScript.
  16. +
+ +

Finished for now...

+ +

So that's it for building the example. You got to the end — well done! Try your final code out, or play with our finished version here. If you can't get the example to work, check it against the source code.

+ +

{{PreviousMenuNext("Learn/JavaScript/First_steps/What_is_JavaScript", "Learn/JavaScript/First_steps/What_went_wrong", "Learn/JavaScript/First_steps")}}

+ +

In this module

+ + diff --git a/files/pl/learn/javascript/first_steps/index.html b/files/pl/learn/javascript/first_steps/index.html new file mode 100644 index 0000000000..ab90523dce --- /dev/null +++ b/files/pl/learn/javascript/first_steps/index.html @@ -0,0 +1,61 @@ +--- +title: Pierwsze kroki w Javascript +slug: Learn/JavaScript/Pierwsze_kroki +tags: + - Artykuły + - Liczby + - Moduły + - Operatory + - Początkujący + - Przewodnik + - Pętle + - Zmienne +translation_of: Learn/JavaScript/First_steps +--- +
{{LearnSidebar}}
+ +

W pierwszym module, przed rozpoczęciem praktycznego pisania kodu w JavaScript, odpowiemy sobie na kilka fundamentalnych pytań takich jak: "czym jest JavaScript?", "czym się charakteryzuje?" oraz "co potrafi?". Następnie omówimy kilka kluczowych kwestii - zmienne, ciągi znaków, liczby oraz pętle w JavaScript.

+ +

Wymagania

+ +

Przed rozpoczęciem nauki tego modułu nie musisz posiadać żadnej wiedzy o JavaScript, ale powinieneś już znać podstawowe zagadnienia związane z HTML-em oraz CSS-em. Doradzamy Ci, abyś ukończył moduły przedstawione poniżej:

+ + + +
+

Informacja: Jeżeli pracujesz na komputerze/tablecie/innym urządzeniu na którym nie masz możliwości tworzenia własnych plików, możesz wypróbować przedstawione przykłady w programach online, takich jak:  JSBin lub Thimble.

+
+ +

Przewodnik

+ +
+
Czym jest JavaScript?
+
Witamy w MDN-owym kursie JavaScript dla początkujących! W tym artykule spojrzymy na JavaScript jeszcze nieco ogólne i odpowiemy sobie na podstawowe pytania:  "co to jest?" oraz "co robi?". To ważne, by znać cele stosowania tego języka.
+
Pierwsze spojrzenie na JavaScript
+
Najpierw nauczysz się teorii JavaScript, oraz tego, co możesz zrobić za jego pomocą. Następnie przejdziesz przez instruktarz oparty o podstawowe cechy JavaScript, który będzie miał formę praktyczną - napiszesz prostą grę - "Zgadnij liczbę". Proces pisania pokażemy Ci krok po kroku.
+
Coś poszło nie tak? Rozwiązywanie problemów w JavaScript
+
Podczas pisania gry "zgadnij liczbę" z poprzedniego artykułu możesz natrafić na trudności, które spowodują problemy z jej poprawnym działaniem. Spokojnie - ten artykuł uchroni Cię przed wyrywaniem sobie włosów podczas sprawdzania swojego kodu. Pokażemy Ci kilka prostych sposóbów wykrywania i eliminowania błędów w programie napisanym w Javascript.
+
Przechowywanie informacji, których potrzebujesz — Zmienne
+
Po przeczytaniu poprzednich artykułów powinieneś wiedzieć czym jest JavaScript, co może dla Ciebie zrobić, oraz jak możesz używać go wraz z innymi internetowymi technologiami. Ten artykuł poprowadzi Cię przez podstawowe "bloki", którymi będziesz posługiwać się podczas pisania programu w Javascript - zmienne.
+
Podstawy działań w JavaScript — liczby i operatory
+
W tym miesjcu kursu porozmawiamy o działaniach w JavaScript - dowiesz się jak możesz łączyć operatory oraz przeczytasz o innych cechach języka, aby poprawnie korzystać z liczb.
+
Przechowywanie tekstu — ciągi znaków w JavaScript
+
Następnie skupimy swoją uwagę na string-ach - tak nazywają się ciągi tekstu w programowaniu. W tym artykule spojrzymy na najważniejsze rzeczy, które potrzebujesz wiedzieć o ciągach znaków w JavaScript. Są nimi: tworzenie "string-ów", używanie cudzysłowia, oraz łączenie ze sobą ciągów znaków.
+
Użyteczne metody w string-ach
+
Po zaznajomieniu się z podstawami string-ów czas podnieść poprzeczkę. Zaczniemy mysleć o pomocnych operacjach, które możemy wykonać na ciągach znaków poprzez wbudowane funkcje, takie jak: obliczanie długości ciągu znaków, łączenie i rozdzielanie, zastępowanie jednego znaku innym i wiele więcej.
+
Pętle
+
W ostatnim artykule tego modułu przyjrzymy się pętlom - następnym sposobie przechowywania informacji w pojedynczej zmiennej. Dowiesz się tutaj dlaczego są one ważne, odkryjesz jak je stworzyć, dodać i usunąć z nich dane. 
+
+ +

Podsumowanie

+ +

Poniższe podsumowanie sprawdzi Twoje rozumienie podstaw języka Javascript z powyższego przewodnika.

+ +
+
Generator niemądrych opowieści
+
W tej części zastosujesz zdobytą wiedzę, zebraną w powyższych artykułach, do stworzenia aplikacji - "Generatora niemądrych opowieści". Baw się dobrze!
+
diff --git a/files/pl/learn/javascript/first_steps/math/index.html b/files/pl/learn/javascript/first_steps/math/index.html new file mode 100644 index 0000000000..3e5563d0da --- /dev/null +++ b/files/pl/learn/javascript/first_steps/math/index.html @@ -0,0 +1,455 @@ +--- +title: Basic math in JavaScript — numbers and operators +slug: Learn/JavaScript/Pierwsze_kroki/Math +translation_of: Learn/JavaScript/First_steps/Math +--- +
{{LearnSidebar}}
+ +
{{PreviousMenuNext("Learn/JavaScript/First_steps/Variables", "Learn/JavaScript/First_steps/Strings", "Learn/JavaScript/First_steps")}}
+ +

At this point in the course we discuss math in JavaScript — how we can use {{Glossary("Operator","operators")}} and other features to successfully manipulate numbers to do our bidding.

+ + + + + + + + + + + + +
Prerequisites:Basic computer literacy, a basic understanding of HTML and CSS, an understanding of what JavaScript is.
Objective:To gain familiarity with the basics of math in JavaScript.
+ +

Wszyscy kochają matematykę

+ +

Ok, może nie. Niektórzy  kochają matematykę, inni nienawidzą  od kiedy musieli nauczyć się tabliczki mnożenia i dzielenia przez liczby wielocyfrowe w szkole podstawowej, a częśc jest gdzieś pośrodku. Ale nikt z nas nie może zaprzeczyć, temu że matematyka jest fundamentalną częścią życia, bez której nie zajdzie się daleko. Jest to szczególnie prawdziwe kiedy uczymy się programowania w JavaScript (lub jakimkolwiek innym języku) -   tak wiele z tego co robimy polega na przetwarzaniu danych liczbowych, obliczaniu nowych wartości i tak dalej, że nie będziesz zaskoczony, że JavaScript posiada w pełni funkcjonalny zestaw funkcji matematycznych.

+ +

Artykuł omawia podstawy, które musisz znać na ten moment.

+ +

Typy liczb

+ +

W programowaniu, nawet na pozór łatwy system dziesiętny, który tak dobrze znamy jest bardziej skąplikowany niż mógłbyś sądzić. Używamy różnych terminów do opisania różnych typów liczb dziesiętnych, dla przykładu: 

+ + + +

We even have different types of number systems! Decimal is base 10 (meaning it uses 0–9 in each column), but we also have things like:

+ + + +

Before you start to get worried about your brain melting, stop right there! For a start, we are just going to stick to decimal numbers throughout this course; you'll rarely come across a need to start thinking about other types, if ever.

+ +

The second bit of good news is that unlike some other programming languages, JavaScript only has one data type for numbers, both integers and decimals — you guessed it, {{jsxref("Number")}}. This means that whatever type of numbers you are dealing with in JavaScript, you handle them in exactly the same way.

+ +
+

Note: Actually, JavaScript has a second number type, {{Glossary("BigInt")}}, used for very, very large integers. But for the purposes of this course, we'll just worry about Number values.

+
+ +

It's all numbers to me

+ +

Let's quickly play with some numbers to reacquaint ourselves with the basic syntax we need. Enter the commands listed below into your developer tools JavaScript console.

+ +
    +
  1. First of all, let's declare a couple of variables and initialize them with an integer and a float, respectively, then type the variable names back in to check that everything is in order: +
    let myInt = 5;
    +let myFloat = 6.667;
    +myInt;
    +myFloat;
    +
  2. +
  3. Number values are typed in without quote marks — try declaring and initializing a couple more variables containing numbers before you move on.
  4. +
  5. Now let's check that both our original variables are of the same datatype. There is an operator called {{jsxref("Operators/typeof", "typeof")}} in JavaScript that does this. Enter the below two lines as shown: +
    typeof myInt;
    +typeof myFloat;
    + You should get "number" returned in both cases — this makes things a lot easier for us than if different numbers had different data types, and we had to deal with them in different ways. Phew!
  6. +
+ +

Useful Number methods

+ +

The Number object, an instance of which represents all standard numbers you'll use in your JavaScript, has a number of useful methods available on it for you to manipulate numbers. We don't cover these in detail in this article because we wanted to keep it as a simple introduction and only cover the real basic essentials for now; however, once you've read through this module a couple of times it is worth going to the object reference pages and learning more about what's available.

+ +

For example, to round your number to a fixed number of decimal places, use the toFixed() method. Type the following lines into your browser's console:

+ +
let lotsOfDecimal = 1.766584958675746364;
+lotsOfDecimal;
+let twoDecimalPlaces = lotsOfDecimal.toFixed(2);
+twoDecimalPlaces;
+ +

Converting to number data types

+ +

Sometimes you might end up with a number that is stored as a string type, which makes it difficult to perform calculations with it. This most commonly happens when data is entered into a form input, and the input type is text. There is a way to solve this problem — passing the string value into the Number() constructor to return a number version of the same value.

+ +

For example, try typing these lines into your console:

+ +
let myNumber = '74';
+myNumber + 3;
+ +

You end up with the result 743, not 77, because myNumber is actually defined as a string. You can test this by typing in the following:

+ +
typeof myNumber;
+ +

To fix the calculation, you can do this:

+ +
Number(myNumber) + 3;
+ +

Arithmetic operators

+ +

Arithmetic operators are the basic operators that we use to do sums in JavaScript:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
OperatorNamePurposeExample
+AdditionAdds two numbers together.6 + 9
-SubtractionSubtracts the right number from the left.20 - 15
*MultiplicationMultiplies two numbers together.3 * 7
/DivisionDivides the left number by the right.10 / 5
%Remainder (sometimes called modulo) +

Returns the remainder left over after you've divided the left number into a number of integer portions equal to the right number.

+
+

8 % 3 (returns 2, as three goes into 8 twice, leaving 2 left over).

+
**ExponentRaises a base number to the exponent power, that is, the base number multiplied by itself, exponent times. It was first Introduced in EcmaScript 2016.5 ** 2 (returns 25, which is the same as 5 * 5).
+ +
+

Note: You'll sometimes see numbers involved in arithmetic referred to as {{Glossary("Operand", "operands")}}.

+
+ +
+

Note: You may sometimes see exponents expressed using the older {{jsxref("Math.pow()")}} method, which works in a very similar way. For example, in Math.pow(7, 3), 7 is the base and 3 is the exponent, so the result of the expression is 343. Math.pow(7, 3) is equivalent to 7**3.

+
+ +

We probably don't need to teach you how to do basic math, but we would like to test your understanding of the syntax involved. Try entering the examples below into your developer tools JavaScript console to familiarize yourself with the syntax.

+ +
    +
  1. First try entering some simple examples of your own, such as +
    10 + 7
    +9 * 8
    +60 % 3
    +
  2. +
  3. You can also try declaring and initializing some numbers inside variables, and try using those in the sums — the variables will behave exactly like the values they hold for the purposes of the sum. For example: +
    let num1 = 10;
    +let num2 = 50;
    +9 * num1;
    +num1 ** 3;
    +num2 / num1;
    +
  4. +
  5. Last for this section, try entering some more complex expressions, such as: +
    5 + 10 * 3;
    +num2 % 9 * num1;
    +num2 + num1 / 8 + 2;
    +
  6. +
+ +

Some of this last set of calculations might not give you quite the result you were expecting; the  section below might well give the answer as to why.

+ +

Operator precedence

+ +

Let's look at the last example from above, assuming that num2 holds the value 50 and num1 holds the value 10 (as originally stated above):

+ +
num2 + num1 / 8 + 2;
+ +

As a human being, you may read this as "50 plus 10 equals 60", then "8 plus 2 equals 10", and finally "60 divided by 10 equals 6".

+ +

But the browser does "10 divided by 8 equals 1.25", then "50 plus 1.25 plus 2 equals 53.25".

+ +

This is because of operator precedence — some operators are applied before others when calculating the result of a calculation (referred to as an expression, in programming).  Operator precedence in JavaScript is the same as is taught in math classes in school — Multiply and divide are always done first, then add and subtract (the calculation is always evaluated from left to right).

+ +

If you want to override operator precedence, you can put parentheses round the parts that you want to be explicitly dealt with first. So to get a result of 6, we could do this:

+ +
(num2 + num1) / (8 + 2);
+ +

Try it and see.

+ +
+

Note: A full list of all JavaScript operators and their precedence can be found in Expressions and operators.

+
+ +

Increment and decrement operators

+ +

Sometimes you'll want to repeatedly add or subtract one to or from a numeric variable value. This can be conveniently done using the increment (++) and decrement (--) operators. We used ++ in our "Guess the number" game back in our first splash into JavaScript article, when we added 1 to our guessCount variable to keep track of how many guesses the user has left after each turn.

+ +
guessCount++;
+ +
+

Note: These operators are most commonly used in loops, which you'll learn about later on in the course. For example, say you wanted to loop through a list of prices, and add sales tax to each one. You'd use a loop to go through each value in turn and do the necessary calculation for adding the sales tax in each case. The incrementor is used to move to the next value when needed. We've actually provided a simple example showing how this is done — check it out live, and look at the source code to see if you can spot the incrementors! We'll look at loops in detail later on in the course.

+
+ +

Let's try playing with these in your console. For a start, note that you can't apply these directly to a number, which might seem strange, but we are assigning a variable a new updated value, not operating on the value itself. The following will return an error:

+ +
3++;
+ +

So, you can only increment an existing variable. Try this:

+ +
let num1 = 4;
+num1++;
+ +

Okay, strangeness number 2! When you do this, you'll see a value of 4 returned — this is because the browser returns the current value, then increments the variable. You can see that it's been incremented if you return the variable value again:

+ +
num1;
+ +

The same is true of -- : try the following

+ +
let num2 = 6;
+num2--;
+num2;
+ +
+

Note: You can make the browser do it the other way round — increment/decrement the variable then return the value — by putting the operator at the start of the variable instead of the end. Try the above examples again, but this time use ++num1 and --num2.

+
+ +

Assignment operators

+ +

Assignment operators are operators that assign a value to a variable. We have already used the most basic one, =, loads of times — it simply assigns the variable on the left the value stated on the right:

+ +
let x = 3; // x contains the value 3
+let y = 4; // y contains the value 4
+x = y; // x now contains the same value y contains, 4
+ +

But there are some more complex types, which provide useful shortcuts to keep your code neater and more efficient. The most common are listed below:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
OperatorNamePurposeExampleShortcut for
+=Addition assignmentAdds the value on the right to the variable value on the left, then returns the new variable valuex += 4;x = x + 4;
-=Subtraction assignmentSubtracts the value on the right from the variable value on the left, and returns the new variable valuex -= 3;x = x - 3;
*=Multiplication assignmentMultiplies the variable value on the left by the value on the right, and returns the new variable valuex *= 3;x = x * 3;
/=Division assignmentDivides the variable value on the left by the value on the right, and returns the new variable valuex /= 5;x = x / 5;
+ +

Try typing some of the above examples into your console, to get an idea of how they work. In each case, see if you can guess what the value is before you type in the second line.

+ +

Note that you can quite happily use other variables on the right hand side of each expression, for example:

+ +
let x = 3; // x contains the value 3
+let y = 4; // y contains the value 4
+x *= y; // x now contains the value 12
+ +
+

Note: There are lots of other assignment operators available, but these are the basic ones you should learn now.

+
+ +

Active learning: sizing a canvas box

+ +

In this exercise, you will manipulate some numbers and operators to change the size of a box. The box is drawn using a browser API called the {{domxref("Canvas API", "", "", "true")}}. There is no need to worry about how this works — just concentrate on the math for now. The width and height of the box (in pixels) are defined by the variables x and y, which are initially both given a value of 50.

+ +

{{EmbedGHLiveSample("learning-area/javascript/introduction-to-js-1/maths/editable_canvas.html", '100%', 620)}}

+ +

Open in new window

+ +

In the editable code box above, there are two lines marked with a comment that we'd like you to update to make the box grow/shrink to certain sizes, using certain operators and/or values in each case. Let's try the following:

+ + + +

Don't worry if you totally mess the code up. You can always press the Reset button to get things working again. After you've answered all the above questions correctly, feel free to play with the code some more or create your own challenges.

+ +

Comparison operators

+ +

Sometimes we will want to run true/false tests, then act accordingly depending on the result of that test — to do this we use comparison operators.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
OperatorNamePurposeExample
===Strict equalityTests whether the left and right values are identical to one another5 === 2 + 4
!==Strict-non-equalityTests whether the left and right values are not identical to one another5 !== 2 + 3
<Less thanTests whether the left value is smaller than the right one.10 < 6
>Greater thanTests whether the left value is greater than the right one.10 > 20
<=Less than or equal toTests whether the left value is smaller than or equal to the right one.3 <= 2
>=Greater than or equal toTests whether the left value is greater than or equal to the right one.5 >= 4
+ +
+

Note: You may see some people using == and != in their tests for equality and non-equality. These are valid operators in JavaScript, but they differ from ===/!==. The former versions test whether the values are the same but not whether the values' datatypes are the same. The latter, strict versions test the equality of both the values and their datatypes. The strict versions tend to result in fewer errors, so we recommend you use them.

+
+ +

If you try entering some of these values in a console, you'll see that they all return true/false values — those booleans we mentioned in the last article. These are very useful, as they allow us to make decisions in our code, and they are used every time we want to make a choice of some kind. For example, booleans can be used to:

+ + + +

We'll look at how to code such logic when we look at conditional statements in a future article. For now, let's look at a quick example:

+ +
<button>Start machine</button>
+<p>The machine is stopped.</p>
+
+ +
const btn = document.querySelector('button');
+const txt = document.querySelector('p');
+
+btn.addEventListener('click', updateBtn);
+
+function updateBtn() {
+  if (btn.textContent === 'Start machine') {
+    btn.textContent = 'Stop machine';
+    txt.textContent = 'The machine has started!';
+  } else {
+    btn.textContent = 'Start machine';
+    txt.textContent = 'The machine is stopped.';
+  }
+}
+ +

{{EmbedGHLiveSample("learning-area/javascript/introduction-to-js-1/maths/conditional.html", '100%', 100)}}

+ +

Open in new window

+ +

You can see the equality operator being used just inside the updateBtn() function. In this case, we are not testing if two mathematical expressions have the same value — we are testing whether the text content of a button contains a certain string — but it is still the same principle at work. If the button is currently saying "Start machine" when it is pressed, we change its label to  "Stop machine", and update the label as appropriate. If the button is currently saying "Stop machine" when it is pressed, we swap the display back again.

+ +
+

Note: Such a control that swaps between two states is generally referred to as a toggle. It toggles between one state and another — light on, light off, etc.

+
+ +

Test your skills!

+ +

You've reached the end of this article, but can you remember the most important information? You can find some further tests to verify that you've retained this information before you move on — see Test your skills: Math.

+ +

Summary

+ +

In this article we have covered the fundamental information you need to know about numbers in JavaScript, for now. You'll see numbers used again and again, all the way through your JavaScript learning, so it's a good idea to get this out of the way now. If you are one of those people that doesn't enjoy math, you can take comfort in the fact that this chapter was pretty short.

+ +

In the next article, we'll explore text and how JavaScript allows us to manipulate it.

+ +
+

Note: If you do enjoy math and want to read more about how it is implemented in JavaScript, you can find a lot more detail in MDN's main JavaScript section. Great places to start are our Numbers and dates and Expressions and operators articles.

+
+ +

{{PreviousMenuNext("Learn/JavaScript/First_steps/Variables", "Learn/JavaScript/First_steps/Strings", "Learn/JavaScript/First_steps")}}

+ +

In this module

+ + diff --git a/files/pl/learn/javascript/first_steps/variables/index.html b/files/pl/learn/javascript/first_steps/variables/index.html new file mode 100644 index 0000000000..d1b55aea20 --- /dev/null +++ b/files/pl/learn/javascript/first_steps/variables/index.html @@ -0,0 +1,453 @@ +--- +title: Przechowywanie potrzebnych informacji — Zmienne +slug: Learn/JavaScript/Pierwsze_kroki/Zmienne +translation_of: Learn/JavaScript/First_steps/Variables +--- +
{{LearnSidebar}}
+ +
{{PreviousMenuNext("Learn/JavaScript/First_steps/What_went_wrong", "Learn/JavaScript/First_steps/Math", "Learn/JavaScript/First_steps")}}
+ +

Po przeczytaniu kilku ostatnich artykułów, powinieneś juz wiedzieć czym jest JavaScript, co może dla Ciebie zrobić, jak używać go razem z innymi technologiami webowymi, oraz jak jego główne cechy wyglądają z wysokiego poziomu. W tym artykule, przejdziemy do fundamentów, poznamy jak wygląda pracowa z najbardziej podstawowym konceptem JavaScript - Zmiennymi. 

+ +
+ + + + + + + + + + + + +
Wymagania:Podstawowa znajomość komputera, podstawowe rozumienie HTML i CSS, oraz rozumienie czym jest JavaScript.
Cel:Zapoznać się z podstawami dotyczącymi zmiennych w JavaScript.
+ +

Potrzebne Narzędzia

+ +

Podczas tego artykułu, będziesz wpisywać linie kodu aby sprawdzić swoje rozumienie zawartości. Jeśli używasz przeglądarki desktopowej, najlepszym miejscem na wpisanie próbnego kodu jest konsola JavaScript Twojej przeglądarki (zobacz: What are browser developer tools aby zasięgnąć szczegółowych informacji, jak otworzyć to narzędzie).

+ +

Niemniej jednak, zapewniliśmy również prostą konsolę JavaScript wbudowaną w poniższą stronę, abyś mógł wpisywać kod w przypadku gdy nie używasz przeglądarki z łatwym dostępem do konsoli JavaScript lub konsola wewnątrz strony jest dla Ciebie wygodniejsza.

+ +

Czym jest zmienna?

+ +

Zmienna jest to kontener na wartość, jak liczba, którą możemy użyć w sumowaniu lub łańcuch znaków, który możemy wykorzystać jako część zdania. Ale jedną rzeczą, która wyróżnia zmienne jest to, że ich wartość może ulec zmianie. Popatrzmy na prosty przykład:

+ +
<button>Press me</button>
+ +
const button = document.querySelector('button');
+
+button.onclick = function() {
+  let name = prompt('What is your name?');
+  alert('Hello ' + name + ', nice to see you!');
+}
+ +

{{ EmbedLiveSample('What_is_a_variable', '100%', 50, "", "", "hide-codepen-jsfiddle") }}

+ +

W tym przykładzie, naciśnięcie przycisku uruchamia kilka linijek kodu. Pierwsza linia powoduje pojawienie się okna na ekranie, które pyta o imię, a następnie przechowuje wartość w zmiennej. Druga linia wyświetla wiadomość powitalną zawierajaca imię pobrane ze zmiennej.

+ +

Aby zrozumieć dlaczego jest to tak przydatne, pomyślmy o tym jak stworzylibyśmy ten przykład, nie używając zmiennej. W efekcie wygladałoby to mniej więcej tak:

+ +
var name = prompt('What is your name?');
+
+if (name === 'Adam') {
+  alert('Hello Adam, nice to see you!');
+} else if (name === 'Alan') {
+  alert('Hello Alan, nice to see you!');
+} else if (name === 'Bella') {
+  alert('Hello Bella, nice to see you!');
+} else if (name === 'Bianca') {
+  alert('Hello Bianca, nice to see you!');
+} else if (name === 'Chris') {
+  alert('Hello Chris, nice to see you!');
+}
+
+// ... i tak dalej ...
+ +

Możesz nie rozumieć w pełni składni której tu używamy (jeszcze!), ale powinieneś być w stanie zrozumieć o co chodzi - jeśli nie moglibyśmy używać zmiennych, musielibyśmy implementować gigantyczny blok kodu, który sprawdzałby jakie było wpisane imię, a następnie wyświetlał odpowiednią wiadomość dla tego imienia. Oczywiście jest to całkowicie nieefektywne (kod jest znacznie większy, nawet dla tylko pięciu możliwych wyborów) i po prostu nie działałoby - nie mógłbyś przecież przechowywać wszystkich możliwych wyborów.

+ +

Zmienne po prostu mają sens i jak tylko nauczysz się więcej o JavaScript, używanie ich stanie się dla Ciebie czyms naturalnym.

+ +

Kolejna rzecz, która wyróżnia zmienne jest to, że mogą one zawierać prawie wszystko - nie tylko łańcuchy znaków i liczby. Zmienne moga również zawierać skomplikowane dane, a nawet całe funkcje do robienia niesamowitych rzeczy. Nauczysz sie o tym więcej, w ciągu kursu.  

+ +
+

Uwaga: Mówimy że zmienne zawieraja wartości. Jest to ważne rozróżnienie. Zmienne nie są wartościami same w sobie; są kontenerami na wartości. Możesz je sobie wyobrazić jako kartonowe pudełka, w których możesz przechowywać rzeczy.

+
+ +

+ +

Deklarowanie zmiennej

+ +

W celu użycia zmiennej, na początku musisz ją stworzyć - a dokładniej nazywa się to deklarowaniem zmiennej. Aby to zrobić, wpisujemy słowo kluczowe  var albo let a następnie nazwę, którą chcesz żeby miała Twoja zmienna:

+ +
let myName;
+let myAge;
+ +

Tutaj tworzymy dwie zmienne, które nazywają się myName i myAge. Spróbuj wpisać teraz te linie w konsoli Twojej przeglądarki lub w poniższej konsoli (możesz otworzyć otworzyć tą konsolę w oddzielnej karcie lub oknie jeśli wolisz). Nastepnie spróbuj stworzyć zmienną (lub dwie) z wybranymi przez Ciebie nazwami.

+ + + +

{{ EmbedLiveSample('Hidden_code', '100%', 300, "", "", "hide-codepen-jsfiddle") }}

+ +
+

Uwaga: W JavaScript, wszystkie instrukcje kodu powinny być zakończone średnikiem (;) — Twój kod może działać poprawnie dla pojedynczych linii, ale prawdopodobnie nie będzie, jeśli napiszesz wiele linii kodu razem. Spróbuj wejść w nawyk wpisywania go.

+
+ +

Możesz przetestować czy te wartości istnieją teraz w środowisku wykonawczym wpisując po prostu nazwę zmiennej, np.

+ +
myName;
+myAge;
+ +

Obecnie nie mają one wartości; są pustymi kontenerami. Kiedy wpisujesz nazwy zmiennych, powinieneś otrzymać zwróconą wartość undefined. Natomiast jesli one nie istnieją, dostaniesz informację o błedzie — spróbuj wpisać:

+ +
scoobyDoo;
+ +
+

Uwaga: Nie pomyl zmiennej, która istnieje, ale nie ma zdefiniowanej wartości, ze zmienną, która wcale nie istnieje — to dwie zupełnie inne rzeczy. Wracając do porównania z pudełkami, które widziałeś wyżej — jeśli zmienna nie istnieje, to znaczy, że nie mamy żadnego kartonowego pudełka, do którego moglibyśmy wrzucić zawartość.
+ Natomiast zmienna bez zdefiniowanej zawartości to po prostu puste pudełko. 

+
+ +

Inicjalizacja zmiennej

+ +

Kiedy już zadeklarujesz zmienną, możesz ją zainicjować nadając wartość. Robi się to, wpisując nazwę zmiennej, a następnie znak równości (=), poprzedzajacy wartość, którą chcesz jej nadać. Na przykład:

+ +
myName = 'Chris';
+myAge = 37;
+ +

Spróbuj teraz wrócić do konsoli i wpisać te linie. Powinieneś zobaczyć wartość, którą przypisałeś do zmiennej zwróconą w konsoli aby potwierdzić to w obu przypadkach. Znowu, możesz zwrócić wartości zmiennych po prostu wpisujac ich nazwy w konsoli — spróbuj ponownie:

+ +
myName;
+myAge;
+ +

Możesz zadeklarować i zainicjować zmienną w tym samym czasie, tak jak tu:

+ +
let myDog = 'Rover';
+ +

Tak prawdopodobnie będziesz robił najcześciej, jako że jest to szybsze niż wykonywanie dwóch czynności w dwóch oddzielnych linijkach.

+ +

Róznice między var i let

+ +

Możesz się teraz zastanawiać "Po co nam dwa słowa kluczowe do deklarowania zmiennych? Po co nam var i let?".

+ +

Powód jest historyczny. Kiedy JavaScript został stworzony, mogliśmy korzystać tylko z var. Takie deklarowanie zmiennych działa, ale niesie ze sobą kilka niechcianych błędów.  Stworzono więc let, który jest obecnym standardem w języku JavaScript (to właśnie z niego powinniśmy korzystać). Główna róznica polega na tym, że let naprawia błędy, które mogliśmy napotkać podczas korzystania z var.

+ +

A couple of simple differences are explained below. We won't go into all the differences now, but you'll start to discover them as you learn more about JavaScript (if you really want to read about them now, feel free to check out our let reference page).

+ +

For a start, if you write a multiline JavaScript program that declares and initializes a variable, you can actually declare a variable with var after you initialize it and it will still work. For example:

+ +
myName = 'Chris';
+
+function logName() {
+  console.log(myName);
+}
+
+logName();
+
+var myName;
+ +
+

Note: This won't work when typing individual lines into a JavaScript console, just when running multiple lines of JavaScript in a web document.

+
+ +

This works because of hoisting — read var hoisting for more detail on the subject.

+ +

Hoisting no longer works with let. If we changed var to let in the above example, it would fail with an error. This is a good thing — declaring a variable after you initialize it makes for confusing, harder to understand code.

+ +

Secondly, when you use var, you can declare the same variable as many times as you like, but with let you can't. The following would work:

+ +
var myName = 'Chris';
+var myName = 'Bob';
+ +

But the following would throw an error on the second line:

+ +
let myName = 'Chris';
+let myName = 'Bob';
+ +

You'd have to do this instead:

+ +
let myName = 'Chris';
+myName = 'Bob';
+ +

Again, this is a sensible language decision. There is no reason to redeclare variables — it just makes things more confusing.

+ +

For these reasons and more, we recommend that you use let as much as possible in your code, rather than var. There is no reason to use var, unless you need to support old versions of Internet Explorer with your code (it doesn't support let until version 11; the modern Windows Edge browser supports let just fine).

+ +
+

Note: We are currently in the process of updating the course to use let rather than var. Bear with us!

+
+ +

Updating a variable

+ +

Once a variable has been initialized with a value, you can change (or update) that value by simply giving it a different value. Try entering the following lines into your console:

+ +
myName = 'Bob';
+myAge = 40;
+ +

An aside on variable naming rules

+ +

You can call a variable pretty much anything you like, but there are limitations. Generally, you should stick to just using Latin characters (0-9, a-z, A-Z) and the underscore character.

+ + + +
+

Note: You can find a fairly complete list of reserved keywords to avoid at Lexical grammar — keywords.

+
+ +

Good name examples:

+ +
age
+myAge
+init
+initialColor
+finalOutputValue
+audio1
+audio2
+ +

Bad name examples:

+ +
1
+a
+_12
+myage
+MYAGE
+var
+Document
+skjfndskjfnbdskjfb
+thisisareallylongstupidvariablenameman
+ +

Error-prone name examples:

+ +
var
+Document
+
+ +

Try creating a few more variables now, with the above guidance in mind.

+ +

Variable types

+ +

There are a few different types of data we can store in variables. In this section we'll describe these in brief, then in future articles, you'll learn about them in more detail.

+ +

So far we've looked at the first two, but there are others.

+ +

Numbers

+ +

You can store numbers in variables, either whole numbers like 30 (also called integers) or decimal numbers like 2.456 (also called floats or floating point numbers). You don't need to declare variable types in JavaScript, unlike some other programming languages. When you give a variable a number value, you don't include quotes:

+ +
let myAge = 17;
+ +

Strings

+ +

Strings are pieces of text. When you give a variable a string value, you need to wrap it in single or double quote marks, otherwise, JavaScript will try to interpret it as another variable name.

+ +
let dolphinGoodbye = 'So long and thanks for all the fish';
+ +

Booleans

+ +

Booleans are true/false values — they can have two values, true or false. These are generally used to test a condition, after which code is run as appropriate. So for example, a simple case would be:

+ +
let iAmAlive = true;
+ +

Whereas in reality it would be used more like this:

+ +
let test = 6 < 3;
+ +

This is using the "less than" operator (<) to test whether 6 is less than 3. As you might expect, it will return false, because 6 is not less than 3! You will learn a lot more about such operators later on in the course.

+ +

Arrays

+ +

An array is a single object that contains multiple values enclosed in square brackets and separated by commas. Try entering the following lines into your console:

+ +
let myNameArray = ['Chris', 'Bob', 'Jim'];
+let myNumberArray = [10, 15, 40];
+ +

Once these arrays are defined, you can access each value by their location within the array. Try these lines:

+ +
myNameArray[0]; // should return 'Chris'
+myNumberArray[2]; // should return 40
+ +

The square brackets specify an index value corresponding to the position of the value you want returned. You might have noticed that arrays in JavaScript are zero-indexed: the first element is at index 0.

+ +

You'll learn a lot more about arrays in a future article.

+ +

Objects

+ +

In programming, an object is a structure of code that models a real-life object. You can have a simple object that represents a box and contains information about its width, length, and height, or you could have an object that represents a person, and contains data about their name, height, weight, what language they speak, how to say hello to them, and more.

+ +

Try entering the following line into your console:

+ +
let dog = { name : 'Spot', breed : 'Dalmatian' };
+ +

To retrieve the information stored in the object, you can use the following syntax:

+ +
dog.name
+ +

We won't be looking at objects any more for now — you can learn more about those in a future module.

+ +

Dynamic typing

+ +

JavaScript is a "dynamically typed language", which means that, unlike some other languages, you don't need to specify what data type a variable will contain (numbers, strings, arrays, etc).

+ +

For example, if you declare a variable and give it a value enclosed in quotes, the browser will treat the variable as a string:

+ +
let myString = 'Hello';
+ +

It will still be a string, even if it contains numbers, so be careful:

+ +
let myNumber = '500'; // oops, this is still a string
+typeof myNumber;
+myNumber = 500; // much better — now this is a number
+typeof myNumber;
+ +

Try entering the four lines above into your console one by one, and see what the results are. You'll notice that we are using a special operator called typeof — this returns the data type of the variable you pass into it. The first time it is called, it should return string, as at that point the myNumber variable contains a string, '500'. Have a look and see what it returns the second time you call it.

+ +

Constants in JavaScript

+ +

Many programming languages have the concept of a constant — a value that once declared can never be changed. There are many reasons why you'd want to do this, from security (if a third party script changed such values it could cause problems) to debugging and code comprehension (it is harder to accidently change values that shouldn't be changed and mess things up).

+ +

In the early days of JavaScript, constants didn't exist. In modern JavaScript, we have the keyword const, which lets us store values that can never be changed:

+ +
const daysInWeek = 7;
+const hoursInDay = 24;
+ +

const works in exactly the same way as let, except that you can't give a const a new value. In the following example, the second line would throw an error:

+ +
const daysInWeek = 7;
+daysInWeek = 8;
+ +

Summary

+ +

By now you should know a reasonable amount about JavaScript variables and how to create them. In the next article, we'll focus on numbers in more detail, looking at how to do basic math in JavaScript.

+ +

{{PreviousMenuNext("Learn/JavaScript/First_steps/What_went_wrong", "Learn/JavaScript/First_steps/Maths", "Learn/JavaScript/First_steps")}}

+ +

In this module

+ + diff --git a/files/pl/learn/javascript/first_steps/what_is_javascript/index.html b/files/pl/learn/javascript/first_steps/what_is_javascript/index.html new file mode 100644 index 0000000000..3898eb049c --- /dev/null +++ b/files/pl/learn/javascript/first_steps/what_is_javascript/index.html @@ -0,0 +1,342 @@ +--- +title: Co to jest JavaScript? +slug: Learn/JavaScript/Pierwsze_kroki/What_is_JavaScript +translation_of: Learn/JavaScript/First_steps/What_is_JavaScript +--- +
{{LearnSidebar}}
+ +
{{NextMenu("Learn/JavaScript/First_steps/A_first_splash", "Learn/JavaScript/First_steps")}}
+ +

Witamy w MDN na kursie JavaScript dla początkujących! W tym pierwszym artykule przyjrzymy się JavaScript z pewnej odległości, odpowiadając na pytania w stylu "co to jest?" i "co on robi?" oraz upewnimy się, że rozumiesz cel, któremu służy JavaScript.

+ + + + + + + + + + + + +
Wymagania wstępne:Podstawowa znajomość komputera, podstawowa znajomość HTML i CSS.
Cel:Zapoznanie z istotą JavaScript, co on robi i jak jest dopasowywany do strony internetowej.
+ +

Definicja ogólna

+ +

JavaScript to język programowania, który umożliwia wdrożenie na stronie internetowej skomplikowanych elementów, dzięki którym strona ta może nie tylko wyświetlać statyczne informacje, ale również obsługiwać zmianę treść odpowiednio do sytuacji, wyświetlać interaktywne mapy i animacje grafiki 2D/3D , wyświetlać video itd. Jest to trzecia warstwa standardowych technologii internetowych, z których dwie (HTML i CSS) omówiliśmy w innych częściach "Strefy nauki".

+ +

+ + + +

Te trzy warstwy układają się jedna na drugiej. Jako przykład weźmy prostą etykietę tekstową. Możemy ją oznaczyć używajac kodu HTML, aby nadać jej strukturę:

+ +
<p>Player 1: Chris</p>
+ +

+ +

Następnie możemy dodać kod CSS, aby nadać ładny wygląd:

+ +
p {
+  font-family: 'helvetica neue', helvetica, sans-serif;
+  letter-spacing: 1px;
+  text-transform: uppercase;
+  text-align: center;
+  border: 2px solid rgba(0,0,200,0.6);
+  background: rgba(0,0,200,0.3);
+  color: rgba(0,0,200,0.6);
+  box-shadow: 1px 1px 2px rgba(0,0,200,0.4);
+  border-radius: 10px;
+  padding: 3px 10px;
+  display: inline-block;
+  cursor:pointer;
+}
+ +

+ +

Na końcu możemy dodać kod Javascript, aby zaimplementować dynamiczne zachowanie:

+ +
var para = document.querySelector('p');
+
+para.addEventListener('click', updateName);
+
+function updateName() {
+  var name = prompt('Enter a new name');
+  para.textContent = 'Player 1: ' + name;
+}
+
+ +

{{ EmbedLiveSample('A_high-level_definition', '100%', 80) }}

+ +

Kliknij na przycisk (etykietę tekstową), aby zobaczyć co się dzieje (na GitHub mozesz znależć kod źróðłowy i wersję demo — zobacz kod źródłowy lub przykład na żywo)!

+ +

JavaScript pozwala osiągać o wiele bardziej zaawansowane efekty - sprawdź poniżej jego możliwości.

+ +

Co można zrobić?

+ +

Rdzeń języka JavaScript składa się z kilku funkcjonalności, które umożliwiają wykonanie rzeczy, takich jak te: 

+ + + +

Jeszcze bardziej ekscytująca jest możliwość stosowania tzw. interfejsów programowania aplikacji (ang. Application Programming Interfaces - API), działających na szczycie rdzenia języka JavaScript.

+ +

Interfejsy API są gotowymi zestawami bloków kodu, które umożliwiają programistom implementować programy, które w przeciwnym razie byłyby bardzo trudne do napisania przez programistę a nawet często niemożliwe do napisania przez niego. Spełniają one w programowaniu tą samą rolę, co gotowe segmenty mebli przy umeblowaniu domu — o wiele łatwiej jest wykorzystać gotowe panele i je poskręcać, niż samemu opracować projekt mebli, znaleźć drewno, pociąć go na deski, wysuszyć, przyciąć je na elementy swoich mebli i w końcu je samemu zmontować.

+ +

Interfejsy API dzielą się ogólnie na dwie kategorie:

+ +

+ +

Interfesy API przeglądarek internetowych, które są wbudowane w przeglądarki. Służą do udostępniania danych z komputera, ale też mogą wykonywać bardziej zaawansowane rzeczy. Na przykład:

+ + + +
+

Uwaga: wiele z powyższych przykładów nie będzie działać w starszych przeglądarkach - podczas eksperymentowania warto używać najnowszych wersji przeglądarek takich jak Firefox, Chrome, Edge czy Opera. Powinieneś także brać pod uwagę konieczność testowania swoich rozwiązań w wielu przegladarkach. Kod, który działa dobrze w Chrome nie zawsze będzie działał w Edge. (sprawdź: Testowanie wieloprzegladarkowe).

+
+ +

Zewnętrzne interfejsy API nie są wbudowane w przeglądarki i trzeba samemu pobrać ich kod i informacje o zastosowaniu. Na przykład:

+ + + +
+

Uwaga:  Interfesy API są zaawansowane i nie będziemy ich tu opisywać, możesz znaleźć o nich więcej informacji w module Interfejsy API działające po stronie klienta.

+
+ +

W Internecie dostępnych jest bardzo dużo bibliotek API działających z przegladarkami internetowymi, ale jest to "temat na później". Nie zbudujesz następnego Facebooka czy Google Maps po 24 godzinach nauki JavaScriptu. Jest wiele zagadnień podstawowych, które musisz najpierw opanować. Ale przecież po to tu jesteś!

+ +

Co robi JavaScript na stronie internetowej?

+ +

Tutaj zaczniemy faktycznie przyglądać się pewnemu kodowi i robiąc to, zbadamy, co takiego dzieje się po uruchomieniu tego kodu na stronie internetowej.

+ +

Przypomnijmy sobie, co dzieje się podczas ładowania strony internetowej w przeglądarce (pierwsz raz omówiliśmy to w artykule Jak działa CSS). Po załadowaniu strony internetowej (dokumentu HTML) do przeglądarki, zostaje uruchomioney jej kod (HTML, CSS i JavaScript) w środowisku wykonawczym tworzonym przez przeglądarkę (zakładka przegladarki). Jest to podobne do fabryki, która przyjmuje surowe materiały (kod) a wypuszcza gotowy produkt (stronę internetową).

+ +

+ +

JavaScript jest wykonywany przez silnik JavaScriptu w przeglądarce, po tym jak HTML i CSS zostaną skompletowane w stronę internetową. To zapewnia to, że struktura i style strony są już na miejscu w momencie gdy JavaScript zaczyna pracę.

+ +

Jest to przydatne, jako że popularnym zastosowaniem JavaScriptu jest dynamiczne modyfikowanie HTMLa i CSSa aby edytować interfejs poprzez Document Object Model API. Jeżeli JavaScript załadowałby się i próbował wykonywać się przed tym jak HTML i CSS zostały załadowane, wtedy wystąpiłyby błędy.

+ +

Bezpieczeństwo przeglądarki

+ +

Każda karta przeglądarki jest swoim własnym kontenerem dla kodu, który w niej się wykonuje (te kontenery są nazywane technicznie "środowiskami wykonywania" (ang. "execution environments") - oznacza to, ze w większości przypadków kod w każdej karcie jest wykonywany oddzielnie i kod z jednej z kart nie jest w stanie bezpośrednio wpłynąć na ten wykonujący się w innej karcie. Jest to przykład dobrego środka bezpieczeństwa - jeżeli by tak nie było, wtedy możliwe stałoby się pisanie kodu, który wykradałby dane z innych witryn oraz  byłby w stanie wykonywać inne, podobnie złe rzeczy.

+ +
+

Notatka:  Istnieją sposoby na bezpieczne wysyłanie kodu i danych pomiędzy różnymi stronami/kartami. Wykraczają one jednak poziomem poza ten kurs i nie zostaną one tu omówione.

+
+ +

Kolejność wykonywania kodu JavaScript

+ +

Kiedy przeglądarka napotyka blok kodu JS, wykonuje go po kolei, od góry do dołu. Oznacza to, że musisz być ostrożny, w jakiej kolejności umieszczasz instrukcje. Aby ukazać to zjawisko, wróćmy do bloku kodu z pierwszego przykładu:

+ +
var para = document.querySelector('p');
+
+para.addEventListener('click', updateName);
+
+function updateName() {
+  var name = prompt('Enter a new name');
+  para.textContent = 'Player 1: ' + name;
+}
+ +

Na początku wybieramy pierwszy paragraf (linia 1), dołączamy do niego event listener (linia 3), aby kiedy zostanie on klinięty, blok  updateName() (linie 5- 8) został uruchomiony. Blok  updateName() (ten typ kodu możliwego do użycia ponownie jest nazywany funkcją) pyta użytkownika o nowe imię, po czym wstawia to podane imię do paragrafu, aby uaktualnić widok.

+ +

Jeżeli zamieniłbyś kolejność dwóch pierwszych linii kodu, przestałoby to działać - zamiast tego pojawiłby się błąd w konsoli przeglądarki - TypeError: para is undefined. Oznacza on, że ten obiekt jeszcze nie istnieje, a więc nie możemy dodać do niego event listenera.

+ +
+

Notatka: Jest to bardzo popularny błąd - musisz uważać na to, że obiekty do których istnieją odwołania istnieją przed tym jak cokolwiek z nimi zrobisz.

+
+ +

Kod interpretowany kontra kompilowany

+ +

Mogłeś usłyszeć pojęcie kodu interpretowanego i kompilowanego. JavaScript jest językiem interpretowanym - kod jest wykonywany od góry do dołu i wynik jest zwracany natychmiastowo. Nie musisz transformować kodu w jakąś inną postać przed tym jak przeglądarka go wykona.

+ +

Języki kompilowane są natomiast transformowane (kompilowane) do innej formy przed ich wykonaniem. Dla przykładu C/C++ jest kompilowane do kodu assemblera, który jest następnie wykonywany przez komputer.

+ +

Oba te podejścia mają swoje wady i zalety, które nie zostaną tutaj omówione.

+ +

Kod server-side kontra client-side

+ +

Mogłeś także słyszeć pojęcia server-side i client-side, szczególnie w odniesieniu do tworzenia stron internetowych. Kod client-side jest kodem, który jest wykonywany na komputerze użytkownika - kiedy strona jest wyświetlana, kod client-side jest pobierany, następnie uruchamiany i wyświetlany przez przeglądarkę. W tym module JavaScript mówimy jednoznacznie o client-side JavaScript.

+ +

Kod server-side jest natomiast wykonywany na serwerze, po czym wynik wykonania jest pobierany i wyświetlany przez przeglądarkę. Popularnymi przykładami języków server-side są PHP, Python, Ruby czy ASP.NET. I JavaScript! JavaScript może być także użyty jako język server-side, na przykład w popularnym środowisku Node.js - możesz więcej dowiedzieć się o tym w naszym poradniku Dynamic Websites – Server-side programming

+ +

Słowo dynamiczny jest użyte zarówno do opisania zarówno client-side JavaScript i języki server-side — odnosi się ono do możliwości uaktualnienia widoku strony/aplikacji, aby możliwe było pokazanie różnych rzeczy w różnych okolicznościach; generując nową zawartość w zależności od potrzeb. Kod server-side  dynamicznie generuje nową zawartość na serwerze, na przykład stworzenie nowej tabeli HTML, kiedy client-side JavaScript dynamicznie generuje nową zawartość, na przykład tworząc nową tabelę HTML, wstawiając dane pobrane z serwera, następnie pokazując użytkownikowi tabelę na stronie. Znaczenie słowa jest lekko inne, ale podobne,  w dwóch kontekstach użycia i te dwa podejścia (server-side i client-side) zwykle współpracują ramię w ramię.

+ +

Strona bez dynamicznie uaktualnianej zawartości nazywa się statyczną - zawsze pokazuje to samo.

+ +

W jaki sposób dodać JavaScript do twojej strony?

+ +

JavaScript jest dołączany do strony HTML w podobny sposób jak odbywa się to w wypadku CSS. Podczas gdy CSS używa elementów {{htmlelement("link")}} do dołączania zewnętrznych arkuszów i {{htmlelement("style")}} do dołączenia stylów bezpośrednio w dokumencie, JS potrzebuje tylko jednej rzeczy - elementu {{htmlelement("script")}}. Dowiedzmy się, jak to działa.

+ +

Osadzony JavaScript

+ +
    +
  1. Po pierwsze stwórz lokalną kopię naszego przykładowego pliku apply-javascript.html. Zapisz go gdzieś w katalogu.
  2. +
  3. Otwórz plik w twojej przeglądarce i edytorze tekstu. Ujrzysz prostą stronę z przyciskiem, który można kliknąć.
  4. +
  5. Następnie wejdź do edytora i dodaj następujący kod tuż przed końcem </body>: +
    <script>
    +
    +  // Kod JavaScript będzie tu umieszczony.
    +
    +</script>
    +
  6. +
  7. Teraz dodamy trochę kodu w naszym elemencie  {{htmlelement("script")}}, aby strona wykonała coś bardziej interesującego  — dodaj poniższy kod bezpośrednio pod linią "// Kod JavaScript będzie tu umieszczony.": +
    function stworzParagraf() {
    +  var para = document.createElement('p');
    +  para.textContent = 'Kliknąłeś przycisk!';
    +  document.body.appendChild(para);
    +}
    +
    +var przyciski = document.querySelectorAll('button');
    +
    +for (var i = 0; i < przyciski.length ; i++) {
    +  przyciski[i].addEventListener('click', stworzParagraf);
    +}
    +
  8. +
  9. Zapisz plik i odśwież stronę w przeglądarce - teraz gdy klikniesz przycisk, nowy paragraf jest generowany i umieszczany poniżej.
  10. +
+ +
+

Notatka: Jeżeli przykład nie działa, przejdź go znowu krok po kroku, sprawdzając czy zrobiłeś wszystko poprawnie. Czy zapisałeś swoją lokalną wersję początkowego kodu jako plik .html? Czy dodałeś element  {{htmlelement("script")}} tuż przed zamknięciem  </body>? Czy wprowadziłeś kod JavaScript dokładnie tak, jak podane w przykłądzie?

+ +

JavaScript uwzględnia wielkość liter i jest bardzo drobiazgowy, a więc musisz wprowadzić kod dokładnie tak,  jak zostało to pokazane. W innym wypadku może to nie zadziałać.

+
+ +
+

NotatkaMożesz zobaczyć ten kod także na GitHubie jako apply-javascript-internal.html (zobacz to także na żywo).

+
+ +

Zewnętrzny JavaScript

+ +

Działa to świetnie, ale co by było, gdybyśmy chcieli umieścić nasz kod JavaScript w oddzielnym pliku? Zróbmy to teraz.

+ +
    +
  1. Po pierwsze, stwórz nowy plik w tym samym katalogu, w którym umieściłeś twój plik HTML. Nazwij go script.js  - upewnij się, że ma on rozszerzenie .js, jako że w ten sposób jest rozpoznawany jako JavaScript.
  2. +
  3. Następnie przekopiuj wszystkie skrypty z obecnego {{htmlelement("script")}} i wklej je do pliku .js. Zapisz ten plik. 
  4. +
  5. Teraz zastąp obecny element {{htmlelement("script")}} poniższym kodem: +
    
    +<script src="script.js"></script>
    +
  6. +
  7. Zapisz i odśwież przeglądarkę - powinieneś zobaczyć to samo! Działa to w ten sam sposób, ale teraz mamy kod JavaScript w oddzielnym pliku. Jest to dobra praktyka organizowania kodu i umożliwiania jego ponownego wykorzystania między wieloma plikami HTML. Do tego HTML jest łatwiejszy do czytania bez bloków kodu pomiędzy.
  8. +
+ +

Notatka: Możesz zobaczyć ten kod na GitHubie -  apply-javascript-external.html i script.js (Możesz zobaczyć to także na żywo tu).

+ +

Interpretowanie kodu JavaScript inline

+ +

Czasami napotkasz kawałki prawdziwego kodu JavaScript pomiędzy kodem HTML. Może to wyglądać następująco:

+ +

+function stworzParagraf() {
+  var para = document.createElement('p');
+  para.textContent = 'Kliknąłeś przycisk!';
+  document.body.appendChild(para);
+}
+ +

+<button onclick="createParagraph()">Kliknij mnie!</button>
+ +

Możesz przetestować tę wersję poniżej:

+ +

{{ EmbedLiveSample('Inline_JavaScript_handlers', '100%', 150) }}

+ +

Ten przykład ma dokładnie tę samą funkcjonalność jak dwa poprzednie przykłady, za wyjątkiem tego, że element {{htmlelement("button")}} zawiera w sobie handler onclick . Sprawia to, że funkcja zostanie uruchomiona gdy zostanie wcisnięty przycisk.

+ +

Jednakże nie rób tego! Zanieczyszczanie HTMLa poprzez JavaScript jest uważane za złą praktykę. Jest to również nieefektywne - musiałbyś załączać atrybut onclick="stworzParagraf()"  do każdego przycisku, dla którego miałaby zastosowanie funkcja.

+ +

Używanie czystych konstrukcji JavaScript pozwala na wybranie wszystkich przycisków za pomocą jednej instrukcji. Kod, którego użyliśmy do wykonania tego wygląda następująco:

+ +
var buttons = document.querySelectorAll('button');
+
+for (var i = 0; i < buttons.length ; i++) {
+  buttons[i].addEventListener('click', createParagraph);
+}
+ +

Może to wyglądać na lekko dłuższe niż atrybut  onclick, ale zadziała to dla wszyskich przycisków, bez znaczenia ile ich jest na stronie i ile z nich zostanie dodane bądź usunięte. Kod JS nie musi być zmieniony.

+ +
+

Notatka:  Spróbuj edytować twoją wersję apply-javascript.html i dodaj kilka innych przycisków. Kiedy przeładujesz stronę, odkryjesz, że wszystkie przyciski tworzą paragraf po kliknięciu. Nieźle, co?

+
+ +

Komentarze

+ +

Tak samo jak w HTML i CSS, możliwe jest pisanie komentarzy w kodzie JavaScript. Zostaną one zignorowane przez przeglądarkę - istnieją tylko po to, aby służyć pomocą tym, którzy współpracują przy tym kodzie (i tobie, kiedy po 6 miesiącach wrócić do kodu i nie będziesz pamiętać, co on robi). Komentarze są bardzo użyteczne i powinieneś używać ich często, szczególnie w dużych aplikacjach. Istniają dwa typy komentarzy:

+ + + +

Przykładowo możemy skomentować nasz ostatni kod JavaScript w ten sposób:

+ +

+// Funkcja: tworzy nowy paragraf i dodaje na koniec <body>.
+
+function stworzParagraf() {
+  var para = document.createElement('p');
+  para.textContent = 'Kliknąłeś przycisk!';
+  document.body.appendChild(para);
+}
+
+/*
+  1. Pobierz listę wskaźników na wszystke przyciski na stronie.
+  2. Przejdź po wszystkich przycisków i dodaj każdemu z nich akcję pod klinięcie.
+
+  Kiedy przycisk jest wciśnięty, funkcja stworzParagraf() zostanie wywołana.
+*/
+
+var przyciski = document.querySelectorAll('button');
+
+for (var i = 0; i < buttons.length ; i++) {
+  przyciski[i].addEventListener('click', stworzParagraf);
+}
+ +

Podsumowanie

+ +

A więc proszę bardzo, oto twój pierwszy krok w kierunku świata JavaScript. Zaczęliśmy właśnie teorię, aby przyzwyczaić cię do używania JavaScript i do tego, co z jego pomocą można zrobić. W czasie trwania kursu między innymi zobaczyłeś kilka przykładów i nauczyłeś się, jak JavaScript jest używany z resztą kodu na twojej stronie.

+ +

JavaScript może wyglądać obecnie lekko odstraszająco, ale nie martw się - w tym kursie wprowadzimy cię w jego świat krok po kroku. W kolejnym artykule zanurzysz się w praktycznej częsci, poprzez budowanie twoich własnych przykładów kodu w JavaScript.

+ + + +

{{NextMenu("Learn/JavaScript/First_steps/A_first_splash", "Learn/JavaScript/First_steps")}}

+ +

W tym module

+ + diff --git a/files/pl/learn/javascript/first_steps/what_went_wrong/index.html b/files/pl/learn/javascript/first_steps/what_went_wrong/index.html new file mode 100644 index 0000000000..1a88f2b797 --- /dev/null +++ b/files/pl/learn/javascript/first_steps/what_went_wrong/index.html @@ -0,0 +1,257 @@ +--- +title: Co poszło nie tak? Rozwiązywanie problemów w JavaScript +slug: Learn/JavaScript/Pierwsze_kroki/Co_poszlo_nie_tak +translation_of: Learn/JavaScript/First_steps/What_went_wrong +--- +
{{LearnSidebar}}
+ +
{{PreviousMenuNext("Learn/JavaScript/First_steps/A_first_splash", "Learn/JavaScript/First_steps/Variables", "Learn/JavaScript/First_steps")}}
+ +

Kiedy w poprzednim artykule budowałeś grę "Zgadnij numer", mogłeś stwierdzić, że ona po prostu nie działała. Nie martw się - ten artykuł ma na celu zatrzymanie cię przed wyrywaniem sobie włosów nad takimi problemami poprzez dostarczenie ci narzędzi do znajdowania i naprawienia błędów w programach napisanych w JavaScript.

+ + + + + + + + + + + + +
Wymagania wstępne:Podstawowa znajomość obsługi komputera, podstawowe rozumenie HTML i CSS oraz wiedza, czym jest JavaScript.
Cel:Zdobycie umiejętności i odwagi do rozwiązywania prostych problemów w twoim własnym kodzie.
+ +

Typy błędów

+ +

Każdy błąd w kodzie można w ogólności podzielić na dwa typy:

+ + + +

No dobra, nie jest to tak proste - istnieją także inne czynniki, które różnicują błędy. Powyższa klasyfikacja wystarczy jednak w tym początkowym etapie twojej kariery. W kolejnej częsci przyjrzymy się tym dwóm typom błędów.

+ +

Błędogenny przykład

+ +

Zaczniemy od naszej poprzedniej gry "Zgadnij numer" - tylko że tym razem będziemy zajmować się wersją w której umyślnie ukryto trochę błędów. Odwiedź GitHub i wykonaj lokalną wersję  number-game-errors.html (Zobacz live demo tutaj).

+ +
    +
  1. Aby zacząć, otwój lokalną wersję w swoim ulubionym edytorze tekstu i w twojej przeglądarce.
  2. +
  3. Spróbuj zagrać w tę - odkryjesz że kiedy wciskasz przycisk "Zgadnij" - on po prostu nie działa!
  4. +
+ +
+

Notatka: Równie dobrze możesz mieć swoją wersję gry, która ci nie działa. Wiemy, że może chciałbyś ją naprawić, ale chcemy, abyś wykorzystał naszą wersję, dzięki czemu nauczysz się technik, których tu uczymy. Następnie możesz  wykorzystać je do naprawienia własnego kodu.

+
+ +

W tym miejscu spójrzmy na narzędzia developerskie, dokładniej konsolę debugowania, aby sprawdzić, czy występują błędy składniowe, a jeżeli tak - naprawić je. Poniżej znajdują się instrukcje, jak tego dokonać.

+ +

Naprawa błędów składniowych

+ +

Wcześniej pokazaliśmy kilka prostych komend JavaScript, które wpisałeś do konsoli JavaScript w narzędziach deweloperskich (jeżeli nie pamiętasz jak je otworzyć, kliknij w link, aby sobie przypomnieć). Jej bardzo przydatną funkcją jest wyświetlanie błędów w momencie gdy interpreter JavaScript przeglądarki napotka na błąd. Wyruszmy na poszukiwanie błędów!

+ +
    +
  1. Idź do karty z otwartą stroną number-game-errors.html i otwórz konsolę JavaScript. Znajdziesz tam błąd:
  2. +
  3. Jest to prosty błąd do wytropienia, a przeglądarka daje wiele przydatnych  wskazówek: (powyższy screen jest z Firefoxa, ale inne przeglądarki pokazują podobne informacje). Od lewej do prawej znajdują się: +
      +
    • Czerwony "x" dla pokazania, że jest to błąd.
    • +
    • Wiadomość błędu dla pokazania, co poszło nie tak: "TypeError: guessSubmit.addeventListener is not a function"
    • +
    • Link do "Learn More", który przekierowuje do strony na MDN, która wyjaśnia szczegółowo dany błąd.
    • +
    • Nazwa pliku JavaScript, która po kliknięciu kieruje do karty debuggera. Jeżeli klikniesz go, pokaże ci się dokładna linia z danym błędem.
    • +
    • Numer linii oraz znak, gdzie wystąpił błąd. W tym przypadku linia 86, znak 3.
    • +
    +
  4. +
  5. Spoglądając na linię 86, zobaczymy następujący kod: +
    guessSubmit.addeventListener('click', checkGuess);
    +
  6. +
  7. The error message says "guessSubmit.addeventListener is not a function", so we've probably spelled something wrong. If you are not sure of the correct spelling of a piece of syntax, it is often good to look up the feature on MDN. The best way to do this currently is to search for "mdn name-of-feature" on your favourite search engine. Here's a shortcut to save you some time in this instance: addEventListener().
  8. +
  9. So, looking at this page, the error appears to be that we've spelled the function name wrong! Remember that JavaScript is case sensitive, so any slight different in spelling or casing will cause an error. Changing addeventListener to addEventListener should fix this. Do this now.
  10. +
+ +
+

Note: See our TypeError: "x" is not a function reference page for more details about this error.

+
+ +

Błędy składniowe - podejście drugie

+ +
    +
  1. Zapisz stronę i odśwież - zobaczysz, że błąd zniknął.
  2. +
  3. Spróbuj teraz wpisać liczbę. Po kliknięciu na przycisk "Wyślij" zobaczysz... inny błąd!
  4. +
  5. Tym razem błąd to "TypeError: lowOrHi is null", on line 78. +
    Notatka: Null jest specjalną wartością, która oznacza "nic" bądź "brak wartości" A więc lowOrHi został zadeklarowany i zainicjalizowany - ale wartością pustą.
    + +
    Notatka: Ten błąd pojawił się jak tylko strona została załadowana, dlatego że błąd wystąpił podczas wykonywania funkcji (w środku bloku checkGuess() { ... }). Jak dowiesz się później bardziej szczegółowo, kod wewnątrz funkcji jest wykonywany w innej przestrzeni niż kod poza funkcją. W tym przypadku kod nie został uruchomiony, a błąd wyrzucony do momentu, aż funkcja checkGuess() nie dotarła do linijki 86.
    +
  6. +
  7. Popatrz na linię 78. Zobaczysz tam następujący kod: +
    lowOrHi.textContent = 'Last guess was too high!';
    +
  8. +
  9. W tej linii następuje próba ustawienia właściwości textContent zmiennej lowOrHi na tekst, ale to się nie powiodło ze względu na fakt, że lowOrHi nie jest tym, czego oczekujemy.  Trzeba się dowiedzieć, dlaczego tak jest - wyszukajmy inne wystąpienia lowOrHi. Najwcześniejsze wystąpienie znajdziemy w linii 48: +
    var lowOrHi = document.querySelector('lowOrHi');
    +
  10. +
  11. W tej linii próbujemy przypisać zmiennej referencję do elementu w dokumencie HTML. Sprawdźmy, czy wartością tej zmiennej jest null po wykonaniu tej linijki. Aby to zrobić, dodaj ten kod w linii 49: +
    console.log(lowOrHi);
    + +
    +

    Notatka: console.log() jest bardzo użyteczną funkcją do debugowania, której celem jest wypisanie wartości zmiennej do konsoli. W tym przypadku wypisze ona wartośćlowOrHi do konsoli w takiej postaci, w jakiej została ona ustawiona w linii 48.

    +
    +
  12. +
  13. Zapisz plik i odśwież stronę. Po przejściu do konsoli zobaczysz efekt wywołania console.log().Możemy być pewni - w tym momencie wartością lowOrHi jest null. Oznacza to, że błąd jest zdecydowanie związany z linią 48.
  14. +
  15. Pomyślmy - co może być tutaj problemem? W linii 48 używamy document.querySelector() aby otrzymać referencję do elementu. Odbywa się to poprzez podanie selektora CSS jako parametr funkcji. W dalszej częsci pliku można znaleźć paragraf, którego referencji potrzebujemy: +
    <p class="lowOrHi"></p>
    +
  16. +
  17. To oznacza, że potrzebujemy tu selektora klasy. Zaczyna się on kropką (.) - ale selektor, którego używamy w querySelector() (linia 48) nie ma kropki. To może być nasz błąd! Spróbuj zmienić lowOrHi na .lowOrHi w linii 48.
  18. +
  19. Zapisz i odśwież stronę. Teraz console.log() powinien wyświetlić element  <p>, którego poszukiwaliśmy. Uff! Kolejny błąd naprawiony! Możesz już usunąć linię z console.log() (albo zostawić ją odniesienie na później - jak uważasz).
  20. +
+ +
+

Note: See our TypeError: "x" is (not) "y" reference page for more details about this error.

+
+ +

Błędy składniowe - podejście trzecie

+ +
    +
  1. Teraz gdy spróbujesz zagrać w grę, powinno Ci się więcej powieść - gra będzie grywalna, do momentu końca gry - nieważne, czy poprzez znalezienie właściwej liczby czy skończenie się żyć.
  2. +
  3. W tym miejscu gra nie działa, a w konsoli pojawie się ten sam błąd, co na początku - "TypeError: resetButton.addeventListener is not a function"! Tym razem jednak jest wywoływany z linii 94.
  4. +
  5. Spójrzmy na linię 94. Można łatwo zauważyć, że mamy do czynienia z tym samym błędem, co wcześniej - wystarczy zmienić addeventListener na .addEventListener. Zrób to teraz.
  6. +
+ +

Błąd logiczny

+ +

Na tym etapie gra powinna być grywalna, ale po kilku uruchomieniach można łatwo zauważyć, że "losowa" liczba to zawsze 0 bądź 1. Nie jest to to, czego można od takiej gry oczekiwać!

+ +

Musi to być jakiś problem z logiką aplikacji - gra nie zwraca błędu, jednak nie zachowuje się jak powinna.

+ +
    +
  1. Znajdźmy zmienną randomNumber  i linie, w których zmienna jest zadeklarowana i jej wartość ustalona. To miejsce znajduje się w okolicach linii 44: + +
    var randomNumber = Math.floor(Math.random()) + 1;
    + A linia, która generuje losową liczbę przed każdą grą, to linia 113: + +
    randomNumber = Math.floor(Math.random()) + 1;
    +
  2. +
  3. Aby sprawdzić czy to z tymi liniami jest problem, użyjmy naszego starego przyjaciela - polecenia console.log(). Wstaw następujący kod bezpośrednio pod wcześniej wymienionymi dwiema liniami kodu: +
    console.log(randomNumber);
    +
  4. +
  5. Zapisz i odśwież, następnie zagraj kilka razy - można zauważyć, że za każdym wywołaniem  randomNumber jest równe 1.
  6. +
+ +

Praca nad logiką

+ +

W celu naprawy tego błędu, należy najpierw pomyśleć, jak działa ten kod. Na samym początku wywołujemy Math.random(), który generuje zmiennoprzecinkową liczbę pomiędzy 0 i 1, na przykład 0.5675493843.

+ +
Math.random()
+ +

Następnie uzyskaną liczbę podajemy jako parametr funkcji Math.floor(), której zadanie jest zaokrąglenie uzyskanej w parametrze liczby do największej liczby całkowitej równej bądź mniejszej od parametru. Następnie dodajemy 1 do wyniku:

+ +
Math.floor(Math.random()) + 1
+ +

Zaokrąglanie liczby zmiennoprzecinkowej w zakresie od 0 do 1 zawsze da 0 . Dodanie do niej 1 da więc wynik 1. Aby naprawić wynik zgodnie z wymaganiami, pomnóżmy naszą losową liczbę przez 100. Sprawi to, że dostaniemy losową liczbę od 0 do 99:

+ +
Math.floor(Math.random()*100);
+ +

Jeżeli dodamy 1, dostaniemy liczbę z przedziału od 1 do 100:

+ +
Math.floor(Math.random()*100) + 1;
+ +

Zmień obie linie zgodnie z tym wzorem, zapisz i odśwież stronę - gra powinna zachowywać się tak jak od niej tego oczekujemy!

+ +

Inne popularne błędy

+ +

Istnieją inne popularne błędy, na które natkniesz się w swoim kodzie. Ta sekcja zawiera listę najpopularniejszych z nich.

+ +

SyntaxError: missing ; before statement

+ +

Ten błąd oznacza, że zapomniałeś o średniku na końcu linii. Czasem może jednak być bardziej enigmatyczny. Przykładem może być zmiana tej linii:

+ +
var userGuess = Number(guessField.value);
+ +

na

+ +
var userGuess === Number(guessField.value);
+ +

Ten kod wyrzuca błąd, gdyż myśli, że chcesz zrobić coś innego. Musisz być pewny, że nie mieszasz znaku przypisania (=) — zapisuje on wartość w zmiennej, z operatorem dokładnego porównania, który testuje czy jedna wartość jest dokładnie równa drugiej - zwraca ona wynik w postaci zmiennej logicznej true/false.

+ +
+

Notatka: Aby dowiedzieć się więcej o tym błędzie, odwiedź naszą stronę SyntaxError: missing ; before statement.

+
+ +

Program zawsze twierdzi, że wygrałeś, niezależnie od wprowadzonej liczby

+ +

Może to być objawem pomieszania operatorów przypisania i dokładnego porównania. Przykładowo jeżeli byśmy zmienili tę linię w funkcji checkGuess():

+ +
if (userGuess === randomNumber) {
+ +

na

+ +
if (userGuess = randomNumber) {
+ +

ten test zawsze zwróciłby true (prawdę), co sprawiłoby, że program za każdym razem twierdziłby, że gra została przez Ciebie wygrana. Uważaj na błędy!

+ +

SyntaxError: missing ) after argument list

+ +

Ten błąd jest prosty — oznacza po prostu, że zapomniałeś dodać nawias zamykający na końcu funkcji/wywołania metody.

+ +
+

Notatka: Zobacz naszą  stronę referencyjną: SyntaxError: missing ) after argument list, aby dowiedzieć się więcej o tym błędzie.

+
+ +

SyntaxError: missing : after property id

+ +

Ten błąd zwykle jest związany z niepoprawnie napisanym obiektem JavaScript. Tym razem jednak został spowodowany zmianą

+ +
function checkGuess() {
+ +

na

+ +
function checkGuess( {
+ +

Ten błąd spowodował, że przeglądarka zinterpretowała ten kod jako próbę podania wnętrza funkcji jako parametr funkcji. Uważaj na nawiasy!

+ +

SyntaxError: missing } after function body

+ +

This is easy — it generally means that you've missed one of your curly braces from a function or conditional structure. We got this error by deleting one of the closing curly braces near the bottom of the checkGuess() function.

+ +

SyntaxError: expected expression, got 'string' or SyntaxError: unterminated string literal

+ +

These errors generally mean that you've missed off a string value's opening or closing quote mark. In the first error above, string would be replaced with the unexpected character(s) that the browser found instead of a quote mark at the start of a string. The second error means that the string has not been ended with a quote mark.

+ +

For all of these errors, think about how we tackled the examples we looked at in the walkthrough. When an error arises, look at the line number you are given, go to that line and see if you can spot what's wrong. Bear in mind that the error is not necessarily going to be on that line, and also that the error might not be caused by the exact same problem we cited above!

+ +
+

Note: See our SyntaxError: Unexpected token and SyntaxError: unterminated string literal reference pages for more details about these errors.

+
+ +

Podsumowanie

+ +

A wieć to jest to - podstawy szukania błędów w prostych programach w JS. Nie zawsze znalezienie błędu jest tak proste , ale przynajmniej ten artykuł może ci pomóc w zaoszczędzeniu kilku godzin snu i pozwolić na szybsze postępy w nauce.

+ +

Zobacz także

+ +
+ +
+ +

{{PreviousMenuNext("Learn/JavaScript/First_steps/A_first_splash", "Learn/JavaScript/First_steps/Variables", "Learn/JavaScript/First_steps")}}

+ +

 

+ +

In this module

+ + + +

 

diff --git a/files/pl/learn/javascript/obiekty/index.html b/files/pl/learn/javascript/obiekty/index.html deleted file mode 100644 index 9952e760a3..0000000000 --- a/files/pl/learn/javascript/obiekty/index.html +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: Wprowadzenie do obiektów JavaScript -slug: Learn/JavaScript/Obiekty -tags: - - JavaScript - - Objekt - - Początkujący - - samouczek -translation_of: Learn/JavaScript/Objects ---- -
{{LearnSidebar}}
- -

W JavaScript większość rzeczy jest obiektami, począwszy od najbardziej fundamentalnych rzeczy jak stringi czy tablice, na API przeglądarek zbudowanym na szczycie JavaScriptu kończąc. Możesz nawet stworzyć własne obiekty do hermetyzowania powiązanych funkcji i zmiennych w "pakietach", które będą działały jako podręczne kontenery. Obiektowość w JavaScripcie jest kluczowa do dalszego zrozumienia języka, dlatego też przygotowaliśmy ten moduł, aby ci pomóc.  Na początku nauczymy cię teorii obiektowości i składni, później popatrzymy na to, jak tworzyć własne obiekty.

- -

Wymagania

- -

Zanim rozpoczniesz ten moduł powinieneś być nieco zaznajomiony z HTML i CSS. Radzimy przejść przez moduły Wprowadzenie do HTML i Wprowadzenie do CSS zanim rozpoczniesz naukę JavaScriptu.

- -

Powinieneś również być nieco zaznajomiony z podstawami JavaScript zanim zaczniesz zgłębiać szczegóły dotyczące obiektów w tym języku. Zanim rozpoczniesz ten moduł zapoznaj się z JavaScript pierwsze kroki i JavaScript budowanie bloków.

- -
-

Uwaga: Jeśli pracujesz na komputerze/tablecie/innym urządzeniu gdzie nie masz możliwości tworzenia swoich własnych plików, powinieneś wypróbować (większość) przykładów kodu w aplikacji webowej takiej jak JSBin lub Thimble.

-
- -

Przewodniki

- -
-
Object basics
-
W pierwszym artykule dotyczącym obiektów JavaScript przyjrzymy się podstawom składni dla obiektów i powrócimy do tematów, które przerabialiśmy wcześniej. Powtórzymy niektóre fakty, które wskazują, że wiele właściwości, którymi się już zajmowałeś, to faktycznie obiekty.
-
Object-oriented JavaScript for beginners
-
Po zapoznaniu się z podstawami skupimy się teraz na obiektowym JavaScript (OOJS) - ten artykuł przedstawia podstawowe spojrzenie na teorię programowania obiektowego (OOP), następnie bada, w jaki sposób JavaScript emuluje klasy obiektów za pomocą funkcji konstruktora, oraz jak tworzone są instancje obiektów.
-
Object prototypes
-
Prototypy są mechanizmem, za pomocą którego obiekty JavaScript dziedziczą cechy od siebie i działają inaczej niż mechanizmy dziedziczenia w klasycznych obiektowych językach programowania. W tym artykule badamy tę różnicę, wyjaśniamy, jak działają łańcuchy prototypów, i przyglądamy się, w jaki sposób można użyć właściwości prototypu do dodania metod do istniejących konstruktorów
-
Dziedziczenie w JavaScript
-
Po wyjaśnieniu większości pikantnych szczegółów OOJS, artykuł pokazuje, jak tworzyć "potomne" klasy obiektów (konstruktory), które dziedziczą cechy z ich klas "nadrzędnych". Ponadto przedstawiamy poradę dotyczącą tego, kiedy i gdzie możesz korzystać z OOJS
-
Praca z JSON
-
JavaScript Object Notation (JSON) to standardowy format tekstowy służący do reprezentowania danych strukturalnych, oparty na składni obiektów JavaScript, ktory jest powszechnie używany do reprezentowania i przesyłania danych w witrynach internetowych (t.j. wysyłanie niektórych danych z serwera do klienta, dzięki czemu mogą one być wyświetlane na stronie internetowej). Spotkasz to dość często, więc w tym artykule podajemy wszystko, czego potrzebujesz, aby pracować z JSON przy użyciu JavaScript, w tym analizować JSON w celu uzyskania dostępu do zawartych w nim danych oraz pisanie własnego JSON.
-
Praktyka budowania obiektów
-
W poprzednich artykułach zapoznaliśmy się ze wszystkimi niezbędnymi teoriami obiektów JavaScript i szczegółami składni, co daje Ci solidną podstawę do rozpoczęcia. W tym artykule zagłębiamy się w praktyczne ćwiczenie, dając Ci trochę więcej praktyki w budowaniu niestandardowych obiektów JavaScript, które tworzą coś ciekawego i kolorowego - jakieś kolorowe podskakujące kuleczki.
-
- -

Oceny

- -
-
Dodajemy nowe funkcje do naszego demo z odbijającymi się piłkami
-
W tej części, jako punkt wyjścia, należy użyć demo odbijających się piłek z poprzedniego artykułu i dodać do niego kilka nowych i interesujących funkcji.
-
diff --git a/files/pl/learn/javascript/objects/index.html b/files/pl/learn/javascript/objects/index.html new file mode 100644 index 0000000000..9952e760a3 --- /dev/null +++ b/files/pl/learn/javascript/objects/index.html @@ -0,0 +1,47 @@ +--- +title: Wprowadzenie do obiektów JavaScript +slug: Learn/JavaScript/Obiekty +tags: + - JavaScript + - Objekt + - Początkujący + - samouczek +translation_of: Learn/JavaScript/Objects +--- +
{{LearnSidebar}}
+ +

W JavaScript większość rzeczy jest obiektami, począwszy od najbardziej fundamentalnych rzeczy jak stringi czy tablice, na API przeglądarek zbudowanym na szczycie JavaScriptu kończąc. Możesz nawet stworzyć własne obiekty do hermetyzowania powiązanych funkcji i zmiennych w "pakietach", które będą działały jako podręczne kontenery. Obiektowość w JavaScripcie jest kluczowa do dalszego zrozumienia języka, dlatego też przygotowaliśmy ten moduł, aby ci pomóc.  Na początku nauczymy cię teorii obiektowości i składni, później popatrzymy na to, jak tworzyć własne obiekty.

+ +

Wymagania

+ +

Zanim rozpoczniesz ten moduł powinieneś być nieco zaznajomiony z HTML i CSS. Radzimy przejść przez moduły Wprowadzenie do HTML i Wprowadzenie do CSS zanim rozpoczniesz naukę JavaScriptu.

+ +

Powinieneś również być nieco zaznajomiony z podstawami JavaScript zanim zaczniesz zgłębiać szczegóły dotyczące obiektów w tym języku. Zanim rozpoczniesz ten moduł zapoznaj się z JavaScript pierwsze kroki i JavaScript budowanie bloków.

+ +
+

Uwaga: Jeśli pracujesz na komputerze/tablecie/innym urządzeniu gdzie nie masz możliwości tworzenia swoich własnych plików, powinieneś wypróbować (większość) przykładów kodu w aplikacji webowej takiej jak JSBin lub Thimble.

+
+ +

Przewodniki

+ +
+
Object basics
+
W pierwszym artykule dotyczącym obiektów JavaScript przyjrzymy się podstawom składni dla obiektów i powrócimy do tematów, które przerabialiśmy wcześniej. Powtórzymy niektóre fakty, które wskazują, że wiele właściwości, którymi się już zajmowałeś, to faktycznie obiekty.
+
Object-oriented JavaScript for beginners
+
Po zapoznaniu się z podstawami skupimy się teraz na obiektowym JavaScript (OOJS) - ten artykuł przedstawia podstawowe spojrzenie na teorię programowania obiektowego (OOP), następnie bada, w jaki sposób JavaScript emuluje klasy obiektów za pomocą funkcji konstruktora, oraz jak tworzone są instancje obiektów.
+
Object prototypes
+
Prototypy są mechanizmem, za pomocą którego obiekty JavaScript dziedziczą cechy od siebie i działają inaczej niż mechanizmy dziedziczenia w klasycznych obiektowych językach programowania. W tym artykule badamy tę różnicę, wyjaśniamy, jak działają łańcuchy prototypów, i przyglądamy się, w jaki sposób można użyć właściwości prototypu do dodania metod do istniejących konstruktorów
+
Dziedziczenie w JavaScript
+
Po wyjaśnieniu większości pikantnych szczegółów OOJS, artykuł pokazuje, jak tworzyć "potomne" klasy obiektów (konstruktory), które dziedziczą cechy z ich klas "nadrzędnych". Ponadto przedstawiamy poradę dotyczącą tego, kiedy i gdzie możesz korzystać z OOJS
+
Praca z JSON
+
JavaScript Object Notation (JSON) to standardowy format tekstowy służący do reprezentowania danych strukturalnych, oparty na składni obiektów JavaScript, ktory jest powszechnie używany do reprezentowania i przesyłania danych w witrynach internetowych (t.j. wysyłanie niektórych danych z serwera do klienta, dzięki czemu mogą one być wyświetlane na stronie internetowej). Spotkasz to dość często, więc w tym artykule podajemy wszystko, czego potrzebujesz, aby pracować z JSON przy użyciu JavaScript, w tym analizować JSON w celu uzyskania dostępu do zawartych w nim danych oraz pisanie własnego JSON.
+
Praktyka budowania obiektów
+
W poprzednich artykułach zapoznaliśmy się ze wszystkimi niezbędnymi teoriami obiektów JavaScript i szczegółami składni, co daje Ci solidną podstawę do rozpoczęcia. W tym artykule zagłębiamy się w praktyczne ćwiczenie, dając Ci trochę więcej praktyki w budowaniu niestandardowych obiektów JavaScript, które tworzą coś ciekawego i kolorowego - jakieś kolorowe podskakujące kuleczki.
+
+ +

Oceny

+ +
+
Dodajemy nowe funkcje do naszego demo z odbijającymi się piłkami
+
W tej części, jako punkt wyjścia, należy użyć demo odbijających się piłek z poprzedniego artykułu i dodać do niego kilka nowych i interesujących funkcji.
+
diff --git a/files/pl/learn/javascript/pierwsze_kroki/a_first_splash/index.html b/files/pl/learn/javascript/pierwsze_kroki/a_first_splash/index.html deleted file mode 100644 index 0d0f49c69a..0000000000 --- a/files/pl/learn/javascript/pierwsze_kroki/a_first_splash/index.html +++ /dev/null @@ -1,687 +0,0 @@ ---- -title: A first splash into JavaScript -slug: Learn/JavaScript/Pierwsze_kroki/A_first_splash -translation_of: Learn/JavaScript/First_steps/A_first_splash ---- -
{{LearnSidebar}}
- -
{{PreviousMenuNext("Learn/JavaScript/First_steps/What_is_JavaScript", "Learn/JavaScript/First_steps/What_went_wrong", "Learn/JavaScript/First_steps")}}
- -

Zaznajomiłeś się już nieco z teorią JavaScript i masz już pewne pojęcie co do zastosowania tego języka. Teraz zamierzamy udzielić Ci przyspieszonego kursu z podstawowych funkcji JavaScript'u poprzez ten, w pełni praktyczny, samouczek. Krok po kroku napiszesz tu prostą grę pod tytułem: "Zgadnij liczbę".

- - - - - - - - - - - - -
Wymagania wstępne:Podstawowa umiejętność posługiwania się komputerem, podstawowa znajomość HTML i CSS, podstawowa znajomość czym jest JavaScript.
Cel:Pierwsze doświadczenia w pisaniu kodu w JavaScript i zrozumienie- przynajmniej w podstawowym stopniu- z czym związane jest pisanie programu w JavaScript.
- -

Nie oczekujemy od Ciebie całkowitego zrozumienia kodu od zaraz - chcemy raczej przedstawić Ci nieco ogólniejsze spojrzenie i dać Ci odczuć sposób, w jaki działa JavaScript (jak również i inne języki programowania). W późniejszych artykułach wrócimy do użytych tu funkcjonalności w bardziej szczegółowy spsób.

- -
-

Wiele funkcjonalności, które zobaczysz w JavaScript, jest takich samych, jak w innych językach programowania (funkcje, pętle itd.) Składnia języka wygląda inaczej, ale zasada działania jest przeważnie ta sama.

-
- -

Myśleć jak programista

- -

Składnia danego języka nie jest - wbrew pozorom - najtrudniejszym aspektem, z jakim trzeba zmierzyć się podczas nauki programowania. Sprawą znacznie poważniejszą jest bowiem nauczyć się stosować posiadaną wiedzę do rozwiązywania problemów ze świata realnego. Musisz zacząć myśleć jak programista. Wiąże się to z patrzeniem na opisy oczekiwanego efektu działania programu, przemyśleniem, jakich konstrukcji kodu w tym celu użyć i zaplanowaniem, jak połączyć je wszystkie w efektywnie współpracującą całość.

- -

Wymaga to połączenia ciężkiej pracy, doświadczenia ze składnią języków i praktyki - wraz z odrobiną kreatywności. Im więcej napiszesz kodu, tym lepszy w tym się staniesz. Nie możemy obiecać, że wypracujesz  w sobie "mózg programisty" w pięć minut, ale damy Ci wiele możliwości praktykowania myślenia jak programista w czasie trwania tego kursu.

- -

Pamiętając o tym, przyjrzyjmy się ogólnie procesowi pisania kodu dzieląc go na poszczególne konkretne zadania. Posłuży nam w tym celu poniższy przykładowy program.

- -

Przykład: Gra "Zgadnij liczbę"

- -

Oto przykład prostej gry:

- - - -

{{ EmbedLiveSample('Top_hidden_code', '100%', 320, "", "", "hide-codepen-jsfiddle") }}

- -

Nie krępuj się - pograj sobie chwilę. Zwróć uwagę na elementy tej gry zanim przejdziesz dalej.

- -

Wyobraźmy sobie, że Twój szef postawił przed Tobą następujące zadanie:

- -
-

Chcę, żebyś napisał prostą grę typu "zgadnij liczbę". Gra powinna wybierać losową liczbę pomiędzy 1 a 100. Zadaniem gracza jest odgadnąć tę liczbę w najwyżej 10 próbach. Po każdej próbie gracz powinien otrzymać informację, czy zgadł, czy też nie i - jeśli nie odgadł, powinien dodatkowo dowiedzieć się, czy jego liczba miała wartość za małą, czy za dużą. Ponadto gracz powinien widzieć wybrane poprzednio przez siebie liczby. Gra ma się zakończyć gdy gracz poda prawidłową odpowiedź, lub gdy wykorzysta ostatnią próbę. Po zakończeniu gry gracz powinien mieć możliwośc rozpocząć ją od nowa.

-
- -

Zacznijmy od przedstawienia powyższego opisu w sposób bliższy myśleniu programisty i podzielmy go na proste pojedyncze zadania:

- -
    -
  1. Wybierz losową liczbę z zakresu od 1 do 100.
  2. -
  3. Zapisz numer próby, którą podejmuje gracz. Zacznij od 1.
  4. -
  5. Podaj graczowi sposób, w jaki może odgadnąć tę liczbę.
  6. -
  7. Gdy padnie odpowiedź zapisz ją gdzieś, aby użytkownik mógł widzieć swoje poprzednie próby.
  8. -
  9. Sprawdź, czy padła prawidłowa odpowiedź.
  10. -
  11. Jeśli tak: -
      -
    1. Wyświetl gratulacje.
    2. -
    3. Zablokuj możliwość podawania dalszych odpowiedzi (to mogłoby namieszać w grze).
    4. -
    5. Udostępnij narzędzie, którym gracz może ponownie uruchomić grę.
    6. -
    -
  12. -
  13. Jeśli nie i graczowi pozostały jeszcze próby: -
      -
    1. Poinformuj o nieprawidłowej odpowiedzi.
    2. -
    3. Pozwól podać kolejną odpowiedź.
    4. -
    5. Zwiększ numer próby gracza o 1.
    6. -
    -
  14. -
  15. Jeśli nie i graczowi nie pozostała już ani jedna próba: -
      -
    1. Poinformuj o zakończeniu gry.
    2. -
    3. Zablokuj możliwość podawania dalszych odpowiedzi (to mogłoby namieszać w grze).
    4. -
    5. Udostępnij narzędzie, którym gracz może ponownie uruchomić grę.
    6. -
    -
  16. -
  17. Gdy gra uruchomi się ponownie, upewnij się, że dane z poprzedniej gry zostały całkowicie usunięte i interfejs powrócił do stanu początkowego. Przejdź do punktu nr 1.
  18. -
- -

Zróbmy kolejny krok i spróbujmy zamienić powyższe punkty w kod, który zbuduje naszą grę. W ten sposób zobaczysz w działaniu kilka funcji JavaScript.

- -

Przygotowanie

- -

Aby rozpocząć pracę potrzebujesz mieć na swoim komputerze kopię pliku number-guessing-game-start.html (see it live here). Otwórz go w edytorze tekstowym i jednocześnie w swojej przeglądarce. Plik ten zawiera nagłówek, akapit z krótką instrukcją gry, oraz (jeszcze nie działający) formularz do wprowadzania odpowiedzi.

- -

Nasz kod będziemy pisać w bloku określonym znacznikiem {{htmlelement("script")}} u dołu pliku HTML:

- -
<script>
-
-  // Twój kod JavaScript
-
-</script>
-
- -

Pojemniki na dane - zmienne

- -

Zaczynamy. W pierwszej kolejności dodaj poniższe linijki kodu do bloku oznaczonego {{htmlelement("script")}}.

- -
var randomNumber = Math.floor(Math.random() * 100) + 1;
-
-var guesses = document.querySelector('.guesses');
-var lastResult = document.querySelector('.lastResult');
-var lowOrHi = document.querySelector('.lowOrHi');
-
-var guessSubmit = document.querySelector('.guessSubmit');
-var guessField = document.querySelector('.guessField');
-
-var guessCount = 1;
-var resetButton;
- -

Ta część kodu definiuje zmienne i stałe niezbędne do pracy programu. Najprościej rzecz ujmując, zmienne są pojemnikami na wartości takie jak liczby, czy ciągi znaków. Zmienną tworzymy używając słowo kluczowe let (lub var), po którym wpisujemy nazwę tej zmiennej. Następnie możemy tej zmiennej przypisać wartość. Robimy to za pomocą znaku równości (=), po którego prawej stronie wpisujemy żądaną wartość. Więcej informacji na temat różnic pomiędzy słowami kluczowymi let i var możesz znaleźć w tym artykule. Stałe natomiast mają za zadanie przechować dane, które mają się nie zmieniać i tworzy się je podobnie jak zmienne, ale przy użyciu słowa kluczowego const. W naszym przykładzie użyjemy stałych do przechowania odnośników (referencji) do poszczególnych części naszego interfejsu użytkownika. Tekst w niektórych z nich może w którymś momencie ulec zmianie, jednak bloki kodu HTML, do których odnoszą się nasze stałe pozostaną niezmienne.

- -

W naszym przykładzie:

- - - -
-

Na temat zmiennych i stałych będziesz dowiadywał się coraz więcej w toku trwania kursu, począwszy już od tego artykułu.

-
- -

Funkcje

- -

Wstaw następujący kod poniżej dodanego w poprzednim kroku:

- -
function checkGuess() {
-  alert('I am a placeholder');
-}
- -

Funkcje są blokami kodu "wielokrotnego użytku". Napisane raz, mogą być wywoływane wielokrotnie bez potrzeby ponownego pisania ich w całości. Ta cecha funkcji nie tylko oszczędza czas pisania kodu, ale również znacząco poprawia jego czytelność. Istnieje kilka sposobów definiowania funkcji. W tym przykładzie zajmiemy się jednym z prostszych. Rozpoczynamy od słowa kluczowego function, następnie piszemy nazwę naszej funkcji, a na jej końcu- nawiasy zwykłe. Potem wstawiamy dwa nawiasy klamrowe ({ }). To właśnie w nich zawarte jest ciało funkcji - kod, który będzie wykonywał się, ilekroć wywołamy tę funkcję.

- -

Funkcje wywołuje się pisząc jej nazwę wraz z nawiasami zwykłymi.

- -

Spróbujmy. Zapisz zmiany w swoim pliku z kodem i odśwież okno przeglądarki. Teraz przejdź do konsoli JavaScript w narzędziach programisty w przeglądarce i wprowadź tę linię:

- -
checkGuess();
- -

Po zatwierdzeniu klawiszem Return/Enter, powinno pojawić się okno alertu z tekstem: "I am a placeholder". Dzieje się tak, poniważ w naszym kodzie zdefiniowaliśmy funkcję, która uruchamia ten alert, kiedy tylko ją wywołamy.

- -
-

dalszej części kursu dowiesz się znacznie więcej o funkcjach.

-
- -

Operatory

- -

Za pomocą operatorów w JavaScript możemy przeprowadzać porównania, dokonywać obliczeń, łączyć ze sobą ciągi znaków i robić wiele innych przydatnych rzeczy.

- -

Jeśli jeszcze nie zapisałeś zmian w swoim pliku z kodem, oraz nie odświeżyłeś okna przeglądarki, zrób to teraz. Otwórz konsolę Javascript w narzędziach programisty w przeglądarce. Teraz będziesz mógł sprawdzić działanie operatorów. Przepisz dokładnie każde z poleceń z kolumny "Example" i zatwierdź każde z nich klawiszem Return/Enter. Obserwuj wyniki. Jeśli z jakiegoś powodu nie masz dostępu do  narzędzi programistycznych w Twojej przeglądarce, możesz użyć poniższej prostej konsoli:

- - - -

{{ EmbedLiveSample('Hidden_code', '100%', 300, "", "", "hide-codepen-jsfiddle") }}

- -

Najpierw zajmiemy się operatorami arytmetycznymi:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OperatorNameExample
+Dodawanie6 + 9
-Odejmowanie20 - 15
*Mnożenie3 * 7
/Dzielenie10 / 5
- -

Operatora + możemy też użyć do łączenia ciągów znaków (takie działanie nazywa się w programowaniu konkatenacją). Wprowadź poniższe linie, oddzielając je klawiszem Return / Enter :

- -
var name = 'Bingo';
-name;
-var hello = ' says hello!';
-hello;
-var greeting = name + hello;
-greeting;
- -

Dostępne są również pewne ułatwiające życie skróty, zwane złożonymi operatorami przypisania. Jeśli na przykład chcielibyśmy w prosty sposób dodać nowy ciąg tekstowy do już istniejącego, możemy napisać tak:

- -
name += ' says hello!';
- -

Co jest równoznaczne z:

- -
name = name + ' says hello!';
- -

Kiedy dokonujemy sprawdzenia prawda / fałsz (na przykład w instrukcjach warunkowych - zobacz {{anch("Instrukcje warunkowe", "poniżej")}}) używamy operatorów porównania. Na przykład:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OperatorNameExample
===Ścisła równość (czy jest dokładnie tym samym?)5 === 2 + 4
!==Różne od (czy nie jest tym samym?)'Chris' !== 'Ch' + 'ris'
<Mniejsze od10 < 6
>Większe od10 > 20
- -

Instrukcje warunkowe

- -

Wrócmy teraz do naszej funkcji checkGuess().  Z pewnością lepiej mogłaby nam się przysłużyć, gdyby jej działanie nie ograniczało się tylko do wyświetlenia komunikatu "placeholder". Mamy dla niej o wiele ważniejsze zadanie - chcemy, by sprawdzała każdą odpowiedź gracza i odpowiednio reagowała.

- -

W tym celu zastąp obecną funkcję checkGuess() jej nową wersją:

- -
function checkGuess() {
-  var userGuess = Number(guessField.value);
-  if (guessCount === 1) {
-    guesses.textContent = 'Previous guesses: ';
-  }
-  guesses.textContent += userGuess + ' ';
-
-  if (userGuess === randomNumber) {
-    lastResult.textContent = 'Congratulations! You got it right!';
-    lastResult.style.backgroundColor = 'green';
-    lowOrHi.textContent = '';
-    setGameOver();
-  } else if (guessCount === 10) {
-    lastResult.textContent = '!!!GAME OVER!!!';
-    setGameOver();
-  } else {
-    lastResult.textContent = 'Wrong!';
-    lastResult.style.backgroundColor = 'red';
-    if(userGuess < randomNumber) {
-      lowOrHi.textContent = 'Last guess was too low!';
-    } else if(userGuess > randomNumber) {
-      lowOrHi.textContent = 'Last guess was too high!';
-    }
-  }
-
-  guessCount++;
-  guessField.value = '';
-  guessField.focus();
-}
- -

Sporo kodu, prawda? Przyjrzyjmy mu się bliżej:

- - - -

Zdarzenia (events)

- -

Udało nam się całkiem zgrabnie zaimplementować funkcję checkGuess(), jednak na razie nie wykona ona żadnej akcji z tej prostej przyczyny, że jeszcze jej nie wywołaliśmy. Funkcja ta ma zostać wywołana przy naciśnięciu przycisku "Submit guess". W tym celu użyjemy zdarzenia. Zdarzenie jest tym, co dzieje się w przeglądarce (np. kliknięcie przycisku, załadowanie strony, odtwarzanie filmu, itd.) i czego możemy użyć  w celu wywołania konkretnego bloku kodu. Konstrukty, które "nasłuchują", czy miało miejsce zdarzenie nazywane są detektorami zdarzeń (event listeners), a wywoływane w odpowiedzi na nie bloki kodu - modułami obsługi zdarzeń (event handlers).

- -

Do swojej funkcji checkGuess() dodaj poniższą linię:

- -
guessSubmit.addEventListener('click', checkGuess);
- -

W ten sposób dodałeś detektor zdarzenia do przycisku guessSubmit. Jest to metoda, która ma dwie dane wejściowe (zwane argumentami) zapisane w formie  ciągu znaków: typ zdarzenia, które ma zajść (w tym przypadku click), oraz fragment kodu, który ma zostać uruchomiony poprzez to zdarzenie (funkcja checkGuess()). Nazwę funkcji piszemy bez cudzysłowia. {{domxref("EventTarget.addEventListener", "addEventListener()")}}.

- -

Zapisz i odśwież swój kod. Powinien już prawie w pełni działać. Pozostała jeszcze jedna kwestia: gdy odgadniesz właściwą odpowiedź, lub wykorzystasz wszystkie próby odpowiedzi, gra zostanie przerwana, ponieważ jak dotąd nie zdefiniowaliśmy funkcji setGameOver(), która ma zostać wywołana w przypadku zakończenia gry. Dodajmy zatem brakującą część kodu, aby nasza gra zyskała wszystkie funkcjonalności.

- -

Finishing the game functionality

- -

Let's add that setGameOver() function to the bottom of our code and then walk through it. Add this now, below the rest of your JavaScript:

- -
function setGameOver() {
-  guessField.disabled = true;
-  guessSubmit.disabled = true;
-  resetButton = document.createElement('button');
-  resetButton.textContent = 'Start new game';
-  document.body.appendChild(resetButton);
-  resetButton.addEventListener('click', resetGame);
-}
- - - -

Now we need to define this function too! Add the following code, again to the bottom of your JavaScript:

- -
function resetGame() {
-  guessCount = 1;
-
-  var resetParas = document.querySelectorAll('.resultParas p');
-  for (var i = 0 ; i < resetParas.length ; i++) {
-    resetParas[i].textContent = '';
-  }
-
-  resetButton.parentNode.removeChild(resetButton);
-
-  guessField.disabled = false;
-  guessSubmit.disabled = false;
-  guessField.value = '';
-  guessField.focus();
-
-  lastResult.style.backgroundColor = 'white';
-
-  randomNumber = Math.floor(Math.random() * 100) + 1;
-}
- -

This rather long block of code completely resets everything to how it was at the start of the game, so the player can have another go. It:

- - - -

At this point you should have a fully working (simple) game — congratulations!

- -

All we have left to do now in this article is talk about a few other important code features that you've already seen, although you may have not realized it.

- -

Loops

- -

One part of the above code that we need to take a more detailed look at is the for loop. Loops are a very important concept in programming, which allow you to keep running a piece of code over and over again, until a certain condition is met.

- -

To start with, go to your browser developer tools JavaScript console again, and enter the following:

- -
for (var i = 1 ; i < 21 ; i++) { console.log(i) }
- -

What happened? The numbers 1 to 20 were printed out in your console. This is because of the loop. A for loop takes three input values (arguments):

- -
    -
  1. A starting value: In this case we are starting a count at 1, but this could be any number you like. You could replace the letter i with any name you like too, but i is used as a convention because it's short and easy to remember.
  2. -
  3. An exit condition: Here we have specified i < 21 — the loop will keep going until i is no longer less than 21. When i reaches 21, the loop will no longer run.
  4. -
  5. An incrementor: We have specified i++, which means "add 1 to i". The loop will run once for every value of i, until i reaches a value of 21 (as discussed above). In this case, we are simply printing the value of i out to the console on every iteration using {{domxref("Console.log", "console.log()")}}.
  6. -
- -

Now let's look at the loop in our number guessing game — the following can be found inside the resetGame() function:

- -
var resetParas = document.querySelectorAll('.resultParas p');
-for (var i = 0 ; i < resetParas.length ; i++) {
-  resetParas[i].textContent = '';
-}
- -

This code creates a variable containing a list of all the paragraphs inside <div class="resultParas"> using the {{domxref("Document.querySelectorAll", "querySelectorAll()")}} method, then it loops through each one, removing the text content of each.

- -

A small discussion on objects

- -

Let's add one more final improvement before we get to this discussion. Add the following line just below the var resetButton; line near the top of your JavaScript, then save your file:

- -
guessField.focus();
- -

This line uses the {{domxref("HTMLElement.focus", "focus()")}} method to automatically put the text cursor into the {{htmlelement("input")}} text field as soon as the page loads, meaning that the user can start typing their first guess right away, without having to click the form field first. It's only a small addition, but it improves usability — giving the user a good visual clue as to what they've got to do to play the game.

- -

Let's analyze what's going on here in a bit more detail. In JavaScript, everything is an object. An object is a collection of related functionality stored in a single grouping. You can create your own objects, but that is quite advanced and we won't be covering it until much later in the course. For now, we'll just briefly discuss the built-in objects that your browser contains, which allow you to do lots of useful things.

- -

In this particular case, we first created a guessField variable that stores a reference to the text input form field in our HTML — the following line can be found amongst our variable declarations near the top:

- -
var guessField = document.querySelector('.guessField');
- -

To get this reference, we used the {{domxref("document.querySelector", "querySelector()")}} method of the {{domxref("document")}} object. querySelector() takes one piece of information — a CSS selector that selects the element you want a reference to.

- -

Because guessField now contains a reference to an {{htmlelement("input")}} element, it will now have access to a number of properties (basically variables stored inside objects, some of which can't have their values changed) and methods (basically functions stored inside objects). One method available to input elements is focus(), so we can now use this line to focus the text input:

- -
guessField.focus();
- -

Variables that don't contain references to form elements won't have focus() available to them. For example, the guesses variable contains a reference to a {{htmlelement("p")}} element, and guessCount contains a number.

- -

Playing with browser objects

- -

Let's play with some browser objects a bit.

- -
    -
  1. First of all, open up your program in a browser.
  2. -
  3. Next, open your browser developer tools, and make sure the JavaScript console tab is open.
  4. -
  5. Type in guessField and the console will show you that the variable contains an {{htmlelement("input")}} element. You'll also notice that the console autocompletes the names of objects that exist inside the execution environment, including your variables!
  6. -
  7. Now type in the following: -
    guessField.value = 'Hello';
    - The value property represents the current value entered into the text field. You'll see that by entering this command, we've changed the text in the text field!
  8. -
  9. Now try typing in guesses and pressing return. The console will show you that the variable contains a {{htmlelement("p")}} element.
  10. -
  11. Now try entering the following line: -
    guesses.value
    - The browser will return undefined, because paragraphs don't have the value property.
  12. -
  13. To change the text inside a paragraph, you need the {{domxref("Node.textContent", "textContent")}} property instead. Try this: -
    guesses.textContent = 'Where is my paragraph?';
    -
  14. -
  15. Now for some fun stuff. Try entering the below lines, one by one: -
    guesses.style.backgroundColor = 'yellow';
    -guesses.style.fontSize = '200%';
    -guesses.style.padding = '10px';
    -guesses.style.boxShadow = '3px 3px 6px black';
    - Every element on a page has a style property, which itself contains an object whose properties contain all the inline CSS styles applied to that element. This allows us to dynamically set new CSS styles on elements using JavaScript.
  16. -
- -

Finished for now...

- -

So that's it for building the example. You got to the end — well done! Try your final code out, or play with our finished version here. If you can't get the example to work, check it against the source code.

- -

{{PreviousMenuNext("Learn/JavaScript/First_steps/What_is_JavaScript", "Learn/JavaScript/First_steps/What_went_wrong", "Learn/JavaScript/First_steps")}}

- -

In this module

- - diff --git a/files/pl/learn/javascript/pierwsze_kroki/co_poszlo_nie_tak/index.html b/files/pl/learn/javascript/pierwsze_kroki/co_poszlo_nie_tak/index.html deleted file mode 100644 index 1a88f2b797..0000000000 --- a/files/pl/learn/javascript/pierwsze_kroki/co_poszlo_nie_tak/index.html +++ /dev/null @@ -1,257 +0,0 @@ ---- -title: Co poszło nie tak? Rozwiązywanie problemów w JavaScript -slug: Learn/JavaScript/Pierwsze_kroki/Co_poszlo_nie_tak -translation_of: Learn/JavaScript/First_steps/What_went_wrong ---- -
{{LearnSidebar}}
- -
{{PreviousMenuNext("Learn/JavaScript/First_steps/A_first_splash", "Learn/JavaScript/First_steps/Variables", "Learn/JavaScript/First_steps")}}
- -

Kiedy w poprzednim artykule budowałeś grę "Zgadnij numer", mogłeś stwierdzić, że ona po prostu nie działała. Nie martw się - ten artykuł ma na celu zatrzymanie cię przed wyrywaniem sobie włosów nad takimi problemami poprzez dostarczenie ci narzędzi do znajdowania i naprawienia błędów w programach napisanych w JavaScript.

- - - - - - - - - - - - -
Wymagania wstępne:Podstawowa znajomość obsługi komputera, podstawowe rozumenie HTML i CSS oraz wiedza, czym jest JavaScript.
Cel:Zdobycie umiejętności i odwagi do rozwiązywania prostych problemów w twoim własnym kodzie.
- -

Typy błędów

- -

Każdy błąd w kodzie można w ogólności podzielić na dwa typy:

- - - -

No dobra, nie jest to tak proste - istnieją także inne czynniki, które różnicują błędy. Powyższa klasyfikacja wystarczy jednak w tym początkowym etapie twojej kariery. W kolejnej częsci przyjrzymy się tym dwóm typom błędów.

- -

Błędogenny przykład

- -

Zaczniemy od naszej poprzedniej gry "Zgadnij numer" - tylko że tym razem będziemy zajmować się wersją w której umyślnie ukryto trochę błędów. Odwiedź GitHub i wykonaj lokalną wersję  number-game-errors.html (Zobacz live demo tutaj).

- -
    -
  1. Aby zacząć, otwój lokalną wersję w swoim ulubionym edytorze tekstu i w twojej przeglądarce.
  2. -
  3. Spróbuj zagrać w tę - odkryjesz że kiedy wciskasz przycisk "Zgadnij" - on po prostu nie działa!
  4. -
- -
-

Notatka: Równie dobrze możesz mieć swoją wersję gry, która ci nie działa. Wiemy, że może chciałbyś ją naprawić, ale chcemy, abyś wykorzystał naszą wersję, dzięki czemu nauczysz się technik, których tu uczymy. Następnie możesz  wykorzystać je do naprawienia własnego kodu.

-
- -

W tym miejscu spójrzmy na narzędzia developerskie, dokładniej konsolę debugowania, aby sprawdzić, czy występują błędy składniowe, a jeżeli tak - naprawić je. Poniżej znajdują się instrukcje, jak tego dokonać.

- -

Naprawa błędów składniowych

- -

Wcześniej pokazaliśmy kilka prostych komend JavaScript, które wpisałeś do konsoli JavaScript w narzędziach deweloperskich (jeżeli nie pamiętasz jak je otworzyć, kliknij w link, aby sobie przypomnieć). Jej bardzo przydatną funkcją jest wyświetlanie błędów w momencie gdy interpreter JavaScript przeglądarki napotka na błąd. Wyruszmy na poszukiwanie błędów!

- -
    -
  1. Idź do karty z otwartą stroną number-game-errors.html i otwórz konsolę JavaScript. Znajdziesz tam błąd:
  2. -
  3. Jest to prosty błąd do wytropienia, a przeglądarka daje wiele przydatnych  wskazówek: (powyższy screen jest z Firefoxa, ale inne przeglądarki pokazują podobne informacje). Od lewej do prawej znajdują się: -
      -
    • Czerwony "x" dla pokazania, że jest to błąd.
    • -
    • Wiadomość błędu dla pokazania, co poszło nie tak: "TypeError: guessSubmit.addeventListener is not a function"
    • -
    • Link do "Learn More", który przekierowuje do strony na MDN, która wyjaśnia szczegółowo dany błąd.
    • -
    • Nazwa pliku JavaScript, która po kliknięciu kieruje do karty debuggera. Jeżeli klikniesz go, pokaże ci się dokładna linia z danym błędem.
    • -
    • Numer linii oraz znak, gdzie wystąpił błąd. W tym przypadku linia 86, znak 3.
    • -
    -
  4. -
  5. Spoglądając na linię 86, zobaczymy następujący kod: -
    guessSubmit.addeventListener('click', checkGuess);
    -
  6. -
  7. The error message says "guessSubmit.addeventListener is not a function", so we've probably spelled something wrong. If you are not sure of the correct spelling of a piece of syntax, it is often good to look up the feature on MDN. The best way to do this currently is to search for "mdn name-of-feature" on your favourite search engine. Here's a shortcut to save you some time in this instance: addEventListener().
  8. -
  9. So, looking at this page, the error appears to be that we've spelled the function name wrong! Remember that JavaScript is case sensitive, so any slight different in spelling or casing will cause an error. Changing addeventListener to addEventListener should fix this. Do this now.
  10. -
- -
-

Note: See our TypeError: "x" is not a function reference page for more details about this error.

-
- -

Błędy składniowe - podejście drugie

- -
    -
  1. Zapisz stronę i odśwież - zobaczysz, że błąd zniknął.
  2. -
  3. Spróbuj teraz wpisać liczbę. Po kliknięciu na przycisk "Wyślij" zobaczysz... inny błąd!
  4. -
  5. Tym razem błąd to "TypeError: lowOrHi is null", on line 78. -
    Notatka: Null jest specjalną wartością, która oznacza "nic" bądź "brak wartości" A więc lowOrHi został zadeklarowany i zainicjalizowany - ale wartością pustą.
    - -
    Notatka: Ten błąd pojawił się jak tylko strona została załadowana, dlatego że błąd wystąpił podczas wykonywania funkcji (w środku bloku checkGuess() { ... }). Jak dowiesz się później bardziej szczegółowo, kod wewnątrz funkcji jest wykonywany w innej przestrzeni niż kod poza funkcją. W tym przypadku kod nie został uruchomiony, a błąd wyrzucony do momentu, aż funkcja checkGuess() nie dotarła do linijki 86.
    -
  6. -
  7. Popatrz na linię 78. Zobaczysz tam następujący kod: -
    lowOrHi.textContent = 'Last guess was too high!';
    -
  8. -
  9. W tej linii następuje próba ustawienia właściwości textContent zmiennej lowOrHi na tekst, ale to się nie powiodło ze względu na fakt, że lowOrHi nie jest tym, czego oczekujemy.  Trzeba się dowiedzieć, dlaczego tak jest - wyszukajmy inne wystąpienia lowOrHi. Najwcześniejsze wystąpienie znajdziemy w linii 48: -
    var lowOrHi = document.querySelector('lowOrHi');
    -
  10. -
  11. W tej linii próbujemy przypisać zmiennej referencję do elementu w dokumencie HTML. Sprawdźmy, czy wartością tej zmiennej jest null po wykonaniu tej linijki. Aby to zrobić, dodaj ten kod w linii 49: -
    console.log(lowOrHi);
    - -
    -

    Notatka: console.log() jest bardzo użyteczną funkcją do debugowania, której celem jest wypisanie wartości zmiennej do konsoli. W tym przypadku wypisze ona wartośćlowOrHi do konsoli w takiej postaci, w jakiej została ona ustawiona w linii 48.

    -
    -
  12. -
  13. Zapisz plik i odśwież stronę. Po przejściu do konsoli zobaczysz efekt wywołania console.log().Możemy być pewni - w tym momencie wartością lowOrHi jest null. Oznacza to, że błąd jest zdecydowanie związany z linią 48.
  14. -
  15. Pomyślmy - co może być tutaj problemem? W linii 48 używamy document.querySelector() aby otrzymać referencję do elementu. Odbywa się to poprzez podanie selektora CSS jako parametr funkcji. W dalszej częsci pliku można znaleźć paragraf, którego referencji potrzebujemy: -
    <p class="lowOrHi"></p>
    -
  16. -
  17. To oznacza, że potrzebujemy tu selektora klasy. Zaczyna się on kropką (.) - ale selektor, którego używamy w querySelector() (linia 48) nie ma kropki. To może być nasz błąd! Spróbuj zmienić lowOrHi na .lowOrHi w linii 48.
  18. -
  19. Zapisz i odśwież stronę. Teraz console.log() powinien wyświetlić element  <p>, którego poszukiwaliśmy. Uff! Kolejny błąd naprawiony! Możesz już usunąć linię z console.log() (albo zostawić ją odniesienie na później - jak uważasz).
  20. -
- -
-

Note: See our TypeError: "x" is (not) "y" reference page for more details about this error.

-
- -

Błędy składniowe - podejście trzecie

- -
    -
  1. Teraz gdy spróbujesz zagrać w grę, powinno Ci się więcej powieść - gra będzie grywalna, do momentu końca gry - nieważne, czy poprzez znalezienie właściwej liczby czy skończenie się żyć.
  2. -
  3. W tym miejscu gra nie działa, a w konsoli pojawie się ten sam błąd, co na początku - "TypeError: resetButton.addeventListener is not a function"! Tym razem jednak jest wywoływany z linii 94.
  4. -
  5. Spójrzmy na linię 94. Można łatwo zauważyć, że mamy do czynienia z tym samym błędem, co wcześniej - wystarczy zmienić addeventListener na .addEventListener. Zrób to teraz.
  6. -
- -

Błąd logiczny

- -

Na tym etapie gra powinna być grywalna, ale po kilku uruchomieniach można łatwo zauważyć, że "losowa" liczba to zawsze 0 bądź 1. Nie jest to to, czego można od takiej gry oczekiwać!

- -

Musi to być jakiś problem z logiką aplikacji - gra nie zwraca błędu, jednak nie zachowuje się jak powinna.

- -
    -
  1. Znajdźmy zmienną randomNumber  i linie, w których zmienna jest zadeklarowana i jej wartość ustalona. To miejsce znajduje się w okolicach linii 44: - -
    var randomNumber = Math.floor(Math.random()) + 1;
    - A linia, która generuje losową liczbę przed każdą grą, to linia 113: - -
    randomNumber = Math.floor(Math.random()) + 1;
    -
  2. -
  3. Aby sprawdzić czy to z tymi liniami jest problem, użyjmy naszego starego przyjaciela - polecenia console.log(). Wstaw następujący kod bezpośrednio pod wcześniej wymienionymi dwiema liniami kodu: -
    console.log(randomNumber);
    -
  4. -
  5. Zapisz i odśwież, następnie zagraj kilka razy - można zauważyć, że za każdym wywołaniem  randomNumber jest równe 1.
  6. -
- -

Praca nad logiką

- -

W celu naprawy tego błędu, należy najpierw pomyśleć, jak działa ten kod. Na samym początku wywołujemy Math.random(), który generuje zmiennoprzecinkową liczbę pomiędzy 0 i 1, na przykład 0.5675493843.

- -
Math.random()
- -

Następnie uzyskaną liczbę podajemy jako parametr funkcji Math.floor(), której zadanie jest zaokrąglenie uzyskanej w parametrze liczby do największej liczby całkowitej równej bądź mniejszej od parametru. Następnie dodajemy 1 do wyniku:

- -
Math.floor(Math.random()) + 1
- -

Zaokrąglanie liczby zmiennoprzecinkowej w zakresie od 0 do 1 zawsze da 0 . Dodanie do niej 1 da więc wynik 1. Aby naprawić wynik zgodnie z wymaganiami, pomnóżmy naszą losową liczbę przez 100. Sprawi to, że dostaniemy losową liczbę od 0 do 99:

- -
Math.floor(Math.random()*100);
- -

Jeżeli dodamy 1, dostaniemy liczbę z przedziału od 1 do 100:

- -
Math.floor(Math.random()*100) + 1;
- -

Zmień obie linie zgodnie z tym wzorem, zapisz i odśwież stronę - gra powinna zachowywać się tak jak od niej tego oczekujemy!

- -

Inne popularne błędy

- -

Istnieją inne popularne błędy, na które natkniesz się w swoim kodzie. Ta sekcja zawiera listę najpopularniejszych z nich.

- -

SyntaxError: missing ; before statement

- -

Ten błąd oznacza, że zapomniałeś o średniku na końcu linii. Czasem może jednak być bardziej enigmatyczny. Przykładem może być zmiana tej linii:

- -
var userGuess = Number(guessField.value);
- -

na

- -
var userGuess === Number(guessField.value);
- -

Ten kod wyrzuca błąd, gdyż myśli, że chcesz zrobić coś innego. Musisz być pewny, że nie mieszasz znaku przypisania (=) — zapisuje on wartość w zmiennej, z operatorem dokładnego porównania, który testuje czy jedna wartość jest dokładnie równa drugiej - zwraca ona wynik w postaci zmiennej logicznej true/false.

- -
-

Notatka: Aby dowiedzieć się więcej o tym błędzie, odwiedź naszą stronę SyntaxError: missing ; before statement.

-
- -

Program zawsze twierdzi, że wygrałeś, niezależnie od wprowadzonej liczby

- -

Może to być objawem pomieszania operatorów przypisania i dokładnego porównania. Przykładowo jeżeli byśmy zmienili tę linię w funkcji checkGuess():

- -
if (userGuess === randomNumber) {
- -

na

- -
if (userGuess = randomNumber) {
- -

ten test zawsze zwróciłby true (prawdę), co sprawiłoby, że program za każdym razem twierdziłby, że gra została przez Ciebie wygrana. Uważaj na błędy!

- -

SyntaxError: missing ) after argument list

- -

Ten błąd jest prosty — oznacza po prostu, że zapomniałeś dodać nawias zamykający na końcu funkcji/wywołania metody.

- -
-

Notatka: Zobacz naszą  stronę referencyjną: SyntaxError: missing ) after argument list, aby dowiedzieć się więcej o tym błędzie.

-
- -

SyntaxError: missing : after property id

- -

Ten błąd zwykle jest związany z niepoprawnie napisanym obiektem JavaScript. Tym razem jednak został spowodowany zmianą

- -
function checkGuess() {
- -

na

- -
function checkGuess( {
- -

Ten błąd spowodował, że przeglądarka zinterpretowała ten kod jako próbę podania wnętrza funkcji jako parametr funkcji. Uważaj na nawiasy!

- -

SyntaxError: missing } after function body

- -

This is easy — it generally means that you've missed one of your curly braces from a function or conditional structure. We got this error by deleting one of the closing curly braces near the bottom of the checkGuess() function.

- -

SyntaxError: expected expression, got 'string' or SyntaxError: unterminated string literal

- -

These errors generally mean that you've missed off a string value's opening or closing quote mark. In the first error above, string would be replaced with the unexpected character(s) that the browser found instead of a quote mark at the start of a string. The second error means that the string has not been ended with a quote mark.

- -

For all of these errors, think about how we tackled the examples we looked at in the walkthrough. When an error arises, look at the line number you are given, go to that line and see if you can spot what's wrong. Bear in mind that the error is not necessarily going to be on that line, and also that the error might not be caused by the exact same problem we cited above!

- -
-

Note: See our SyntaxError: Unexpected token and SyntaxError: unterminated string literal reference pages for more details about these errors.

-
- -

Podsumowanie

- -

A wieć to jest to - podstawy szukania błędów w prostych programach w JS. Nie zawsze znalezienie błędu jest tak proste , ale przynajmniej ten artykuł może ci pomóc w zaoszczędzeniu kilku godzin snu i pozwolić na szybsze postępy w nauce.

- -

Zobacz także

- -
- -
- -

{{PreviousMenuNext("Learn/JavaScript/First_steps/A_first_splash", "Learn/JavaScript/First_steps/Variables", "Learn/JavaScript/First_steps")}}

- -

 

- -

In this module

- - - -

 

diff --git a/files/pl/learn/javascript/pierwsze_kroki/index.html b/files/pl/learn/javascript/pierwsze_kroki/index.html deleted file mode 100644 index ab90523dce..0000000000 --- a/files/pl/learn/javascript/pierwsze_kroki/index.html +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: Pierwsze kroki w Javascript -slug: Learn/JavaScript/Pierwsze_kroki -tags: - - Artykuły - - Liczby - - Moduły - - Operatory - - Początkujący - - Przewodnik - - Pętle - - Zmienne -translation_of: Learn/JavaScript/First_steps ---- -
{{LearnSidebar}}
- -

W pierwszym module, przed rozpoczęciem praktycznego pisania kodu w JavaScript, odpowiemy sobie na kilka fundamentalnych pytań takich jak: "czym jest JavaScript?", "czym się charakteryzuje?" oraz "co potrafi?". Następnie omówimy kilka kluczowych kwestii - zmienne, ciągi znaków, liczby oraz pętle w JavaScript.

- -

Wymagania

- -

Przed rozpoczęciem nauki tego modułu nie musisz posiadać żadnej wiedzy o JavaScript, ale powinieneś już znać podstawowe zagadnienia związane z HTML-em oraz CSS-em. Doradzamy Ci, abyś ukończył moduły przedstawione poniżej:

- - - -
-

Informacja: Jeżeli pracujesz na komputerze/tablecie/innym urządzeniu na którym nie masz możliwości tworzenia własnych plików, możesz wypróbować przedstawione przykłady w programach online, takich jak:  JSBin lub Thimble.

-
- -

Przewodnik

- -
-
Czym jest JavaScript?
-
Witamy w MDN-owym kursie JavaScript dla początkujących! W tym artykule spojrzymy na JavaScript jeszcze nieco ogólne i odpowiemy sobie na podstawowe pytania:  "co to jest?" oraz "co robi?". To ważne, by znać cele stosowania tego języka.
-
Pierwsze spojrzenie na JavaScript
-
Najpierw nauczysz się teorii JavaScript, oraz tego, co możesz zrobić za jego pomocą. Następnie przejdziesz przez instruktarz oparty o podstawowe cechy JavaScript, który będzie miał formę praktyczną - napiszesz prostą grę - "Zgadnij liczbę". Proces pisania pokażemy Ci krok po kroku.
-
Coś poszło nie tak? Rozwiązywanie problemów w JavaScript
-
Podczas pisania gry "zgadnij liczbę" z poprzedniego artykułu możesz natrafić na trudności, które spowodują problemy z jej poprawnym działaniem. Spokojnie - ten artykuł uchroni Cię przed wyrywaniem sobie włosów podczas sprawdzania swojego kodu. Pokażemy Ci kilka prostych sposóbów wykrywania i eliminowania błędów w programie napisanym w Javascript.
-
Przechowywanie informacji, których potrzebujesz — Zmienne
-
Po przeczytaniu poprzednich artykułów powinieneś wiedzieć czym jest JavaScript, co może dla Ciebie zrobić, oraz jak możesz używać go wraz z innymi internetowymi technologiami. Ten artykuł poprowadzi Cię przez podstawowe "bloki", którymi będziesz posługiwać się podczas pisania programu w Javascript - zmienne.
-
Podstawy działań w JavaScript — liczby i operatory
-
W tym miesjcu kursu porozmawiamy o działaniach w JavaScript - dowiesz się jak możesz łączyć operatory oraz przeczytasz o innych cechach języka, aby poprawnie korzystać z liczb.
-
Przechowywanie tekstu — ciągi znaków w JavaScript
-
Następnie skupimy swoją uwagę na string-ach - tak nazywają się ciągi tekstu w programowaniu. W tym artykule spojrzymy na najważniejsze rzeczy, które potrzebujesz wiedzieć o ciągach znaków w JavaScript. Są nimi: tworzenie "string-ów", używanie cudzysłowia, oraz łączenie ze sobą ciągów znaków.
-
Użyteczne metody w string-ach
-
Po zaznajomieniu się z podstawami string-ów czas podnieść poprzeczkę. Zaczniemy mysleć o pomocnych operacjach, które możemy wykonać na ciągach znaków poprzez wbudowane funkcje, takie jak: obliczanie długości ciągu znaków, łączenie i rozdzielanie, zastępowanie jednego znaku innym i wiele więcej.
-
Pętle
-
W ostatnim artykule tego modułu przyjrzymy się pętlom - następnym sposobie przechowywania informacji w pojedynczej zmiennej. Dowiesz się tutaj dlaczego są one ważne, odkryjesz jak je stworzyć, dodać i usunąć z nich dane. 
-
- -

Podsumowanie

- -

Poniższe podsumowanie sprawdzi Twoje rozumienie podstaw języka Javascript z powyższego przewodnika.

- -
-
Generator niemądrych opowieści
-
W tej części zastosujesz zdobytą wiedzę, zebraną w powyższych artykułach, do stworzenia aplikacji - "Generatora niemądrych opowieści". Baw się dobrze!
-
diff --git a/files/pl/learn/javascript/pierwsze_kroki/math/index.html b/files/pl/learn/javascript/pierwsze_kroki/math/index.html deleted file mode 100644 index 3e5563d0da..0000000000 --- a/files/pl/learn/javascript/pierwsze_kroki/math/index.html +++ /dev/null @@ -1,455 +0,0 @@ ---- -title: Basic math in JavaScript — numbers and operators -slug: Learn/JavaScript/Pierwsze_kroki/Math -translation_of: Learn/JavaScript/First_steps/Math ---- -
{{LearnSidebar}}
- -
{{PreviousMenuNext("Learn/JavaScript/First_steps/Variables", "Learn/JavaScript/First_steps/Strings", "Learn/JavaScript/First_steps")}}
- -

At this point in the course we discuss math in JavaScript — how we can use {{Glossary("Operator","operators")}} and other features to successfully manipulate numbers to do our bidding.

- - - - - - - - - - - - -
Prerequisites:Basic computer literacy, a basic understanding of HTML and CSS, an understanding of what JavaScript is.
Objective:To gain familiarity with the basics of math in JavaScript.
- -

Wszyscy kochają matematykę

- -

Ok, może nie. Niektórzy  kochają matematykę, inni nienawidzą  od kiedy musieli nauczyć się tabliczki mnożenia i dzielenia przez liczby wielocyfrowe w szkole podstawowej, a częśc jest gdzieś pośrodku. Ale nikt z nas nie może zaprzeczyć, temu że matematyka jest fundamentalną częścią życia, bez której nie zajdzie się daleko. Jest to szczególnie prawdziwe kiedy uczymy się programowania w JavaScript (lub jakimkolwiek innym języku) -   tak wiele z tego co robimy polega na przetwarzaniu danych liczbowych, obliczaniu nowych wartości i tak dalej, że nie będziesz zaskoczony, że JavaScript posiada w pełni funkcjonalny zestaw funkcji matematycznych.

- -

Artykuł omawia podstawy, które musisz znać na ten moment.

- -

Typy liczb

- -

W programowaniu, nawet na pozór łatwy system dziesiętny, który tak dobrze znamy jest bardziej skąplikowany niż mógłbyś sądzić. Używamy różnych terminów do opisania różnych typów liczb dziesiętnych, dla przykładu: 

- - - -

We even have different types of number systems! Decimal is base 10 (meaning it uses 0–9 in each column), but we also have things like:

- - - -

Before you start to get worried about your brain melting, stop right there! For a start, we are just going to stick to decimal numbers throughout this course; you'll rarely come across a need to start thinking about other types, if ever.

- -

The second bit of good news is that unlike some other programming languages, JavaScript only has one data type for numbers, both integers and decimals — you guessed it, {{jsxref("Number")}}. This means that whatever type of numbers you are dealing with in JavaScript, you handle them in exactly the same way.

- -
-

Note: Actually, JavaScript has a second number type, {{Glossary("BigInt")}}, used for very, very large integers. But for the purposes of this course, we'll just worry about Number values.

-
- -

It's all numbers to me

- -

Let's quickly play with some numbers to reacquaint ourselves with the basic syntax we need. Enter the commands listed below into your developer tools JavaScript console.

- -
    -
  1. First of all, let's declare a couple of variables and initialize them with an integer and a float, respectively, then type the variable names back in to check that everything is in order: -
    let myInt = 5;
    -let myFloat = 6.667;
    -myInt;
    -myFloat;
    -
  2. -
  3. Number values are typed in without quote marks — try declaring and initializing a couple more variables containing numbers before you move on.
  4. -
  5. Now let's check that both our original variables are of the same datatype. There is an operator called {{jsxref("Operators/typeof", "typeof")}} in JavaScript that does this. Enter the below two lines as shown: -
    typeof myInt;
    -typeof myFloat;
    - You should get "number" returned in both cases — this makes things a lot easier for us than if different numbers had different data types, and we had to deal with them in different ways. Phew!
  6. -
- -

Useful Number methods

- -

The Number object, an instance of which represents all standard numbers you'll use in your JavaScript, has a number of useful methods available on it for you to manipulate numbers. We don't cover these in detail in this article because we wanted to keep it as a simple introduction and only cover the real basic essentials for now; however, once you've read through this module a couple of times it is worth going to the object reference pages and learning more about what's available.

- -

For example, to round your number to a fixed number of decimal places, use the toFixed() method. Type the following lines into your browser's console:

- -
let lotsOfDecimal = 1.766584958675746364;
-lotsOfDecimal;
-let twoDecimalPlaces = lotsOfDecimal.toFixed(2);
-twoDecimalPlaces;
- -

Converting to number data types

- -

Sometimes you might end up with a number that is stored as a string type, which makes it difficult to perform calculations with it. This most commonly happens when data is entered into a form input, and the input type is text. There is a way to solve this problem — passing the string value into the Number() constructor to return a number version of the same value.

- -

For example, try typing these lines into your console:

- -
let myNumber = '74';
-myNumber + 3;
- -

You end up with the result 743, not 77, because myNumber is actually defined as a string. You can test this by typing in the following:

- -
typeof myNumber;
- -

To fix the calculation, you can do this:

- -
Number(myNumber) + 3;
- -

Arithmetic operators

- -

Arithmetic operators are the basic operators that we use to do sums in JavaScript:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OperatorNamePurposeExample
+AdditionAdds two numbers together.6 + 9
-SubtractionSubtracts the right number from the left.20 - 15
*MultiplicationMultiplies two numbers together.3 * 7
/DivisionDivides the left number by the right.10 / 5
%Remainder (sometimes called modulo) -

Returns the remainder left over after you've divided the left number into a number of integer portions equal to the right number.

-
-

8 % 3 (returns 2, as three goes into 8 twice, leaving 2 left over).

-
**ExponentRaises a base number to the exponent power, that is, the base number multiplied by itself, exponent times. It was first Introduced in EcmaScript 2016.5 ** 2 (returns 25, which is the same as 5 * 5).
- -
-

Note: You'll sometimes see numbers involved in arithmetic referred to as {{Glossary("Operand", "operands")}}.

-
- -
-

Note: You may sometimes see exponents expressed using the older {{jsxref("Math.pow()")}} method, which works in a very similar way. For example, in Math.pow(7, 3), 7 is the base and 3 is the exponent, so the result of the expression is 343. Math.pow(7, 3) is equivalent to 7**3.

-
- -

We probably don't need to teach you how to do basic math, but we would like to test your understanding of the syntax involved. Try entering the examples below into your developer tools JavaScript console to familiarize yourself with the syntax.

- -
    -
  1. First try entering some simple examples of your own, such as -
    10 + 7
    -9 * 8
    -60 % 3
    -
  2. -
  3. You can also try declaring and initializing some numbers inside variables, and try using those in the sums — the variables will behave exactly like the values they hold for the purposes of the sum. For example: -
    let num1 = 10;
    -let num2 = 50;
    -9 * num1;
    -num1 ** 3;
    -num2 / num1;
    -
  4. -
  5. Last for this section, try entering some more complex expressions, such as: -
    5 + 10 * 3;
    -num2 % 9 * num1;
    -num2 + num1 / 8 + 2;
    -
  6. -
- -

Some of this last set of calculations might not give you quite the result you were expecting; the  section below might well give the answer as to why.

- -

Operator precedence

- -

Let's look at the last example from above, assuming that num2 holds the value 50 and num1 holds the value 10 (as originally stated above):

- -
num2 + num1 / 8 + 2;
- -

As a human being, you may read this as "50 plus 10 equals 60", then "8 plus 2 equals 10", and finally "60 divided by 10 equals 6".

- -

But the browser does "10 divided by 8 equals 1.25", then "50 plus 1.25 plus 2 equals 53.25".

- -

This is because of operator precedence — some operators are applied before others when calculating the result of a calculation (referred to as an expression, in programming).  Operator precedence in JavaScript is the same as is taught in math classes in school — Multiply and divide are always done first, then add and subtract (the calculation is always evaluated from left to right).

- -

If you want to override operator precedence, you can put parentheses round the parts that you want to be explicitly dealt with first. So to get a result of 6, we could do this:

- -
(num2 + num1) / (8 + 2);
- -

Try it and see.

- -
-

Note: A full list of all JavaScript operators and their precedence can be found in Expressions and operators.

-
- -

Increment and decrement operators

- -

Sometimes you'll want to repeatedly add or subtract one to or from a numeric variable value. This can be conveniently done using the increment (++) and decrement (--) operators. We used ++ in our "Guess the number" game back in our first splash into JavaScript article, when we added 1 to our guessCount variable to keep track of how many guesses the user has left after each turn.

- -
guessCount++;
- -
-

Note: These operators are most commonly used in loops, which you'll learn about later on in the course. For example, say you wanted to loop through a list of prices, and add sales tax to each one. You'd use a loop to go through each value in turn and do the necessary calculation for adding the sales tax in each case. The incrementor is used to move to the next value when needed. We've actually provided a simple example showing how this is done — check it out live, and look at the source code to see if you can spot the incrementors! We'll look at loops in detail later on in the course.

-
- -

Let's try playing with these in your console. For a start, note that you can't apply these directly to a number, which might seem strange, but we are assigning a variable a new updated value, not operating on the value itself. The following will return an error:

- -
3++;
- -

So, you can only increment an existing variable. Try this:

- -
let num1 = 4;
-num1++;
- -

Okay, strangeness number 2! When you do this, you'll see a value of 4 returned — this is because the browser returns the current value, then increments the variable. You can see that it's been incremented if you return the variable value again:

- -
num1;
- -

The same is true of -- : try the following

- -
let num2 = 6;
-num2--;
-num2;
- -
-

Note: You can make the browser do it the other way round — increment/decrement the variable then return the value — by putting the operator at the start of the variable instead of the end. Try the above examples again, but this time use ++num1 and --num2.

-
- -

Assignment operators

- -

Assignment operators are operators that assign a value to a variable. We have already used the most basic one, =, loads of times — it simply assigns the variable on the left the value stated on the right:

- -
let x = 3; // x contains the value 3
-let y = 4; // y contains the value 4
-x = y; // x now contains the same value y contains, 4
- -

But there are some more complex types, which provide useful shortcuts to keep your code neater and more efficient. The most common are listed below:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OperatorNamePurposeExampleShortcut for
+=Addition assignmentAdds the value on the right to the variable value on the left, then returns the new variable valuex += 4;x = x + 4;
-=Subtraction assignmentSubtracts the value on the right from the variable value on the left, and returns the new variable valuex -= 3;x = x - 3;
*=Multiplication assignmentMultiplies the variable value on the left by the value on the right, and returns the new variable valuex *= 3;x = x * 3;
/=Division assignmentDivides the variable value on the left by the value on the right, and returns the new variable valuex /= 5;x = x / 5;
- -

Try typing some of the above examples into your console, to get an idea of how they work. In each case, see if you can guess what the value is before you type in the second line.

- -

Note that you can quite happily use other variables on the right hand side of each expression, for example:

- -
let x = 3; // x contains the value 3
-let y = 4; // y contains the value 4
-x *= y; // x now contains the value 12
- -
-

Note: There are lots of other assignment operators available, but these are the basic ones you should learn now.

-
- -

Active learning: sizing a canvas box

- -

In this exercise, you will manipulate some numbers and operators to change the size of a box. The box is drawn using a browser API called the {{domxref("Canvas API", "", "", "true")}}. There is no need to worry about how this works — just concentrate on the math for now. The width and height of the box (in pixels) are defined by the variables x and y, which are initially both given a value of 50.

- -

{{EmbedGHLiveSample("learning-area/javascript/introduction-to-js-1/maths/editable_canvas.html", '100%', 620)}}

- -

Open in new window

- -

In the editable code box above, there are two lines marked with a comment that we'd like you to update to make the box grow/shrink to certain sizes, using certain operators and/or values in each case. Let's try the following:

- - - -

Don't worry if you totally mess the code up. You can always press the Reset button to get things working again. After you've answered all the above questions correctly, feel free to play with the code some more or create your own challenges.

- -

Comparison operators

- -

Sometimes we will want to run true/false tests, then act accordingly depending on the result of that test — to do this we use comparison operators.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OperatorNamePurposeExample
===Strict equalityTests whether the left and right values are identical to one another5 === 2 + 4
!==Strict-non-equalityTests whether the left and right values are not identical to one another5 !== 2 + 3
<Less thanTests whether the left value is smaller than the right one.10 < 6
>Greater thanTests whether the left value is greater than the right one.10 > 20
<=Less than or equal toTests whether the left value is smaller than or equal to the right one.3 <= 2
>=Greater than or equal toTests whether the left value is greater than or equal to the right one.5 >= 4
- -
-

Note: You may see some people using == and != in their tests for equality and non-equality. These are valid operators in JavaScript, but they differ from ===/!==. The former versions test whether the values are the same but not whether the values' datatypes are the same. The latter, strict versions test the equality of both the values and their datatypes. The strict versions tend to result in fewer errors, so we recommend you use them.

-
- -

If you try entering some of these values in a console, you'll see that they all return true/false values — those booleans we mentioned in the last article. These are very useful, as they allow us to make decisions in our code, and they are used every time we want to make a choice of some kind. For example, booleans can be used to:

- - - -

We'll look at how to code such logic when we look at conditional statements in a future article. For now, let's look at a quick example:

- -
<button>Start machine</button>
-<p>The machine is stopped.</p>
-
- -
const btn = document.querySelector('button');
-const txt = document.querySelector('p');
-
-btn.addEventListener('click', updateBtn);
-
-function updateBtn() {
-  if (btn.textContent === 'Start machine') {
-    btn.textContent = 'Stop machine';
-    txt.textContent = 'The machine has started!';
-  } else {
-    btn.textContent = 'Start machine';
-    txt.textContent = 'The machine is stopped.';
-  }
-}
- -

{{EmbedGHLiveSample("learning-area/javascript/introduction-to-js-1/maths/conditional.html", '100%', 100)}}

- -

Open in new window

- -

You can see the equality operator being used just inside the updateBtn() function. In this case, we are not testing if two mathematical expressions have the same value — we are testing whether the text content of a button contains a certain string — but it is still the same principle at work. If the button is currently saying "Start machine" when it is pressed, we change its label to  "Stop machine", and update the label as appropriate. If the button is currently saying "Stop machine" when it is pressed, we swap the display back again.

- -
-

Note: Such a control that swaps between two states is generally referred to as a toggle. It toggles between one state and another — light on, light off, etc.

-
- -

Test your skills!

- -

You've reached the end of this article, but can you remember the most important information? You can find some further tests to verify that you've retained this information before you move on — see Test your skills: Math.

- -

Summary

- -

In this article we have covered the fundamental information you need to know about numbers in JavaScript, for now. You'll see numbers used again and again, all the way through your JavaScript learning, so it's a good idea to get this out of the way now. If you are one of those people that doesn't enjoy math, you can take comfort in the fact that this chapter was pretty short.

- -

In the next article, we'll explore text and how JavaScript allows us to manipulate it.

- -
-

Note: If you do enjoy math and want to read more about how it is implemented in JavaScript, you can find a lot more detail in MDN's main JavaScript section. Great places to start are our Numbers and dates and Expressions and operators articles.

-
- -

{{PreviousMenuNext("Learn/JavaScript/First_steps/Variables", "Learn/JavaScript/First_steps/Strings", "Learn/JavaScript/First_steps")}}

- -

In this module

- - diff --git a/files/pl/learn/javascript/pierwsze_kroki/what_is_javascript/index.html b/files/pl/learn/javascript/pierwsze_kroki/what_is_javascript/index.html deleted file mode 100644 index 3898eb049c..0000000000 --- a/files/pl/learn/javascript/pierwsze_kroki/what_is_javascript/index.html +++ /dev/null @@ -1,342 +0,0 @@ ---- -title: Co to jest JavaScript? -slug: Learn/JavaScript/Pierwsze_kroki/What_is_JavaScript -translation_of: Learn/JavaScript/First_steps/What_is_JavaScript ---- -
{{LearnSidebar}}
- -
{{NextMenu("Learn/JavaScript/First_steps/A_first_splash", "Learn/JavaScript/First_steps")}}
- -

Witamy w MDN na kursie JavaScript dla początkujących! W tym pierwszym artykule przyjrzymy się JavaScript z pewnej odległości, odpowiadając na pytania w stylu "co to jest?" i "co on robi?" oraz upewnimy się, że rozumiesz cel, któremu służy JavaScript.

- - - - - - - - - - - - -
Wymagania wstępne:Podstawowa znajomość komputera, podstawowa znajomość HTML i CSS.
Cel:Zapoznanie z istotą JavaScript, co on robi i jak jest dopasowywany do strony internetowej.
- -

Definicja ogólna

- -

JavaScript to język programowania, który umożliwia wdrożenie na stronie internetowej skomplikowanych elementów, dzięki którym strona ta może nie tylko wyświetlać statyczne informacje, ale również obsługiwać zmianę treść odpowiednio do sytuacji, wyświetlać interaktywne mapy i animacje grafiki 2D/3D , wyświetlać video itd. Jest to trzecia warstwa standardowych technologii internetowych, z których dwie (HTML i CSS) omówiliśmy w innych częściach "Strefy nauki".

- -

- - - -

Te trzy warstwy układają się jedna na drugiej. Jako przykład weźmy prostą etykietę tekstową. Możemy ją oznaczyć używajac kodu HTML, aby nadać jej strukturę:

- -
<p>Player 1: Chris</p>
- -

- -

Następnie możemy dodać kod CSS, aby nadać ładny wygląd:

- -
p {
-  font-family: 'helvetica neue', helvetica, sans-serif;
-  letter-spacing: 1px;
-  text-transform: uppercase;
-  text-align: center;
-  border: 2px solid rgba(0,0,200,0.6);
-  background: rgba(0,0,200,0.3);
-  color: rgba(0,0,200,0.6);
-  box-shadow: 1px 1px 2px rgba(0,0,200,0.4);
-  border-radius: 10px;
-  padding: 3px 10px;
-  display: inline-block;
-  cursor:pointer;
-}
- -

- -

Na końcu możemy dodać kod Javascript, aby zaimplementować dynamiczne zachowanie:

- -
var para = document.querySelector('p');
-
-para.addEventListener('click', updateName);
-
-function updateName() {
-  var name = prompt('Enter a new name');
-  para.textContent = 'Player 1: ' + name;
-}
-
- -

{{ EmbedLiveSample('A_high-level_definition', '100%', 80) }}

- -

Kliknij na przycisk (etykietę tekstową), aby zobaczyć co się dzieje (na GitHub mozesz znależć kod źróðłowy i wersję demo — zobacz kod źródłowy lub przykład na żywo)!

- -

JavaScript pozwala osiągać o wiele bardziej zaawansowane efekty - sprawdź poniżej jego możliwości.

- -

Co można zrobić?

- -

Rdzeń języka JavaScript składa się z kilku funkcjonalności, które umożliwiają wykonanie rzeczy, takich jak te: 

- - - -

Jeszcze bardziej ekscytująca jest możliwość stosowania tzw. interfejsów programowania aplikacji (ang. Application Programming Interfaces - API), działających na szczycie rdzenia języka JavaScript.

- -

Interfejsy API są gotowymi zestawami bloków kodu, które umożliwiają programistom implementować programy, które w przeciwnym razie byłyby bardzo trudne do napisania przez programistę a nawet często niemożliwe do napisania przez niego. Spełniają one w programowaniu tą samą rolę, co gotowe segmenty mebli przy umeblowaniu domu — o wiele łatwiej jest wykorzystać gotowe panele i je poskręcać, niż samemu opracować projekt mebli, znaleźć drewno, pociąć go na deski, wysuszyć, przyciąć je na elementy swoich mebli i w końcu je samemu zmontować.

- -

Interfejsy API dzielą się ogólnie na dwie kategorie:

- -

- -

Interfesy API przeglądarek internetowych, które są wbudowane w przeglądarki. Służą do udostępniania danych z komputera, ale też mogą wykonywać bardziej zaawansowane rzeczy. Na przykład:

- - - -
-

Uwaga: wiele z powyższych przykładów nie będzie działać w starszych przeglądarkach - podczas eksperymentowania warto używać najnowszych wersji przeglądarek takich jak Firefox, Chrome, Edge czy Opera. Powinieneś także brać pod uwagę konieczność testowania swoich rozwiązań w wielu przegladarkach. Kod, który działa dobrze w Chrome nie zawsze będzie działał w Edge. (sprawdź: Testowanie wieloprzegladarkowe).

-
- -

Zewnętrzne interfejsy API nie są wbudowane w przeglądarki i trzeba samemu pobrać ich kod i informacje o zastosowaniu. Na przykład:

- - - -
-

Uwaga:  Interfesy API są zaawansowane i nie będziemy ich tu opisywać, możesz znaleźć o nich więcej informacji w module Interfejsy API działające po stronie klienta.

-
- -

W Internecie dostępnych jest bardzo dużo bibliotek API działających z przegladarkami internetowymi, ale jest to "temat na później". Nie zbudujesz następnego Facebooka czy Google Maps po 24 godzinach nauki JavaScriptu. Jest wiele zagadnień podstawowych, które musisz najpierw opanować. Ale przecież po to tu jesteś!

- -

Co robi JavaScript na stronie internetowej?

- -

Tutaj zaczniemy faktycznie przyglądać się pewnemu kodowi i robiąc to, zbadamy, co takiego dzieje się po uruchomieniu tego kodu na stronie internetowej.

- -

Przypomnijmy sobie, co dzieje się podczas ładowania strony internetowej w przeglądarce (pierwsz raz omówiliśmy to w artykule Jak działa CSS). Po załadowaniu strony internetowej (dokumentu HTML) do przeglądarki, zostaje uruchomioney jej kod (HTML, CSS i JavaScript) w środowisku wykonawczym tworzonym przez przeglądarkę (zakładka przegladarki). Jest to podobne do fabryki, która przyjmuje surowe materiały (kod) a wypuszcza gotowy produkt (stronę internetową).

- -

- -

JavaScript jest wykonywany przez silnik JavaScriptu w przeglądarce, po tym jak HTML i CSS zostaną skompletowane w stronę internetową. To zapewnia to, że struktura i style strony są już na miejscu w momencie gdy JavaScript zaczyna pracę.

- -

Jest to przydatne, jako że popularnym zastosowaniem JavaScriptu jest dynamiczne modyfikowanie HTMLa i CSSa aby edytować interfejs poprzez Document Object Model API. Jeżeli JavaScript załadowałby się i próbował wykonywać się przed tym jak HTML i CSS zostały załadowane, wtedy wystąpiłyby błędy.

- -

Bezpieczeństwo przeglądarki

- -

Każda karta przeglądarki jest swoim własnym kontenerem dla kodu, który w niej się wykonuje (te kontenery są nazywane technicznie "środowiskami wykonywania" (ang. "execution environments") - oznacza to, ze w większości przypadków kod w każdej karcie jest wykonywany oddzielnie i kod z jednej z kart nie jest w stanie bezpośrednio wpłynąć na ten wykonujący się w innej karcie. Jest to przykład dobrego środka bezpieczeństwa - jeżeli by tak nie było, wtedy możliwe stałoby się pisanie kodu, który wykradałby dane z innych witryn oraz  byłby w stanie wykonywać inne, podobnie złe rzeczy.

- -
-

Notatka:  Istnieją sposoby na bezpieczne wysyłanie kodu i danych pomiędzy różnymi stronami/kartami. Wykraczają one jednak poziomem poza ten kurs i nie zostaną one tu omówione.

-
- -

Kolejność wykonywania kodu JavaScript

- -

Kiedy przeglądarka napotyka blok kodu JS, wykonuje go po kolei, od góry do dołu. Oznacza to, że musisz być ostrożny, w jakiej kolejności umieszczasz instrukcje. Aby ukazać to zjawisko, wróćmy do bloku kodu z pierwszego przykładu:

- -
var para = document.querySelector('p');
-
-para.addEventListener('click', updateName);
-
-function updateName() {
-  var name = prompt('Enter a new name');
-  para.textContent = 'Player 1: ' + name;
-}
- -

Na początku wybieramy pierwszy paragraf (linia 1), dołączamy do niego event listener (linia 3), aby kiedy zostanie on klinięty, blok  updateName() (linie 5- 8) został uruchomiony. Blok  updateName() (ten typ kodu możliwego do użycia ponownie jest nazywany funkcją) pyta użytkownika o nowe imię, po czym wstawia to podane imię do paragrafu, aby uaktualnić widok.

- -

Jeżeli zamieniłbyś kolejność dwóch pierwszych linii kodu, przestałoby to działać - zamiast tego pojawiłby się błąd w konsoli przeglądarki - TypeError: para is undefined. Oznacza on, że ten obiekt jeszcze nie istnieje, a więc nie możemy dodać do niego event listenera.

- -
-

Notatka: Jest to bardzo popularny błąd - musisz uważać na to, że obiekty do których istnieją odwołania istnieją przed tym jak cokolwiek z nimi zrobisz.

-
- -

Kod interpretowany kontra kompilowany

- -

Mogłeś usłyszeć pojęcie kodu interpretowanego i kompilowanego. JavaScript jest językiem interpretowanym - kod jest wykonywany od góry do dołu i wynik jest zwracany natychmiastowo. Nie musisz transformować kodu w jakąś inną postać przed tym jak przeglądarka go wykona.

- -

Języki kompilowane są natomiast transformowane (kompilowane) do innej formy przed ich wykonaniem. Dla przykładu C/C++ jest kompilowane do kodu assemblera, który jest następnie wykonywany przez komputer.

- -

Oba te podejścia mają swoje wady i zalety, które nie zostaną tutaj omówione.

- -

Kod server-side kontra client-side

- -

Mogłeś także słyszeć pojęcia server-side i client-side, szczególnie w odniesieniu do tworzenia stron internetowych. Kod client-side jest kodem, który jest wykonywany na komputerze użytkownika - kiedy strona jest wyświetlana, kod client-side jest pobierany, następnie uruchamiany i wyświetlany przez przeglądarkę. W tym module JavaScript mówimy jednoznacznie o client-side JavaScript.

- -

Kod server-side jest natomiast wykonywany na serwerze, po czym wynik wykonania jest pobierany i wyświetlany przez przeglądarkę. Popularnymi przykładami języków server-side są PHP, Python, Ruby czy ASP.NET. I JavaScript! JavaScript może być także użyty jako język server-side, na przykład w popularnym środowisku Node.js - możesz więcej dowiedzieć się o tym w naszym poradniku Dynamic Websites – Server-side programming

- -

Słowo dynamiczny jest użyte zarówno do opisania zarówno client-side JavaScript i języki server-side — odnosi się ono do możliwości uaktualnienia widoku strony/aplikacji, aby możliwe było pokazanie różnych rzeczy w różnych okolicznościach; generując nową zawartość w zależności od potrzeb. Kod server-side  dynamicznie generuje nową zawartość na serwerze, na przykład stworzenie nowej tabeli HTML, kiedy client-side JavaScript dynamicznie generuje nową zawartość, na przykład tworząc nową tabelę HTML, wstawiając dane pobrane z serwera, następnie pokazując użytkownikowi tabelę na stronie. Znaczenie słowa jest lekko inne, ale podobne,  w dwóch kontekstach użycia i te dwa podejścia (server-side i client-side) zwykle współpracują ramię w ramię.

- -

Strona bez dynamicznie uaktualnianej zawartości nazywa się statyczną - zawsze pokazuje to samo.

- -

W jaki sposób dodać JavaScript do twojej strony?

- -

JavaScript jest dołączany do strony HTML w podobny sposób jak odbywa się to w wypadku CSS. Podczas gdy CSS używa elementów {{htmlelement("link")}} do dołączania zewnętrznych arkuszów i {{htmlelement("style")}} do dołączenia stylów bezpośrednio w dokumencie, JS potrzebuje tylko jednej rzeczy - elementu {{htmlelement("script")}}. Dowiedzmy się, jak to działa.

- -

Osadzony JavaScript

- -
    -
  1. Po pierwsze stwórz lokalną kopię naszego przykładowego pliku apply-javascript.html. Zapisz go gdzieś w katalogu.
  2. -
  3. Otwórz plik w twojej przeglądarce i edytorze tekstu. Ujrzysz prostą stronę z przyciskiem, który można kliknąć.
  4. -
  5. Następnie wejdź do edytora i dodaj następujący kod tuż przed końcem </body>: -
    <script>
    -
    -  // Kod JavaScript będzie tu umieszczony.
    -
    -</script>
    -
  6. -
  7. Teraz dodamy trochę kodu w naszym elemencie  {{htmlelement("script")}}, aby strona wykonała coś bardziej interesującego  — dodaj poniższy kod bezpośrednio pod linią "// Kod JavaScript będzie tu umieszczony.": -
    function stworzParagraf() {
    -  var para = document.createElement('p');
    -  para.textContent = 'Kliknąłeś przycisk!';
    -  document.body.appendChild(para);
    -}
    -
    -var przyciski = document.querySelectorAll('button');
    -
    -for (var i = 0; i < przyciski.length ; i++) {
    -  przyciski[i].addEventListener('click', stworzParagraf);
    -}
    -
  8. -
  9. Zapisz plik i odśwież stronę w przeglądarce - teraz gdy klikniesz przycisk, nowy paragraf jest generowany i umieszczany poniżej.
  10. -
- -
-

Notatka: Jeżeli przykład nie działa, przejdź go znowu krok po kroku, sprawdzając czy zrobiłeś wszystko poprawnie. Czy zapisałeś swoją lokalną wersję początkowego kodu jako plik .html? Czy dodałeś element  {{htmlelement("script")}} tuż przed zamknięciem  </body>? Czy wprowadziłeś kod JavaScript dokładnie tak, jak podane w przykłądzie?

- -

JavaScript uwzględnia wielkość liter i jest bardzo drobiazgowy, a więc musisz wprowadzić kod dokładnie tak,  jak zostało to pokazane. W innym wypadku może to nie zadziałać.

-
- -
-

NotatkaMożesz zobaczyć ten kod także na GitHubie jako apply-javascript-internal.html (zobacz to także na żywo).

-
- -

Zewnętrzny JavaScript

- -

Działa to świetnie, ale co by było, gdybyśmy chcieli umieścić nasz kod JavaScript w oddzielnym pliku? Zróbmy to teraz.

- -
    -
  1. Po pierwsze, stwórz nowy plik w tym samym katalogu, w którym umieściłeś twój plik HTML. Nazwij go script.js  - upewnij się, że ma on rozszerzenie .js, jako że w ten sposób jest rozpoznawany jako JavaScript.
  2. -
  3. Następnie przekopiuj wszystkie skrypty z obecnego {{htmlelement("script")}} i wklej je do pliku .js. Zapisz ten plik. 
  4. -
  5. Teraz zastąp obecny element {{htmlelement("script")}} poniższym kodem: -
    
    -<script src="script.js"></script>
    -
  6. -
  7. Zapisz i odśwież przeglądarkę - powinieneś zobaczyć to samo! Działa to w ten sam sposób, ale teraz mamy kod JavaScript w oddzielnym pliku. Jest to dobra praktyka organizowania kodu i umożliwiania jego ponownego wykorzystania między wieloma plikami HTML. Do tego HTML jest łatwiejszy do czytania bez bloków kodu pomiędzy.
  8. -
- -

Notatka: Możesz zobaczyć ten kod na GitHubie -  apply-javascript-external.html i script.js (Możesz zobaczyć to także na żywo tu).

- -

Interpretowanie kodu JavaScript inline

- -

Czasami napotkasz kawałki prawdziwego kodu JavaScript pomiędzy kodem HTML. Może to wyglądać następująco:

- -

-function stworzParagraf() {
-  var para = document.createElement('p');
-  para.textContent = 'Kliknąłeś przycisk!';
-  document.body.appendChild(para);
-}
- -

-<button onclick="createParagraph()">Kliknij mnie!</button>
- -

Możesz przetestować tę wersję poniżej:

- -

{{ EmbedLiveSample('Inline_JavaScript_handlers', '100%', 150) }}

- -

Ten przykład ma dokładnie tę samą funkcjonalność jak dwa poprzednie przykłady, za wyjątkiem tego, że element {{htmlelement("button")}} zawiera w sobie handler onclick . Sprawia to, że funkcja zostanie uruchomiona gdy zostanie wcisnięty przycisk.

- -

Jednakże nie rób tego! Zanieczyszczanie HTMLa poprzez JavaScript jest uważane za złą praktykę. Jest to również nieefektywne - musiałbyś załączać atrybut onclick="stworzParagraf()"  do każdego przycisku, dla którego miałaby zastosowanie funkcja.

- -

Używanie czystych konstrukcji JavaScript pozwala na wybranie wszystkich przycisków za pomocą jednej instrukcji. Kod, którego użyliśmy do wykonania tego wygląda następująco:

- -
var buttons = document.querySelectorAll('button');
-
-for (var i = 0; i < buttons.length ; i++) {
-  buttons[i].addEventListener('click', createParagraph);
-}
- -

Może to wyglądać na lekko dłuższe niż atrybut  onclick, ale zadziała to dla wszyskich przycisków, bez znaczenia ile ich jest na stronie i ile z nich zostanie dodane bądź usunięte. Kod JS nie musi być zmieniony.

- -
-

Notatka:  Spróbuj edytować twoją wersję apply-javascript.html i dodaj kilka innych przycisków. Kiedy przeładujesz stronę, odkryjesz, że wszystkie przyciski tworzą paragraf po kliknięciu. Nieźle, co?

-
- -

Komentarze

- -

Tak samo jak w HTML i CSS, możliwe jest pisanie komentarzy w kodzie JavaScript. Zostaną one zignorowane przez przeglądarkę - istnieją tylko po to, aby służyć pomocą tym, którzy współpracują przy tym kodzie (i tobie, kiedy po 6 miesiącach wrócić do kodu i nie będziesz pamiętać, co on robi). Komentarze są bardzo użyteczne i powinieneś używać ich często, szczególnie w dużych aplikacjach. Istniają dwa typy komentarzy:

- - - -

Przykładowo możemy skomentować nasz ostatni kod JavaScript w ten sposób:

- -

-// Funkcja: tworzy nowy paragraf i dodaje na koniec <body>.
-
-function stworzParagraf() {
-  var para = document.createElement('p');
-  para.textContent = 'Kliknąłeś przycisk!';
-  document.body.appendChild(para);
-}
-
-/*
-  1. Pobierz listę wskaźników na wszystke przyciski na stronie.
-  2. Przejdź po wszystkich przycisków i dodaj każdemu z nich akcję pod klinięcie.
-
-  Kiedy przycisk jest wciśnięty, funkcja stworzParagraf() zostanie wywołana.
-*/
-
-var przyciski = document.querySelectorAll('button');
-
-for (var i = 0; i < buttons.length ; i++) {
-  przyciski[i].addEventListener('click', stworzParagraf);
-}
- -

Podsumowanie

- -

A więc proszę bardzo, oto twój pierwszy krok w kierunku świata JavaScript. Zaczęliśmy właśnie teorię, aby przyzwyczaić cię do używania JavaScript i do tego, co z jego pomocą można zrobić. W czasie trwania kursu między innymi zobaczyłeś kilka przykładów i nauczyłeś się, jak JavaScript jest używany z resztą kodu na twojej stronie.

- -

JavaScript może wyglądać obecnie lekko odstraszająco, ale nie martw się - w tym kursie wprowadzimy cię w jego świat krok po kroku. W kolejnym artykule zanurzysz się w praktycznej częsci, poprzez budowanie twoich własnych przykładów kodu w JavaScript.

- - - -

{{NextMenu("Learn/JavaScript/First_steps/A_first_splash", "Learn/JavaScript/First_steps")}}

- -

W tym module

- - diff --git a/files/pl/learn/javascript/pierwsze_kroki/zmienne/index.html b/files/pl/learn/javascript/pierwsze_kroki/zmienne/index.html deleted file mode 100644 index d1b55aea20..0000000000 --- a/files/pl/learn/javascript/pierwsze_kroki/zmienne/index.html +++ /dev/null @@ -1,453 +0,0 @@ ---- -title: Przechowywanie potrzebnych informacji — Zmienne -slug: Learn/JavaScript/Pierwsze_kroki/Zmienne -translation_of: Learn/JavaScript/First_steps/Variables ---- -
{{LearnSidebar}}
- -
{{PreviousMenuNext("Learn/JavaScript/First_steps/What_went_wrong", "Learn/JavaScript/First_steps/Math", "Learn/JavaScript/First_steps")}}
- -

Po przeczytaniu kilku ostatnich artykułów, powinieneś juz wiedzieć czym jest JavaScript, co może dla Ciebie zrobić, jak używać go razem z innymi technologiami webowymi, oraz jak jego główne cechy wyglądają z wysokiego poziomu. W tym artykule, przejdziemy do fundamentów, poznamy jak wygląda pracowa z najbardziej podstawowym konceptem JavaScript - Zmiennymi. 

- -
- - - - - - - - - - - - -
Wymagania:Podstawowa znajomość komputera, podstawowe rozumienie HTML i CSS, oraz rozumienie czym jest JavaScript.
Cel:Zapoznać się z podstawami dotyczącymi zmiennych w JavaScript.
- -

Potrzebne Narzędzia

- -

Podczas tego artykułu, będziesz wpisywać linie kodu aby sprawdzić swoje rozumienie zawartości. Jeśli używasz przeglądarki desktopowej, najlepszym miejscem na wpisanie próbnego kodu jest konsola JavaScript Twojej przeglądarki (zobacz: What are browser developer tools aby zasięgnąć szczegółowych informacji, jak otworzyć to narzędzie).

- -

Niemniej jednak, zapewniliśmy również prostą konsolę JavaScript wbudowaną w poniższą stronę, abyś mógł wpisywać kod w przypadku gdy nie używasz przeglądarki z łatwym dostępem do konsoli JavaScript lub konsola wewnątrz strony jest dla Ciebie wygodniejsza.

- -

Czym jest zmienna?

- -

Zmienna jest to kontener na wartość, jak liczba, którą możemy użyć w sumowaniu lub łańcuch znaków, który możemy wykorzystać jako część zdania. Ale jedną rzeczą, która wyróżnia zmienne jest to, że ich wartość może ulec zmianie. Popatrzmy na prosty przykład:

- -
<button>Press me</button>
- -
const button = document.querySelector('button');
-
-button.onclick = function() {
-  let name = prompt('What is your name?');
-  alert('Hello ' + name + ', nice to see you!');
-}
- -

{{ EmbedLiveSample('What_is_a_variable', '100%', 50, "", "", "hide-codepen-jsfiddle") }}

- -

W tym przykładzie, naciśnięcie przycisku uruchamia kilka linijek kodu. Pierwsza linia powoduje pojawienie się okna na ekranie, które pyta o imię, a następnie przechowuje wartość w zmiennej. Druga linia wyświetla wiadomość powitalną zawierajaca imię pobrane ze zmiennej.

- -

Aby zrozumieć dlaczego jest to tak przydatne, pomyślmy o tym jak stworzylibyśmy ten przykład, nie używając zmiennej. W efekcie wygladałoby to mniej więcej tak:

- -
var name = prompt('What is your name?');
-
-if (name === 'Adam') {
-  alert('Hello Adam, nice to see you!');
-} else if (name === 'Alan') {
-  alert('Hello Alan, nice to see you!');
-} else if (name === 'Bella') {
-  alert('Hello Bella, nice to see you!');
-} else if (name === 'Bianca') {
-  alert('Hello Bianca, nice to see you!');
-} else if (name === 'Chris') {
-  alert('Hello Chris, nice to see you!');
-}
-
-// ... i tak dalej ...
- -

Możesz nie rozumieć w pełni składni której tu używamy (jeszcze!), ale powinieneś być w stanie zrozumieć o co chodzi - jeśli nie moglibyśmy używać zmiennych, musielibyśmy implementować gigantyczny blok kodu, który sprawdzałby jakie było wpisane imię, a następnie wyświetlał odpowiednią wiadomość dla tego imienia. Oczywiście jest to całkowicie nieefektywne (kod jest znacznie większy, nawet dla tylko pięciu możliwych wyborów) i po prostu nie działałoby - nie mógłbyś przecież przechowywać wszystkich możliwych wyborów.

- -

Zmienne po prostu mają sens i jak tylko nauczysz się więcej o JavaScript, używanie ich stanie się dla Ciebie czyms naturalnym.

- -

Kolejna rzecz, która wyróżnia zmienne jest to, że mogą one zawierać prawie wszystko - nie tylko łańcuchy znaków i liczby. Zmienne moga również zawierać skomplikowane dane, a nawet całe funkcje do robienia niesamowitych rzeczy. Nauczysz sie o tym więcej, w ciągu kursu.  

- -
-

Uwaga: Mówimy że zmienne zawieraja wartości. Jest to ważne rozróżnienie. Zmienne nie są wartościami same w sobie; są kontenerami na wartości. Możesz je sobie wyobrazić jako kartonowe pudełka, w których możesz przechowywać rzeczy.

-
- -

- -

Deklarowanie zmiennej

- -

W celu użycia zmiennej, na początku musisz ją stworzyć - a dokładniej nazywa się to deklarowaniem zmiennej. Aby to zrobić, wpisujemy słowo kluczowe  var albo let a następnie nazwę, którą chcesz żeby miała Twoja zmienna:

- -
let myName;
-let myAge;
- -

Tutaj tworzymy dwie zmienne, które nazywają się myName i myAge. Spróbuj wpisać teraz te linie w konsoli Twojej przeglądarki lub w poniższej konsoli (możesz otworzyć otworzyć tą konsolę w oddzielnej karcie lub oknie jeśli wolisz). Nastepnie spróbuj stworzyć zmienną (lub dwie) z wybranymi przez Ciebie nazwami.

- - - -

{{ EmbedLiveSample('Hidden_code', '100%', 300, "", "", "hide-codepen-jsfiddle") }}

- -
-

Uwaga: W JavaScript, wszystkie instrukcje kodu powinny być zakończone średnikiem (;) — Twój kod może działać poprawnie dla pojedynczych linii, ale prawdopodobnie nie będzie, jeśli napiszesz wiele linii kodu razem. Spróbuj wejść w nawyk wpisywania go.

-
- -

Możesz przetestować czy te wartości istnieją teraz w środowisku wykonawczym wpisując po prostu nazwę zmiennej, np.

- -
myName;
-myAge;
- -

Obecnie nie mają one wartości; są pustymi kontenerami. Kiedy wpisujesz nazwy zmiennych, powinieneś otrzymać zwróconą wartość undefined. Natomiast jesli one nie istnieją, dostaniesz informację o błedzie — spróbuj wpisać:

- -
scoobyDoo;
- -
-

Uwaga: Nie pomyl zmiennej, która istnieje, ale nie ma zdefiniowanej wartości, ze zmienną, która wcale nie istnieje — to dwie zupełnie inne rzeczy. Wracając do porównania z pudełkami, które widziałeś wyżej — jeśli zmienna nie istnieje, to znaczy, że nie mamy żadnego kartonowego pudełka, do którego moglibyśmy wrzucić zawartość.
- Natomiast zmienna bez zdefiniowanej zawartości to po prostu puste pudełko. 

-
- -

Inicjalizacja zmiennej

- -

Kiedy już zadeklarujesz zmienną, możesz ją zainicjować nadając wartość. Robi się to, wpisując nazwę zmiennej, a następnie znak równości (=), poprzedzajacy wartość, którą chcesz jej nadać. Na przykład:

- -
myName = 'Chris';
-myAge = 37;
- -

Spróbuj teraz wrócić do konsoli i wpisać te linie. Powinieneś zobaczyć wartość, którą przypisałeś do zmiennej zwróconą w konsoli aby potwierdzić to w obu przypadkach. Znowu, możesz zwrócić wartości zmiennych po prostu wpisujac ich nazwy w konsoli — spróbuj ponownie:

- -
myName;
-myAge;
- -

Możesz zadeklarować i zainicjować zmienną w tym samym czasie, tak jak tu:

- -
let myDog = 'Rover';
- -

Tak prawdopodobnie będziesz robił najcześciej, jako że jest to szybsze niż wykonywanie dwóch czynności w dwóch oddzielnych linijkach.

- -

Róznice między var i let

- -

Możesz się teraz zastanawiać "Po co nam dwa słowa kluczowe do deklarowania zmiennych? Po co nam var i let?".

- -

Powód jest historyczny. Kiedy JavaScript został stworzony, mogliśmy korzystać tylko z var. Takie deklarowanie zmiennych działa, ale niesie ze sobą kilka niechcianych błędów.  Stworzono więc let, który jest obecnym standardem w języku JavaScript (to właśnie z niego powinniśmy korzystać). Główna róznica polega na tym, że let naprawia błędy, które mogliśmy napotkać podczas korzystania z var.

- -

A couple of simple differences are explained below. We won't go into all the differences now, but you'll start to discover them as you learn more about JavaScript (if you really want to read about them now, feel free to check out our let reference page).

- -

For a start, if you write a multiline JavaScript program that declares and initializes a variable, you can actually declare a variable with var after you initialize it and it will still work. For example:

- -
myName = 'Chris';
-
-function logName() {
-  console.log(myName);
-}
-
-logName();
-
-var myName;
- -
-

Note: This won't work when typing individual lines into a JavaScript console, just when running multiple lines of JavaScript in a web document.

-
- -

This works because of hoisting — read var hoisting for more detail on the subject.

- -

Hoisting no longer works with let. If we changed var to let in the above example, it would fail with an error. This is a good thing — declaring a variable after you initialize it makes for confusing, harder to understand code.

- -

Secondly, when you use var, you can declare the same variable as many times as you like, but with let you can't. The following would work:

- -
var myName = 'Chris';
-var myName = 'Bob';
- -

But the following would throw an error on the second line:

- -
let myName = 'Chris';
-let myName = 'Bob';
- -

You'd have to do this instead:

- -
let myName = 'Chris';
-myName = 'Bob';
- -

Again, this is a sensible language decision. There is no reason to redeclare variables — it just makes things more confusing.

- -

For these reasons and more, we recommend that you use let as much as possible in your code, rather than var. There is no reason to use var, unless you need to support old versions of Internet Explorer with your code (it doesn't support let until version 11; the modern Windows Edge browser supports let just fine).

- -
-

Note: We are currently in the process of updating the course to use let rather than var. Bear with us!

-
- -

Updating a variable

- -

Once a variable has been initialized with a value, you can change (or update) that value by simply giving it a different value. Try entering the following lines into your console:

- -
myName = 'Bob';
-myAge = 40;
- -

An aside on variable naming rules

- -

You can call a variable pretty much anything you like, but there are limitations. Generally, you should stick to just using Latin characters (0-9, a-z, A-Z) and the underscore character.

- - - -
-

Note: You can find a fairly complete list of reserved keywords to avoid at Lexical grammar — keywords.

-
- -

Good name examples:

- -
age
-myAge
-init
-initialColor
-finalOutputValue
-audio1
-audio2
- -

Bad name examples:

- -
1
-a
-_12
-myage
-MYAGE
-var
-Document
-skjfndskjfnbdskjfb
-thisisareallylongstupidvariablenameman
- -

Error-prone name examples:

- -
var
-Document
-
- -

Try creating a few more variables now, with the above guidance in mind.

- -

Variable types

- -

There are a few different types of data we can store in variables. In this section we'll describe these in brief, then in future articles, you'll learn about them in more detail.

- -

So far we've looked at the first two, but there are others.

- -

Numbers

- -

You can store numbers in variables, either whole numbers like 30 (also called integers) or decimal numbers like 2.456 (also called floats or floating point numbers). You don't need to declare variable types in JavaScript, unlike some other programming languages. When you give a variable a number value, you don't include quotes:

- -
let myAge = 17;
- -

Strings

- -

Strings are pieces of text. When you give a variable a string value, you need to wrap it in single or double quote marks, otherwise, JavaScript will try to interpret it as another variable name.

- -
let dolphinGoodbye = 'So long and thanks for all the fish';
- -

Booleans

- -

Booleans are true/false values — they can have two values, true or false. These are generally used to test a condition, after which code is run as appropriate. So for example, a simple case would be:

- -
let iAmAlive = true;
- -

Whereas in reality it would be used more like this:

- -
let test = 6 < 3;
- -

This is using the "less than" operator (<) to test whether 6 is less than 3. As you might expect, it will return false, because 6 is not less than 3! You will learn a lot more about such operators later on in the course.

- -

Arrays

- -

An array is a single object that contains multiple values enclosed in square brackets and separated by commas. Try entering the following lines into your console:

- -
let myNameArray = ['Chris', 'Bob', 'Jim'];
-let myNumberArray = [10, 15, 40];
- -

Once these arrays are defined, you can access each value by their location within the array. Try these lines:

- -
myNameArray[0]; // should return 'Chris'
-myNumberArray[2]; // should return 40
- -

The square brackets specify an index value corresponding to the position of the value you want returned. You might have noticed that arrays in JavaScript are zero-indexed: the first element is at index 0.

- -

You'll learn a lot more about arrays in a future article.

- -

Objects

- -

In programming, an object is a structure of code that models a real-life object. You can have a simple object that represents a box and contains information about its width, length, and height, or you could have an object that represents a person, and contains data about their name, height, weight, what language they speak, how to say hello to them, and more.

- -

Try entering the following line into your console:

- -
let dog = { name : 'Spot', breed : 'Dalmatian' };
- -

To retrieve the information stored in the object, you can use the following syntax:

- -
dog.name
- -

We won't be looking at objects any more for now — you can learn more about those in a future module.

- -

Dynamic typing

- -

JavaScript is a "dynamically typed language", which means that, unlike some other languages, you don't need to specify what data type a variable will contain (numbers, strings, arrays, etc).

- -

For example, if you declare a variable and give it a value enclosed in quotes, the browser will treat the variable as a string:

- -
let myString = 'Hello';
- -

It will still be a string, even if it contains numbers, so be careful:

- -
let myNumber = '500'; // oops, this is still a string
-typeof myNumber;
-myNumber = 500; // much better — now this is a number
-typeof myNumber;
- -

Try entering the four lines above into your console one by one, and see what the results are. You'll notice that we are using a special operator called typeof — this returns the data type of the variable you pass into it. The first time it is called, it should return string, as at that point the myNumber variable contains a string, '500'. Have a look and see what it returns the second time you call it.

- -

Constants in JavaScript

- -

Many programming languages have the concept of a constant — a value that once declared can never be changed. There are many reasons why you'd want to do this, from security (if a third party script changed such values it could cause problems) to debugging and code comprehension (it is harder to accidently change values that shouldn't be changed and mess things up).

- -

In the early days of JavaScript, constants didn't exist. In modern JavaScript, we have the keyword const, which lets us store values that can never be changed:

- -
const daysInWeek = 7;
-const hoursInDay = 24;
- -

const works in exactly the same way as let, except that you can't give a const a new value. In the following example, the second line would throw an error:

- -
const daysInWeek = 7;
-daysInWeek = 8;
- -

Summary

- -

By now you should know a reasonable amount about JavaScript variables and how to create them. In the next article, we'll focus on numbers in more detail, looking at how to do basic math in JavaScript.

- -

{{PreviousMenuNext("Learn/JavaScript/First_steps/What_went_wrong", "Learn/JavaScript/First_steps/Maths", "Learn/JavaScript/First_steps")}}

- -

In this module

- - -- cgit v1.2.3-54-g00ecf From b8170f78422f2269dfc9df7760cc1ad51c048c00 Mon Sep 17 00:00:00 2001 From: Florian Merz Date: Thu, 11 Feb 2021 14:49:25 +0100 Subject: unslug pl: modify --- files/pl/_redirects.txt | 3772 +++--- files/pl/_wikihistory.json | 12864 +++++++++---------- files/pl/conflicting/glossary/chrome/index.html | 3 +- .../pl/conflicting/learn/css/css_layout/index.html | 5 +- .../learn/css/first_steps/how_css_works/index.html | 5 +- .../index.html | 6 +- .../getting_started/index.html | 3 +- .../learn/javascript/objects/index.html | 3 +- files/pl/conflicting/mozilla/add-ons/index.html | 3 +- files/pl/conflicting/tools/performance/index.html | 3 +- .../web/api/document/hasfocus/index.html | 3 +- .../web/api/document_object_model/index.html | 3 +- .../index.html | 3 +- .../index.html | 3 +- files/pl/conflicting/web/api/index.html | 3 +- .../conflicting/web/api/node/firstchild/index.html | 3 +- .../web/api/node/namespaceuri/index.html | 3 +- .../index.html | 4 +- files/pl/conflicting/web/css/index.html | 3 +- files/pl/conflicting/web/guide/index.html | 3 +- .../html/global_attributes/spellcheck/index.html | 3 +- files/pl/conflicting/web/html/index.html | 5 +- .../control_flow_and_error_handling/index.html | 5 +- .../index.html | 4 +- .../index.html | 4 +- .../index.html | 4 +- .../guide/details_of_the_object_model/index.html | 5 +- .../guide/expressions_and_operators/index.html | 5 +- .../index.html | 4 +- .../index.html | 4 +- .../index.html | 4 +- .../index.html | 4 +- .../index.html | 4 +- .../web/javascript/guide/functions/index.html | 5 +- .../index.html | 5 +- .../index.html | 5 +- .../index.html | 5 +- .../index.html | 5 +- .../index.html | 5 +- .../index.html | 5 +- .../index.html | 5 +- .../index.html | 5 +- .../javascript/guide/grammar_and_types/index.html | 5 +- .../index.html | 4 +- .../index.html | 4 +- .../index.html | 4 +- .../index.html | 4 +- .../pl/conflicting/web/javascript/guide/index.html | 3 +- .../web/javascript/guide/introduction/index.html | 3 +- .../index.html | 5 +- .../index.html | 3 +- .../reference/global_objects/boolean/index.html | 3 +- .../reference/global_objects/date/index.html | 3 +- .../index.html | 4 +- .../reference/global_objects/error/index.html | 3 +- .../reference/global_objects/number/index.html | 3 +- .../reference/global_objects/object/index.html | 3 +- .../reference/global_objects/rangeerror/index.html | 3 +- .../reference/global_objects/regexp/index.html | 3 +- .../reference/global_objects/string/index.html | 3 +- .../reference/lexical_grammar/index.html | 3 +- .../web/javascript/reference/operators/index.html | 3 +- .../reference/operators/spread_syntax/index.html | 3 +- .../index.html | 4 +- .../index.html | 4 +- .../index.html | 4 +- .../index.html | 4 +- .../index.html | 4 +- .../reference/statements/switch/index.html | 3 +- files/pl/conflicting/web/opensearch/index.html | 3 +- files/pl/games/index.html | 3 +- .../bounce_off_the_walls/index.html | 3 +- .../collision_detection/index.html | 3 +- .../create_the_canvas_and_draw_on_it/index.html | 4 +- .../move_the_ball/index.html | 3 +- files/pl/glossary/abstraction/index.html | 3 +- files/pl/glossary/browser/index.html | 3 +- files/pl/glossary/class/index.html | 3 +- files/pl/glossary/cryptography/index.html | 3 +- files/pl/glossary/dhtml/index.html | 3 +- files/pl/glossary/empty_element/index.html | 3 +- files/pl/glossary/hypertext/index.html | 3 +- files/pl/glossary/json/index.html | 3 +- files/pl/glossary/localization/index.html | 3 +- files/pl/glossary/object/index.html | 3 +- files/pl/glossary/semantics/index.html | 3 +- files/pl/glossary/xhtml/index.html | 3 +- .../how_does_the_internet_work/index.html | 3 +- .../cascade_and_inheritance/index.html | 5 +- files/pl/learn/css/building_blocks/index.html | 5 +- .../learn/css/building_blocks/selectors/index.html | 5 +- .../css/building_blocks/styling_tables/index.html | 5 +- .../building_blocks/values_and_units/index.html | 5 +- .../first_steps/how_css_is_structured/index.html | 5 +- .../learn/css/first_steps/how_css_works/index.html | 5 +- files/pl/learn/css/first_steps/index.html | 5 +- files/pl/learn/css/howto/css_faq/index.html | 3 +- .../learn/css/styling_text/fundamentals/index.html | 5 +- .../css/styling_text/styling_lists/index.html | 5 +- .../how_the_web_works/index.html | 5 +- .../manipulating_documents/index.html | 5 +- .../first_steps/a_first_splash/index.html | 3 +- files/pl/learn/javascript/first_steps/index.html | 3 +- .../learn/javascript/first_steps/math/index.html | 3 +- .../javascript/first_steps/variables/index.html | 3 +- .../first_steps/what_is_javascript/index.html | 3 +- .../first_steps/what_went_wrong/index.html | 3 +- files/pl/learn/javascript/objects/index.html | 3 +- .../configuring_server_mime_types/index.html | 3 +- .../tutorial_local_library_website/index.html | 3 +- files/pl/mdn/at_ten/index.html | 3 +- .../mdn/guidelines/writing_style_guide/index.html | 3 +- files/pl/mdn/tools/index.html | 3 +- files/pl/mdn/yari/index.html | 3 +- .../your_first_webextension/index.html | 3 +- .../index.html | 3 +- .../1.5/what_s_new_in_1.5_alpha/index.html | 3 +- .../firefox/releases/2/security_changes/index.html | 3 +- .../releases/2/updating_extensions/index.html | 3 +- .../firefox/releases/3/dom_improvements/index.html | 3 +- .../releases/3/notable_bugs_fixed/index.html | 3 +- .../firefox/releases/3/svg_improvements/index.html | 3 +- .../3/updating_web_applications/index.html | 3 +- .../3/xul_improvements_in_firefox_3/index.html | 3 +- .../index.html" | 3 +- .../index.html" | 3 +- files/pl/orphaned/dom_i_javascript/index.html | 3 +- .../index.html" | 3 +- .../firefox_-_potrzeba_wolno\305\233ci/index.html" | 3 +- .../firefox_3_dla_programist\303\263w/index.html" | 3 +- .../lista_komponent\303\263w_xpcom/index.html" | 3 +- .../howto/create_an_mdn_account/index.html | 3 +- .../howto/do_a_technical_review/index.html | 3 +- .../howto/do_an_editorial_review/index.html | 5 +- .../howto/set_the_summary_for_a_page/index.html | 3 +- .../howto/tag_javascript_pages/index.html | 3 +- .../orphaned/modu\305\202y_javascript/index.html" | 3 +- .../getting_started_with_web-ext/index.html | 3 +- .../pl/orphaned/narz\304\231dzia_clone/index.html" | 3 +- files/pl/orphaned/nsiinputstream/index.html | 7 +- files/pl/orphaned/nsixulappinfo/index.html | 7 +- .../index.html" | 3 +- files/pl/orphaned/programowanie_mozilli/index.html | 3 +- .../index.html" | 3 +- .../index.html" | 4 +- .../web/api/stylesheet/ownerrule/index.html | 3 +- .../orphaned/web/html/element/comment/index.html | 5 +- .../index.html" | 2 + .../instrukcje_manipulacji_obiektem/index.html" | 4 +- .../index.html" | 4 +- .../instrukcja_throw/index.html" | 4 +- .../instrukcja_try...catch/index.html" | 4 +- .../instrukcja_break/index.html" | 4 +- .../instrukcja_continue/index.html" | 4 +- .../instrukcja_do_...while/index.html" | 4 +- .../instrukcja_for/index.html" | 4 +- .../instrukcja_label/index.html" | 4 +- .../instrukcja_while/index.html" | 4 +- .../o_tym_przewodniku/index.html" | 4 +- .../obiekt_array/index.html" | 4 +- .../obiekt_boolean/index.html" | 4 +- .../obiekty_predefiniowane/obiekt_date/index.html" | 4 +- .../obiekt_function/index.html" | 4 +- .../obiekty_predefiniowane/obiekt_math/index.html" | 4 +- .../obiekt_number/index.html" | 4 +- .../obiekt_regexp/index.html" | 4 +- .../obiekt_string/index.html" | 4 +- .../operatory/operatory_przypisania/index.html" | 4 +- .../podgl\304\205d_klas_liveconnect/index.html" | 4 +- .../praca_z_przyk\305\202adem/index.html" | 4 +- .../tworzenie_hierarchii/index.html" | 4 +- .../dodawanie_w\305\202asno\305\233ci/index.html" | 4 +- .../index.html" | 4 +- .../w\305\202asno\305\233ci_obiektu/index.html" | 4 +- .../index.html" | 4 +- .../praca_z_zamkni\304\231ciami/index.html" | 2 + .../definiowanie_metod/index.html" | 4 +- .../index.html" | 4 +- .../index.html" | 4 +- .../tworzenie_nowych_obiekt\303\263w/index.html" | 4 +- .../usuwanie_w\305\202asno\305\233ci/index.html" | 4 +- .../u\305\274ywanie_inicjacji_obiektu/index.html" | 4 +- .../index.html" | 4 +- .../index.html" | 4 +- .../index.html" | 4 +- .../index.html" | 4 +- .../zastosowanie_obiektu_arguments/index.html" | 4 +- .../web/javascript/na_pocz\304\205tek/index.html" | 3 +- .../global_objects/array/prototype/index.html | 3 +- .../konwencje_formatowania_tekstu/index.html | 4 +- .../information_security_basics/index.html | 3 +- .../index.html" | 3 +- files/pl/tools/about_colon_debugging/index.html | 7 +- files/pl/tools/browser_toolbox/index.html | 3 +- files/pl/tools/debugger/how_to/index.html | 3 +- files/pl/tools/debugger/index.html | 3 +- files/pl/tools/index.html | 3 +- files/pl/tools/page_inspector/how_to/index.html | 3 +- .../how_to/open_the_inspector/index.html | 3 +- files/pl/tools/page_inspector/index.html | 3 +- files/pl/tools/page_inspector/ui_tour/index.html | 3 +- files/pl/tools/performance/flame_chart/index.html | 3 +- files/pl/tools/performance/index.html | 3 +- files/pl/tools/storage_inspector/index.html | 3 +- files/pl/tools/tools_toolbox/index.html | 3 +- files/pl/tools/validators/index.html | 3 +- files/pl/tools/view_source/index.html | 3 +- .../index.html | 3 +- .../aria/web_applications_and_aria_faq/index.html | 3 +- files/pl/web/accessibility/index.html | 3 +- .../index.html | 3 +- .../createdynamicscompressor/index.html | 3 +- files/pl/web/api/canvas_api/index.html | 3 +- .../canvas_api/tutorial/drawing_shapes/index.html | 3 +- .../canvas_api/tutorial/drawing_text/index.html | 5 +- .../tutorial/optimizing_canvas/index.html | 3 +- files/pl/web/api/cssrulelist/index.html | 3 +- .../pl/web/api/cssstylesheet/deleterule/index.html | 3 +- files/pl/web/api/cssstylesheet/index.html | 3 +- .../pl/web/api/cssstylesheet/insertrule/index.html | 3 +- .../api/document_object_model/examples/index.html | 3 +- files/pl/web/api/document_object_model/index.html | 3 +- .../document_object_model/introduction/index.html | 3 +- .../documentorshadowroot/activeelement/index.html | 3 +- .../documentorshadowroot/stylesheets/index.html | 3 +- .../web/api/elementcssinlinestyle/style/index.html | 3 +- .../api/eventtarget/addeventlistener/index.html | 3 +- .../web/api/eventtarget/dispatchevent/index.html | 3 +- .../web/api/globaleventhandlers/onclick/index.html | 3 +- .../api/globaleventhandlers/onkeydown/index.html | 3 +- .../api/globaleventhandlers/onkeypress/index.html | 3 +- .../web/api/globaleventhandlers/onkeyup/index.html | 3 +- .../web/api/globaleventhandlers/onload/index.html | 3 +- .../api/globaleventhandlers/onmousedown/index.html | 3 +- .../api/globaleventhandlers/onmousemove/index.html | 3 +- files/pl/web/api/htmlelement/click/index.html | 3 +- files/pl/web/api/htmlelement/dir/index.html | 3 +- files/pl/web/api/htmlelement/lang/index.html | 3 +- .../pl/web/api/htmlelement/offsetheight/index.html | 3 +- files/pl/web/api/htmlelement/offsetleft/index.html | 3 +- .../pl/web/api/htmlelement/offsetparent/index.html | 3 +- .../pl/web/api/htmlelement/offsetwidth/index.html | 3 +- .../web/api/htmlorforeignelement/blur/index.html | 3 +- .../api/htmlorforeignelement/dataset/index.html | 3 +- .../web/api/htmlorforeignelement/focus/index.html | 3 +- .../api/htmlorforeignelement/tabindex/index.html | 3 +- files/pl/web/api/keyboardevent/charcode/index.html | 3 +- files/pl/web/api/keyboardevent/keycode/index.html | 3 +- files/pl/web/api/mouseevent/altkey/index.html | 3 +- files/pl/web/api/mouseevent/button/index.html | 3 +- files/pl/web/api/mouseevent/clientx/index.html | 3 +- files/pl/web/api/mouseevent/clienty/index.html | 3 +- files/pl/web/api/mouseevent/ctrlkey/index.html | 3 +- .../web/api/mouseevent/initmouseevent/index.html | 3 +- files/pl/web/api/mouseevent/metakey/index.html | 3 +- .../pl/web/api/mouseevent/relatedtarget/index.html | 3 +- files/pl/web/api/mouseevent/screenx/index.html | 3 +- files/pl/web/api/mouseevent/screeny/index.html | 3 +- files/pl/web/api/mouseevent/shiftkey/index.html | 3 +- .../pl/web/api/navigatorid/appcodename/index.html | 3 +- files/pl/web/api/navigatorid/appname/index.html | 3 +- files/pl/web/api/navigatorid/appversion/index.html | 3 +- files/pl/web/api/navigatorid/platform/index.html | 3 +- files/pl/web/api/navigatorid/product/index.html | 3 +- .../web/api/navigatorlanguage/language/index.html | 3 +- files/pl/web/api/navigatoronline/online/index.html | 3 +- .../online_and_offline_events/index.html | 3 +- .../api/navigatorplugins/javaenabled/index.html | 3 +- .../web/api/navigatorplugins/mimetypes/index.html | 3 +- .../pl/web/api/navigatorplugins/plugins/index.html | 3 +- files/pl/web/api/node/appendchild/index.html | 3 +- files/pl/web/api/node/childnodes/index.html | 3 +- files/pl/web/api/node/clonenode/index.html | 3 +- files/pl/web/api/node/firstchild/index.html | 3 +- files/pl/web/api/node/haschildnodes/index.html | 3 +- files/pl/web/api/node/insertbefore/index.html | 3 +- files/pl/web/api/node/lastchild/index.html | 3 +- files/pl/web/api/node/localname/index.html | 3 +- files/pl/web/api/node/namespaceuri/index.html | 3 +- files/pl/web/api/node/nextsibling/index.html | 3 +- files/pl/web/api/node/nodename/index.html | 3 +- files/pl/web/api/node/nodetype/index.html | 3 +- files/pl/web/api/node/nodevalue/index.html | 3 +- files/pl/web/api/node/normalize/index.html | 3 +- files/pl/web/api/node/ownerdocument/index.html | 3 +- files/pl/web/api/node/parentnode/index.html | 3 +- files/pl/web/api/node/prefix/index.html | 3 +- files/pl/web/api/node/previoussibling/index.html | 3 +- files/pl/web/api/node/removechild/index.html | 3 +- files/pl/web/api/node/replacechild/index.html | 3 +- files/pl/web/api/node/textcontent/index.html | 3 +- files/pl/web/api/nodelist/length/index.html | 3 +- files/pl/web/api/notification/index.html | 3 +- files/pl/web/api/touch_events/index.html | 3 +- files/pl/web/api/uievent/cancelbubble/index.html | 3 +- files/pl/web/api/uievent/inituievent/index.html | 3 +- files/pl/web/api/uievent/ischar/index.html | 3 +- files/pl/web/api/uievent/layerx/index.html | 3 +- files/pl/web/api/uievent/layery/index.html | 3 +- files/pl/web/api/uievent/pagex/index.html | 3 +- files/pl/web/api/uievent/pagey/index.html | 3 +- files/pl/web/api/uievent/view/index.html | 3 +- files/pl/web/api/web_storage_api/index.html | 3 +- files/pl/web/api/websockets_api/index.html | 3 +- .../api/windoworworkerglobalscope/atob/index.html | 3 +- .../api/windoworworkerglobalscope/btoa/index.html | 3 +- .../clearinterval/index.html | 3 +- .../cleartimeout/index.html | 3 +- .../web/api/windoworworkerglobalscope/index.html | 3 +- .../setinterval/index.html | 3 +- .../settimeout/index.html | 3 +- files/pl/web/api/xmlhttprequest/index.html | 3 +- .../xmlhttprequest/using_xmlhttprequest/index.html | 3 +- files/pl/web/css/_colon_-moz-first-node/index.html | 7 +- files/pl/web/css/_doublecolon_after/index.html | 7 +- files/pl/web/css/_doublecolon_before/index.html | 7 +- .../web/css/_doublecolon_first-letter/index.html | 7 +- files/pl/web/css/box-align/index.html | 3 +- files/pl/web/css/box-flex/index.html | 3 +- files/pl/web/css/box-orient/index.html | 3 +- files/pl/web/css/box-pack/index.html | 3 +- files/pl/web/css/class_selectors/index.html | 3 +- .../index.html | 3 +- files/pl/web/css/css_color/index.html | 3 +- .../css/css_colors/color_picker_tool/index.html | 3 +- .../using_multi-column_layouts/index.html | 3 +- .../index.html | 5 +- .../using_css_counters/index.html | 3 +- .../index.html | 7 +- files/pl/web/css/inheritance/index.html | 5 +- files/pl/web/css/initial_value/index.html | 5 +- .../media_queries/testing_media_queries/index.html | 3 +- files/pl/web/css/outline-color/index.html | 7 +- .../index.html | 7 +- files/pl/web/css/reference/index.html | 3 +- files/pl/web/css/shorthand_properties/index.html | 3 +- files/pl/web/css/type_selectors/index.html | 5 +- files/pl/web/css/universal_selectors/index.html | 3 +- files/pl/web/css/webkit_extensions/index.html | 3 +- files/pl/web/guide/ajax/getting_started/index.html | 3 +- .../creating_and_triggering_events/index.html | 3 +- files/pl/web/guide/html/html5/index.html | 3 +- files/pl/web/html/block-level_elements/index.html | 5 +- .../html/global_attributes/spellcheck/index.html | 3 +- files/pl/web/html/inline_elements/index.html | 7 +- .../html/quirks_mode_and_standards_mode/index.html | 3 +- .../web/http/basics_of_http/mime_types/index.html | 3 +- files/pl/web/http/cookies/index.html | 3 +- files/pl/web/http/headers/date/index.html | 3 +- files/pl/web/http/overview/index.html | 3 +- .../a_re-introduction_to_javascript/index.html | 3 +- .../pl/web/javascript/about_javascript/index.html | 3 +- files/pl/web/javascript/closures/index.html | 3 +- files/pl/web/javascript/data_structures/index.html | 3 +- .../guide/details_of_the_object_model/index.html | 5 +- .../guide/expressions_and_operators/index.html | 5 +- files/pl/web/javascript/guide/functions/index.html | 3 +- .../javascript/guide/grammar_and_types/index.html | 3 +- .../guide/regular_expressions/index.html | 7 +- .../guide/working_with_objects/index.html | 5 +- .../inheritance_and_the_prototype_chain/index.html | 3 +- .../web/javascript/language_resources/index.html | 3 +- files/pl/web/javascript/reference/about/index.html | 3 +- .../reference/classes/constructor/index.html | 3 +- .../deprecated_and_obsolete_features/index.html | 3 +- .../missing_colon_after_property_id/index.html | 3 +- .../functions/arguments/callee/index.html | 3 +- .../reference/functions/arguments/index.html | 3 +- .../functions/arguments/length/index.html | 3 +- .../reference/functions/arrow_functions/index.html | 3 +- .../functions/default_parameters/index.html | 3 +- .../global_objects/array/concat/index.html | 3 +- .../global_objects/array/copywithin/index.html | 3 +- .../global_objects/array/entries/index.html | 3 +- .../global_objects/array/every/index.html | 3 +- .../reference/global_objects/array/fill/index.html | 3 +- .../global_objects/array/filter/index.html | 3 +- .../reference/global_objects/array/find/index.html | 3 +- .../global_objects/array/findindex/index.html | 3 +- .../reference/global_objects/array/flat/index.html | 3 +- .../global_objects/array/foreach/index.html | 3 +- .../reference/global_objects/array/from/index.html | 3 +- .../global_objects/array/includes/index.html | 3 +- .../reference/global_objects/array/index.html | 3 +- .../global_objects/array/indexof/index.html | 3 +- .../global_objects/array/isarray/index.html | 3 +- .../reference/global_objects/array/join/index.html | 3 +- .../reference/global_objects/array/keys/index.html | 3 +- .../global_objects/array/lastindexof/index.html | 3 +- .../global_objects/array/length/index.html | 3 +- .../reference/global_objects/array/map/index.html | 3 +- .../reference/global_objects/array/of/index.html | 3 +- .../reference/global_objects/array/pop/index.html | 3 +- .../reference/global_objects/array/push/index.html | 3 +- .../global_objects/array/reduce/index.html | 3 +- .../global_objects/array/reduceright/index.html | 3 +- .../global_objects/array/reverse/index.html | 3 +- .../global_objects/array/shift/index.html | 3 +- .../global_objects/array/slice/index.html | 3 +- .../reference/global_objects/array/some/index.html | 3 +- .../reference/global_objects/array/sort/index.html | 3 +- .../global_objects/array/splice/index.html | 3 +- .../global_objects/array/tolocalestring/index.html | 3 +- .../global_objects/array/tosource/index.html | 3 +- .../global_objects/array/tostring/index.html | 3 +- .../global_objects/array/unshift/index.html | 3 +- .../global_objects/array/values/index.html | 3 +- .../global_objects/arraybuffer/index.html | 3 +- .../global_objects/bigint/asintn/index.html | 3 +- .../global_objects/bigint/asuintn/index.html | 3 +- .../reference/global_objects/bigint/index.html | 3 +- .../global_objects/bigint/tostring/index.html | 3 +- .../global_objects/bigint/valueof/index.html | 3 +- .../reference/global_objects/boolean/index.html | 3 +- .../global_objects/boolean/tosource/index.html | 3 +- .../global_objects/boolean/tostring/index.html | 3 +- .../global_objects/boolean/valueof/index.html | 3 +- .../reference/global_objects/dataview/index.html | 3 +- .../global_objects/date/getdate/index.html | 3 +- .../global_objects/date/getday/index.html | 3 +- .../global_objects/date/getfullyear/index.html | 3 +- .../global_objects/date/gethours/index.html | 3 +- .../global_objects/date/getmilliseconds/index.html | 3 +- .../global_objects/date/getminutes/index.html | 3 +- .../global_objects/date/getmonth/index.html | 3 +- .../global_objects/date/getseconds/index.html | 3 +- .../global_objects/date/gettime/index.html | 3 +- .../date/gettimezoneoffset/index.html | 3 +- .../global_objects/date/getutcdate/index.html | 3 +- .../global_objects/date/getutcday/index.html | 3 +- .../global_objects/date/getutcfullyear/index.html | 3 +- .../global_objects/date/getutchours/index.html | 3 +- .../date/getutcmilliseconds/index.html | 3 +- .../global_objects/date/getutcminutes/index.html | 3 +- .../global_objects/date/getutcmonth/index.html | 3 +- .../global_objects/date/getutcseconds/index.html | 3 +- .../global_objects/date/getyear/index.html | 3 +- .../reference/global_objects/date/index.html | 3 +- .../reference/global_objects/date/now/index.html | 3 +- .../reference/global_objects/date/parse/index.html | 3 +- .../global_objects/date/setdate/index.html | 3 +- .../global_objects/date/setfullyear/index.html | 3 +- .../global_objects/date/sethours/index.html | 3 +- .../global_objects/date/setmilliseconds/index.html | 3 +- .../global_objects/date/setminutes/index.html | 3 +- .../global_objects/date/setmonth/index.html | 3 +- .../global_objects/date/setseconds/index.html | 3 +- .../global_objects/date/settime/index.html | 3 +- .../global_objects/date/setutcdate/index.html | 3 +- .../global_objects/date/setutcfullyear/index.html | 3 +- .../global_objects/date/setutchours/index.html | 3 +- .../date/setutcmilliseconds/index.html | 3 +- .../global_objects/date/setutcminutes/index.html | 3 +- .../global_objects/date/setutcmonth/index.html | 3 +- .../global_objects/date/setutcseconds/index.html | 3 +- .../global_objects/date/setyear/index.html | 3 +- .../global_objects/date/togmtstring/index.html | 3 +- .../global_objects/date/tojson/index.html | 3 +- .../date/tolocaledatestring/index.html | 3 +- .../global_objects/date/tolocalestring/index.html | 3 +- .../date/tolocaletimestring/index.html | 3 +- .../global_objects/date/tosource/index.html | 3 +- .../global_objects/date/tostring/index.html | 3 +- .../global_objects/date/toutcstring/index.html | 3 +- .../reference/global_objects/date/utc/index.html | 3 +- .../global_objects/date/valueof/index.html | 3 +- .../reference/global_objects/decodeuri/index.html | 3 +- .../global_objects/decodeuricomponent/index.html | 3 +- .../reference/global_objects/encodeuri/index.html | 3 +- .../global_objects/encodeuricomponent/index.html | 3 +- .../global_objects/error/columnnumber/index.html | 3 +- .../global_objects/error/filename/index.html | 3 +- .../reference/global_objects/error/index.html | 3 +- .../global_objects/error/linenumber/index.html | 3 +- .../global_objects/error/message/index.html | 3 +- .../reference/global_objects/error/name/index.html | 3 +- .../global_objects/error/stack/index.html | 3 +- .../global_objects/error/tosource/index.html | 3 +- .../global_objects/error/tostring/index.html | 3 +- .../reference/global_objects/escape/index.html | 3 +- .../reference/global_objects/evalerror/index.html | 3 +- .../global_objects/function/apply/index.html | 3 +- .../global_objects/function/arguments/index.html | 3 +- .../global_objects/function/bind/index.html | 3 +- .../global_objects/function/caller/index.html | 3 +- .../global_objects/function/displayname/index.html | 3 +- .../reference/global_objects/function/index.html | 3 +- .../global_objects/function/length/index.html | 3 +- .../global_objects/function/tostring/index.html | 3 +- .../reference/global_objects/generator/index.html | 3 +- .../javascript/reference/global_objects/index.html | 3 +- .../reference/global_objects/infinity/index.html | 3 +- .../reference/global_objects/isfinite/index.html | 3 +- .../reference/global_objects/isnan/index.html | 3 +- .../reference/global_objects/json/index.html | 3 +- .../reference/global_objects/map/clear/index.html | 3 +- .../reference/global_objects/map/delete/index.html | 3 +- .../global_objects/map/entries/index.html | 3 +- .../global_objects/map/foreach/index.html | 3 +- .../reference/global_objects/map/get/index.html | 3 +- .../reference/global_objects/map/has/index.html | 3 +- .../reference/global_objects/map/index.html | 3 +- .../reference/global_objects/map/keys/index.html | 3 +- .../reference/global_objects/map/set/index.html | 3 +- .../reference/global_objects/map/size/index.html | 3 +- .../reference/global_objects/map/values/index.html | 3 +- .../reference/global_objects/math/abs/index.html | 3 +- .../reference/global_objects/math/acos/index.html | 3 +- .../reference/global_objects/math/asin/index.html | 3 +- .../reference/global_objects/math/atan/index.html | 3 +- .../reference/global_objects/math/atan2/index.html | 3 +- .../reference/global_objects/math/ceil/index.html | 3 +- .../reference/global_objects/math/cos/index.html | 3 +- .../reference/global_objects/math/e/index.html | 3 +- .../reference/global_objects/math/exp/index.html | 3 +- .../reference/global_objects/math/floor/index.html | 3 +- .../reference/global_objects/math/index.html | 3 +- .../reference/global_objects/math/ln10/index.html | 3 +- .../reference/global_objects/math/ln2/index.html | 3 +- .../reference/global_objects/math/log/index.html | 3 +- .../global_objects/math/log10e/index.html | 3 +- .../reference/global_objects/math/log2e/index.html | 3 +- .../reference/global_objects/math/max/index.html | 3 +- .../reference/global_objects/math/min/index.html | 3 +- .../reference/global_objects/math/pi/index.html | 3 +- .../reference/global_objects/math/pow/index.html | 3 +- .../global_objects/math/random/index.html | 3 +- .../reference/global_objects/math/round/index.html | 3 +- .../reference/global_objects/math/sign/index.html | 3 +- .../reference/global_objects/math/sin/index.html | 3 +- .../reference/global_objects/math/sqrt/index.html | 3 +- .../global_objects/math/sqrt1_2/index.html | 3 +- .../reference/global_objects/math/sqrt2/index.html | 3 +- .../reference/global_objects/math/tan/index.html | 3 +- .../reference/global_objects/nan/index.html | 3 +- .../reference/global_objects/null/index.html | 3 +- .../global_objects/number/epsilon/index.html | 3 +- .../reference/global_objects/number/index.html | 3 +- .../global_objects/number/isinteger/index.html | 3 +- .../global_objects/number/isnan/index.html | 3 +- .../global_objects/number/max_value/index.html | 3 +- .../global_objects/number/min_value/index.html | 3 +- .../reference/global_objects/number/nan/index.html | 3 +- .../number/negative_infinity/index.html | 3 +- .../number/positive_infinity/index.html | 3 +- .../global_objects/number/toexponential/index.html | 3 +- .../global_objects/number/tofixed/index.html | 3 +- .../number/tolocalestring/index.html | 3 +- .../global_objects/number/toprecision/index.html | 3 +- .../global_objects/number/tostring/index.html | 3 +- .../global_objects/object/assign/index.html | 3 +- .../global_objects/object/constructor/index.html | 3 +- .../global_objects/object/freeze/index.html | 3 +- .../object/getownpropertydescriptor/index.html | 3 +- .../object/hasownproperty/index.html | 3 +- .../reference/global_objects/object/index.html | 3 +- .../global_objects/object/proto/index.html | 3 +- .../global_objects/object/seal/index.html | 3 +- .../object/tolocalestring/index.html | 3 +- .../global_objects/object/tosource/index.html | 3 +- .../global_objects/object/tostring/index.html | 3 +- .../global_objects/object/valueof/index.html | 3 +- .../reference/global_objects/parsefloat/index.html | 3 +- .../reference/global_objects/parseint/index.html | 3 +- .../reference/global_objects/promise/index.html | 3 +- .../reference/global_objects/proxy/index.html | 3 +- .../global_objects/proxy/proxy/apply/index.html | 3 +- .../global_objects/proxy/proxy/index.html | 3 +- .../reference/global_objects/rangeerror/index.html | 3 +- .../global_objects/regexp/exec/index.html | 3 +- .../global_objects/regexp/global/index.html | 3 +- .../global_objects/regexp/ignorecase/index.html | 3 +- .../reference/global_objects/regexp/index.html | 3 +- .../global_objects/regexp/lastmatch/index.html | 3 +- .../global_objects/regexp/source/index.html | 3 +- .../global_objects/regexp/test/index.html | 3 +- .../global_objects/regexp/tosource/index.html | 3 +- .../global_objects/regexp/tostring/index.html | 3 +- .../reference/global_objects/set/add/index.html | 3 +- .../reference/global_objects/set/clear/index.html | 3 +- .../reference/global_objects/set/delete/index.html | 3 +- .../reference/global_objects/set/index.html | 3 +- .../global_objects/string/anchor/index.html | 3 +- .../reference/global_objects/string/big/index.html | 3 +- .../global_objects/string/blink/index.html | 3 +- .../global_objects/string/bold/index.html | 3 +- .../global_objects/string/charat/index.html | 3 +- .../global_objects/string/charcodeat/index.html | 3 +- .../global_objects/string/concat/index.html | 3 +- .../global_objects/string/fontcolor/index.html | 3 +- .../global_objects/string/fontsize/index.html | 3 +- .../global_objects/string/fromcharcode/index.html | 3 +- .../global_objects/string/fromcodepoint/index.html | 3 +- .../reference/global_objects/string/index.html | 3 +- .../global_objects/string/italics/index.html | 3 +- .../global_objects/string/link/index.html | 3 +- .../global_objects/string/repeat/index.html | 3 +- .../global_objects/string/search/index.html | 3 +- .../global_objects/string/slice/index.html | 3 +- .../global_objects/string/small/index.html | 3 +- .../global_objects/string/strike/index.html | 3 +- .../reference/global_objects/string/sub/index.html | 3 +- .../global_objects/string/substr/index.html | 3 +- .../global_objects/string/substring/index.html | 3 +- .../reference/global_objects/string/sup/index.html | 3 +- .../global_objects/string/tolowercase/index.html | 3 +- .../global_objects/string/tosource/index.html | 3 +- .../global_objects/string/tostring/index.html | 3 +- .../global_objects/string/touppercase/index.html | 3 +- .../global_objects/string/valueof/index.html | 3 +- .../reference/global_objects/symbol/index.html | 3 +- .../global_objects/syntaxerror/index.html | 3 +- .../global_objects/uint16array/index.html | 3 +- .../reference/global_objects/undefined/index.html | 3 +- files/pl/web/javascript/reference/index.html | 3 +- .../reference/lexical_grammar/index.html | 3 +- .../reference/operators/comma_operator/index.html | 3 +- .../operators/conditional_operator/index.html | 3 +- .../reference/operators/delete/index.html | 3 +- .../operators/destructuring_assignment/index.html | 3 +- .../reference/operators/function/index.html | 3 +- .../reference/operators/function_star_/index.html | 3 +- .../reference/operators/grouping/index.html | 3 +- .../javascript/reference/operators/in/index.html | 3 +- .../web/javascript/reference/operators/index.html | 3 +- .../reference/operators/instanceof/index.html | 3 +- .../reference/operators/new.target/index.html | 3 +- .../javascript/reference/operators/new/index.html | 3 +- .../nullish_coalescing_operator/index.html | 3 +- .../operators/object_initializer/index.html | 3 +- .../operators/operator_precedence/index.html | 3 +- .../operators/pipeline_operator/index.html | 3 +- .../operators/property_accessors/index.html | 3 +- .../reference/operators/spread_syntax/index.html | 3 +- .../reference/operators/super/index.html | 3 +- .../javascript/reference/operators/this/index.html | 3 +- .../reference/operators/typeof/index.html | 3 +- .../javascript/reference/operators/void/index.html | 3 +- .../reference/operators/yield/index.html | 3 +- .../reference/operators/yield_star_/index.html | 3 +- .../reference/statements/async_function/index.html | 3 +- .../reference/statements/block/index.html | 3 +- .../reference/statements/break/index.html | 3 +- .../reference/statements/class/index.html | 3 +- .../reference/statements/const/index.html | 3 +- .../reference/statements/continue/index.html | 3 +- .../reference/statements/debugger/index.html | 3 +- .../reference/statements/do...while/index.html | 3 +- .../reference/statements/empty/index.html | 3 +- .../reference/statements/export/index.html | 3 +- .../reference/statements/for...in/index.html | 3 +- .../javascript/reference/statements/for/index.html | 3 +- .../reference/statements/function/index.html | 3 +- .../reference/statements/function_star_/index.html | 3 +- .../reference/statements/if...else/index.html | 3 +- .../reference/statements/import/index.html | 3 +- .../web/javascript/reference/statements/index.html | 3 +- .../reference/statements/label/index.html | 3 +- .../reference/statements/return/index.html | 3 +- .../reference/statements/switch/index.html | 3 +- .../reference/statements/throw/index.html | 3 +- .../javascript/reference/statements/var/index.html | 3 +- .../reference/statements/while/index.html | 3 +- files/pl/web/opensearch/index.html | 3 +- .../responsive/media_types/index.html | 5 +- .../security/certificate_transparency/index.html | 3 +- files/pl/web/security/index.html | 3 +- .../pl/web/security/same-origin_policy/index.html | 3 +- .../web/security/subresource_integrity/index.html | 3 +- files/pl/web/svg/element/circle/index.html | 3 +- files/pl/web/svg/other_resources/index.html | 3 +- files/pl/web/svg/tutorial/index.html | 5 +- files/pl/web/svg/tutorial/svg_and_css/index.html | 5 +- .../tutorial/svg_in_html_introduction/index.html | 3 +- files/pl/web/xml/xml_introduction/index.html | 3 +- files/pl/web/xpath/axes/index.html | 5 +- files/pl/web/xpath/functions/boolean/index.html | 5 +- files/pl/web/xpath/functions/ceiling/index.html | 5 +- files/pl/web/xpath/functions/concat/index.html | 5 +- files/pl/web/xpath/functions/contains/index.html | 5 +- files/pl/web/xpath/functions/count/index.html | 5 +- files/pl/web/xpath/functions/current/index.html | 5 +- files/pl/web/xpath/functions/document/index.html | 5 +- .../xpath/functions/element-available/index.html | 5 +- files/pl/web/xpath/functions/false/index.html | 5 +- files/pl/web/xpath/functions/floor/index.html | 5 +- .../web/xpath/functions/format-number/index.html | 5 +- .../xpath/functions/function-available/index.html | 5 +- .../pl/web/xpath/functions/generate-id/index.html | 5 +- files/pl/web/xpath/functions/id/index.html | 5 +- files/pl/web/xpath/functions/index.html | 5 +- files/pl/web/xpath/functions/key/index.html | 5 +- files/pl/web/xpath/functions/lang/index.html | 5 +- files/pl/web/xpath/functions/last/index.html | 5 +- files/pl/web/xpath/functions/local-name/index.html | 5 +- files/pl/web/xpath/functions/name/index.html | 5 +- .../web/xpath/functions/namespace-uri/index.html | 5 +- .../web/xpath/functions/normalize-space/index.html | 5 +- files/pl/web/xpath/functions/not/index.html | 5 +- files/pl/web/xpath/functions/number/index.html | 5 +- files/pl/web/xpath/functions/position/index.html | 5 +- files/pl/web/xpath/functions/round/index.html | 5 +- .../pl/web/xpath/functions/starts-with/index.html | 5 +- .../web/xpath/functions/string-length/index.html | 5 +- files/pl/web/xpath/functions/string/index.html | 5 +- .../web/xpath/functions/substring-after/index.html | 5 +- .../xpath/functions/substring-before/index.html | 5 +- files/pl/web/xpath/functions/substring/index.html | 5 +- files/pl/web/xpath/functions/sum/index.html | 5 +- .../web/xpath/functions/system-property/index.html | 5 +- files/pl/web/xpath/functions/translate/index.html | 5 +- files/pl/web/xpath/functions/true/index.html | 5 +- .../xpath/functions/unparsed-entity-url/index.html | 5 +- files/pl/web/xslt/element/apply-imports/index.html | 5 +- .../pl/web/xslt/element/apply-templates/index.html | 5 +- files/pl/web/xslt/element/attribute-set/index.html | 5 +- files/pl/web/xslt/element/attribute/index.html | 5 +- files/pl/web/xslt/element/call-template/index.html | 5 +- files/pl/web/xslt/element/choose/index.html | 5 +- files/pl/web/xslt/element/comment/index.html | 5 +- files/pl/web/xslt/element/copy-of/index.html | 5 +- files/pl/web/xslt/element/copy/index.html | 5 +- .../pl/web/xslt/element/decimal-format/index.html | 5 +- files/pl/web/xslt/element/fallback/index.html | 5 +- files/pl/web/xslt/element/for-each/index.html | 5 +- files/pl/web/xslt/element/if/index.html | 5 +- files/pl/web/xslt/element/import/index.html | 5 +- files/pl/web/xslt/element/include/index.html | 5 +- files/pl/web/xslt/element/key/index.html | 5 +- files/pl/web/xslt/element/message/index.html | 5 +- .../pl/web/xslt/element/namespace-alias/index.html | 5 +- files/pl/web/xslt/element/number/index.html | 5 +- files/pl/web/xslt/element/otherwise/index.html | 5 +- files/pl/web/xslt/element/output/index.html | 5 +- files/pl/web/xslt/element/param/index.html | 5 +- .../pl/web/xslt/element/preserve-space/index.html | 5 +- .../xslt/element/processing-instruction/index.html | 5 +- files/pl/web/xslt/element/sort/index.html | 5 +- files/pl/web/xslt/element/strip-space/index.html | 5 +- files/pl/web/xslt/element/stylesheet/index.html | 5 +- files/pl/web/xslt/element/template/index.html | 5 +- files/pl/web/xslt/element/text/index.html | 5 +- files/pl/web/xslt/element/transform/index.html | 5 +- files/pl/web/xslt/element/value-of/index.html | 5 +- files/pl/web/xslt/element/variable/index.html | 5 +- files/pl/web/xslt/element/when/index.html | 5 +- files/pl/web/xslt/element/with-param/index.html | 5 +- .../for_further_reading/index.html | 3 +- .../web/xslt/transforming_xml_with_xslt/index.html | 3 +- .../the_netscape_xslt_xpath_reference/index.html | 5 +- 750 files changed, 10386 insertions(+), 8835 deletions(-) (limited to 'files/pl/learn/javascript') diff --git a/files/pl/_redirects.txt b/files/pl/_redirects.txt index a4444cfb35..6a6924a0ca 100644 --- a/files/pl/_redirects.txt +++ b/files/pl/_redirects.txt @@ -1,8 +1,13 @@ # FROM-URL TO-URL /pl/docs/AJAX /pl/docs/Web/Guide/AJAX -/pl/docs/AJAX/Na_początek /pl/docs/Web/Guide/AJAX/Na_początek -/pl/docs/AJAX:Na_początek /pl/docs/Web/Guide/AJAX/Na_początek -/pl/docs/Accessibility /pl/docs/Web/Dostępność +/pl/docs/AJAX/Na_początek /pl/docs/Web/Guide/AJAX/Getting_Started +/pl/docs/AJAX:Na_początek /pl/docs/Web/Guide/AJAX/Getting_Started +/pl/docs/API_dostępu_do_danych_z_kanałów /pl/docs/orphaned/API_dostępu_do_danych_z_kanałów +/pl/docs/Accessibility /pl/docs/Web/Accessibility +/pl/docs/Aktualizacja_aplikacji_internetowych_dla_Firefoksa_3 /pl/docs/Mozilla/Firefox/Releases/3/Updating_web_applications +/pl/docs/Aktualizacja_rozszerzeń_dla_Firefoksa_3 /pl/docs/orphaned/Aktualizacja_rozszerzeń_dla_Firefoksa_3 +/pl/docs/Aktualizacja_rozszerzeń_do_Firefoksa_2 /pl/docs/Mozilla/Firefox/Releases/2/Updating_extensions +/pl/docs/Bezpieczeństwo_w_Firefoksie_2 /pl/docs/Mozilla/Firefox/Releases/2/Security_changes /pl/docs/Bezpieczny_dostęp_do_zawartości_DOM_z_chrome /pl/docs/Bezpieczny_dostęp_do_składników_DOM_z_poziomu_chrome /pl/docs/Bugzilla_(link) https://bugzilla.mozilla.org/enter_bug.cgi?format=guided /pl/docs/CSS /pl/docs/Web/CSS @@ -17,16 +22,16 @@ /pl/docs/CSS/-moz-border-radius-bottomright /pl/docs/Web/CSS/border-bottom-right-radius /pl/docs/CSS/-moz-border-radius-topleft /pl/docs/Web/CSS/border-top-left-radius /pl/docs/CSS/-moz-border-radius-topright /pl/docs/Web/CSS/border-top-right-radius -/pl/docs/CSS/-moz-box-align /pl/docs/Web/CSS/-moz-box-align +/pl/docs/CSS/-moz-box-align /pl/docs/Web/CSS/box-align /pl/docs/CSS/-moz-box-direction /pl/docs/Web/CSS/box-direction -/pl/docs/CSS/-moz-box-flex /pl/docs/Web/CSS/-moz-box-flex -/pl/docs/CSS/-moz-box-orient /pl/docs/Web/CSS/-moz-box-orient -/pl/docs/CSS/-moz-box-pack /pl/docs/Web/CSS/-moz-box-pack +/pl/docs/CSS/-moz-box-flex /pl/docs/Web/CSS/box-flex +/pl/docs/CSS/-moz-box-orient /pl/docs/Web/CSS/box-orient +/pl/docs/CSS/-moz-box-pack /pl/docs/Web/CSS/box-pack /pl/docs/CSS/-moz-box-sizing /pl/docs/Web/CSS/box-sizing /pl/docs/CSS/-moz-image-region /pl/docs/Web/CSS/-moz-image-region /pl/docs/CSS/-moz-opacity /pl/docs/Web/CSS/opacity /pl/docs/CSS/-moz-outline /pl/docs/Web/CSS/outline -/pl/docs/CSS/-moz-outline-color /pl/docs/Web/CSS/-moz-outline-color +/pl/docs/CSS/-moz-outline-color /pl/docs/Web/CSS/outline-color /pl/docs/CSS/-moz-outline-offset /pl/docs/Web/CSS/outline-offset /pl/docs/CSS/-moz-outline-radius /pl/docs/Web/CSS/-moz-outline-radius /pl/docs/CSS/-moz-outline-radius-bottomleft /pl/docs/Web/CSS/-moz-outline-radius-bottomleft @@ -43,12 +48,12 @@ /pl/docs/CSS/:-moz-tree-row /pl/docs/Web/CSS/:-moz-tree-row /pl/docs/CSS/:-moz-tree-separator /pl/docs/Web/CSS/:-moz-tree-separator /pl/docs/CSS/:-moz-tree-twisty /pl/docs/Web/CSS/:-moz-tree-twisty -/pl/docs/CSS/:after /pl/docs/Web/CSS/:after -/pl/docs/CSS/:before /pl/docs/Web/CSS/:before +/pl/docs/CSS/:after /pl/docs/Web/CSS/::after +/pl/docs/CSS/:before /pl/docs/Web/CSS/::before /pl/docs/CSS/:empty /pl/docs/Web/CSS/:empty /pl/docs/CSS/:first-child /pl/docs/Web/CSS/:first-child -/pl/docs/CSS/:first-letter /pl/docs/Web/CSS/:first-letter -/pl/docs/CSS/:first-node /pl/docs/Web/CSS/:first-node +/pl/docs/CSS/:first-letter /pl/docs/Web/CSS/::first-letter +/pl/docs/CSS/:first-node /pl/docs/Web/CSS/:-moz-first-node /pl/docs/CSS/:lang /pl/docs/Web/CSS/:lang /pl/docs/CSS/:last-child /pl/docs/Web/CSS/:last-child /pl/docs/CSS/:last-node /pl/docs/Web/CSS/:-moz-last-node @@ -57,34 +62,34 @@ /pl/docs/CSS/@-moz-document /pl/docs/Web/CSS/@document /pl/docs/CSS/@import /pl/docs/Web/CSS/@import /pl/docs/CSS/@media /pl/docs/Web/CSS/@media -/pl/docs/CSS/CSS_Reference /pl/docs/Web/CSS/CSS_Reference -/pl/docs/CSS/Dziedziczenie /pl/docs/Web/CSS/Dziedziczenie -/pl/docs/CSS/Getting_Started/Tables /pl/docs/Web/CSS/Na_początek/Tables -/pl/docs/CSS/Inne_zasoby /pl/docs/Web/CSS/Inne_zasoby +/pl/docs/CSS/CSS_Reference /pl/docs/Web/CSS/Reference +/pl/docs/CSS/Dziedziczenie /pl/docs/Web/CSS/inheritance +/pl/docs/CSS/Getting_Started/Tables /pl/docs/Learn/CSS/Building_blocks/Styling_tables +/pl/docs/CSS/Inne_zasoby /pl/docs/conflicting/Web/CSS /pl/docs/CSS/Margin /pl/docs/Web/CSS/Margin -/pl/docs/CSS/Na_początek /pl/docs/Web/CSS/Na_początek -/pl/docs/CSS/Na_początek/Bloki /pl/docs/Web/CSS/Na_początek/Bloki -/pl/docs/CSS/Na_początek/Czym_jest_CSS /pl/docs/Web/CSS/Na_początek/Czym_jest_CSS -/pl/docs/CSS/Na_początek/Czym_jest_CSS? /pl/docs/Web/CSS/Na_początek/Czym_jest_CSS -/pl/docs/CSS/Na_początek/Czytelny_CSS /pl/docs/Web/CSS/Na_początek/Czytelny_CSS +/pl/docs/CSS/Na_początek /pl/docs/Learn/CSS/First_steps +/pl/docs/CSS/Na_początek/Bloki /pl/docs/Learn/CSS/Building_blocks +/pl/docs/CSS/Na_początek/Czym_jest_CSS /pl/docs/Learn/CSS/First_steps/How_CSS_works +/pl/docs/CSS/Na_początek/Czym_jest_CSS? /pl/docs/Learn/CSS/First_steps/How_CSS_works +/pl/docs/CSS/Na_początek/Czytelny_CSS /pl/docs/Learn/CSS/First_steps/How_CSS_is_structured /pl/docs/CSS/Na_początek/Dane_XML /pl/docs/Web/CSS/Na_początek/Dane_XML -/pl/docs/CSS/Na_początek/Grafika_SVG /pl/docs/Web/CSS/Na_początek/Grafika_SVG -/pl/docs/CSS/Na_początek/Jak_działa_CSS /pl/docs/Web/CSS/Na_początek/Jak_działa_CSS -/pl/docs/CSS/Na_początek/JavaScript /pl/docs/Web/CSS/Na_początek/JavaScript -/pl/docs/CSS/Na_początek/Kaskadowość_i_dziedziczenie /pl/docs/Web/CSS/Na_początek/Kaskadowość_i_dziedziczenie -/pl/docs/CSS/Na_początek/Kolor /pl/docs/Web/CSS/Na_początek/Kolor -/pl/docs/CSS/Na_początek/Listy /pl/docs/Web/CSS/Na_początek/Listy -/pl/docs/CSS/Na_początek/Media /pl/docs/Web/CSS/Na_początek/Media -/pl/docs/CSS/Na_początek/Po_co_używać_CSS /pl/docs/Web/CSS/Na_początek/Po_co_używać_CSS -/pl/docs/CSS/Na_początek/Selektory /pl/docs/Web/CSS/Na_początek/Selektory -/pl/docs/CSS/Na_początek/Style_tekstowe /pl/docs/Web/CSS/Na_początek/Style_tekstowe -/pl/docs/CSS/Na_początek/Tabele /pl/docs/Web/CSS/Na_początek/Tables +/pl/docs/CSS/Na_początek/Grafika_SVG /pl/docs/Web/SVG/Tutorial/SVG_and_CSS +/pl/docs/CSS/Na_początek/Jak_działa_CSS /pl/docs/conflicting/Learn/CSS/First_steps/How_CSS_works +/pl/docs/CSS/Na_początek/JavaScript /pl/docs/Learn/JavaScript/Client-side_web_APIs/Manipulating_documents +/pl/docs/CSS/Na_początek/Kaskadowość_i_dziedziczenie /pl/docs/Learn/CSS/Building_blocks/Cascade_and_inheritance +/pl/docs/CSS/Na_początek/Kolor /pl/docs/Learn/CSS/Building_blocks/Values_and_units +/pl/docs/CSS/Na_początek/Listy /pl/docs/Learn/CSS/Styling_text/Styling_lists +/pl/docs/CSS/Na_początek/Media /pl/docs/Web/Progressive_web_apps/Responsive/Media_types +/pl/docs/CSS/Na_początek/Po_co_używać_CSS /pl/docs/conflicting/Learn/CSS/First_steps/How_CSS_works_21be2ff13a08a8866d772c3a5e975193 +/pl/docs/CSS/Na_początek/Selektory /pl/docs/Learn/CSS/Building_blocks/Selectors +/pl/docs/CSS/Na_początek/Style_tekstowe /pl/docs/Learn/CSS/Styling_text/Fundamentals +/pl/docs/CSS/Na_początek/Tabele /pl/docs/Learn/CSS/Building_blocks/Styling_tables /pl/docs/CSS/Na_początek/Treść /pl/docs/Learn/CSS/Howto/Generated_content -/pl/docs/CSS/Na_początek/Układ /pl/docs/Web/CSS/Na_początek/Układ +/pl/docs/CSS/Na_początek/Układ /pl/docs/conflicting/Learn/CSS/CSS_layout /pl/docs/CSS/Na_początek/Wiązania_XBL /pl/docs/Web/CSS/Na_początek/Wiązania_XBL /pl/docs/CSS/Na_początek/XUL-owe_interfejsy_użytkownika /pl/docs/Web/CSS/Na_początek/XUL-owe_interfejsy_użytkownika -/pl/docs/CSS/Selektory_typu /pl/docs/Web/CSS/Selektory_typu -/pl/docs/CSS/Wartość_początkowa /pl/docs/Web/CSS/Wartość_początkowa +/pl/docs/CSS/Selektory_typu /pl/docs/Web/CSS/Type_selectors +/pl/docs/CSS/Wartość_początkowa /pl/docs/Web/CSS/initial_value /pl/docs/CSS/azimuth /pl/docs/Web/CSS/azimuth /pl/docs/CSS/background /pl/docs/Web/CSS/background /pl/docs/CSS/background-attachment /pl/docs/Web/CSS/background-attachment @@ -158,16 +163,16 @@ /pl/docs/CSS:-moz-border-radius-bottomright /pl/docs/Web/CSS/border-bottom-right-radius /pl/docs/CSS:-moz-border-radius-topleft /pl/docs/Web/CSS/border-top-left-radius /pl/docs/CSS:-moz-border-radius-topright /pl/docs/Web/CSS/border-top-right-radius -/pl/docs/CSS:-moz-box-align /pl/docs/Web/CSS/-moz-box-align +/pl/docs/CSS:-moz-box-align /pl/docs/Web/CSS/box-align /pl/docs/CSS:-moz-box-direction /pl/docs/Web/CSS/box-direction -/pl/docs/CSS:-moz-box-flex /pl/docs/Web/CSS/-moz-box-flex -/pl/docs/CSS:-moz-box-orient /pl/docs/Web/CSS/-moz-box-orient -/pl/docs/CSS:-moz-box-pack /pl/docs/Web/CSS/-moz-box-pack +/pl/docs/CSS:-moz-box-flex /pl/docs/Web/CSS/box-flex +/pl/docs/CSS:-moz-box-orient /pl/docs/Web/CSS/box-orient +/pl/docs/CSS:-moz-box-pack /pl/docs/Web/CSS/box-pack /pl/docs/CSS:-moz-box-sizing /pl/docs/Web/CSS/box-sizing /pl/docs/CSS:-moz-image-region /pl/docs/Web/CSS/-moz-image-region /pl/docs/CSS:-moz-opacity /pl/docs/Web/CSS/opacity /pl/docs/CSS:-moz-outline /pl/docs/Web/CSS/outline -/pl/docs/CSS:-moz-outline-color /pl/docs/Web/CSS/-moz-outline-color +/pl/docs/CSS:-moz-outline-color /pl/docs/Web/CSS/outline-color /pl/docs/CSS:-moz-outline-offset /pl/docs/Web/CSS/outline-offset /pl/docs/CSS:-moz-outline-radius /pl/docs/Web/CSS/-moz-outline-radius /pl/docs/CSS:-moz-outline-radius-bottomleft /pl/docs/Web/CSS/-moz-outline-radius-bottomleft @@ -184,12 +189,12 @@ /pl/docs/CSS::-moz-tree-row /pl/docs/Web/CSS/:-moz-tree-row /pl/docs/CSS::-moz-tree-separator /pl/docs/Web/CSS/:-moz-tree-separator /pl/docs/CSS::-moz-tree-twisty /pl/docs/Web/CSS/:-moz-tree-twisty -/pl/docs/CSS::after /pl/docs/Web/CSS/:after -/pl/docs/CSS::before /pl/docs/Web/CSS/:before +/pl/docs/CSS::after /pl/docs/Web/CSS/::after +/pl/docs/CSS::before /pl/docs/Web/CSS/::before /pl/docs/CSS::empty /pl/docs/Web/CSS/:empty /pl/docs/CSS::first-child /pl/docs/Web/CSS/:first-child -/pl/docs/CSS::first-letter /pl/docs/Web/CSS/:first-letter -/pl/docs/CSS::first-node /pl/docs/Web/CSS/:first-node +/pl/docs/CSS::first-letter /pl/docs/Web/CSS/::first-letter +/pl/docs/CSS::first-node /pl/docs/Web/CSS/:-moz-first-node /pl/docs/CSS::lang /pl/docs/Web/CSS/:lang /pl/docs/CSS::last-child /pl/docs/Web/CSS/:last-child /pl/docs/CSS::last-node /pl/docs/Web/CSS/:-moz-last-node @@ -198,31 +203,31 @@ /pl/docs/CSS:@-moz-document /pl/docs/Web/CSS/@document /pl/docs/CSS:@import /pl/docs/Web/CSS/@import /pl/docs/CSS:@media /pl/docs/Web/CSS/@media -/pl/docs/CSS:Dziedziczenie /pl/docs/Web/CSS/Dziedziczenie -/pl/docs/CSS:Inne_zasoby /pl/docs/Web/CSS/Inne_zasoby -/pl/docs/CSS:Na_początek /pl/docs/Web/CSS/Na_początek -/pl/docs/CSS:Na_początek:Bloki /pl/docs/Web/CSS/Na_początek/Bloki -/pl/docs/CSS:Na_początek:Czym_jest_CSS /pl/docs/Web/CSS/Na_początek/Czym_jest_CSS -/pl/docs/CSS:Na_początek:Czym_jest_CSS? /pl/docs/Web/CSS/Na_początek/Czym_jest_CSS -/pl/docs/CSS:Na_początek:Czytelny_CSS /pl/docs/Web/CSS/Na_początek/Czytelny_CSS +/pl/docs/CSS:Dziedziczenie /pl/docs/Web/CSS/inheritance +/pl/docs/CSS:Inne_zasoby /pl/docs/conflicting/Web/CSS +/pl/docs/CSS:Na_początek /pl/docs/Learn/CSS/First_steps +/pl/docs/CSS:Na_początek:Bloki /pl/docs/Learn/CSS/Building_blocks +/pl/docs/CSS:Na_początek:Czym_jest_CSS /pl/docs/Learn/CSS/First_steps/How_CSS_works +/pl/docs/CSS:Na_początek:Czym_jest_CSS? /pl/docs/Learn/CSS/First_steps/How_CSS_works +/pl/docs/CSS:Na_początek:Czytelny_CSS /pl/docs/Learn/CSS/First_steps/How_CSS_is_structured /pl/docs/CSS:Na_początek:Dane_XML /pl/docs/Web/CSS/Na_początek/Dane_XML -/pl/docs/CSS:Na_początek:Grafika_SVG /pl/docs/Web/CSS/Na_początek/Grafika_SVG -/pl/docs/CSS:Na_początek:Jak_działa_CSS /pl/docs/Web/CSS/Na_początek/Jak_działa_CSS -/pl/docs/CSS:Na_początek:JavaScript /pl/docs/Web/CSS/Na_początek/JavaScript -/pl/docs/CSS:Na_początek:Kaskadowość_i_dziedziczenie /pl/docs/Web/CSS/Na_początek/Kaskadowość_i_dziedziczenie -/pl/docs/CSS:Na_początek:Kolor /pl/docs/Web/CSS/Na_początek/Kolor -/pl/docs/CSS:Na_początek:Listy /pl/docs/Web/CSS/Na_początek/Listy -/pl/docs/CSS:Na_początek:Media /pl/docs/Web/CSS/Na_początek/Media -/pl/docs/CSS:Na_początek:Po_co_używać_CSS /pl/docs/Web/CSS/Na_początek/Po_co_używać_CSS -/pl/docs/CSS:Na_początek:Selektory /pl/docs/Web/CSS/Na_początek/Selektory -/pl/docs/CSS:Na_początek:Style_tekstowe /pl/docs/Web/CSS/Na_początek/Style_tekstowe -/pl/docs/CSS:Na_początek:Tabele /pl/docs/Web/CSS/Na_początek/Tables +/pl/docs/CSS:Na_początek:Grafika_SVG /pl/docs/Web/SVG/Tutorial/SVG_and_CSS +/pl/docs/CSS:Na_początek:Jak_działa_CSS /pl/docs/conflicting/Learn/CSS/First_steps/How_CSS_works +/pl/docs/CSS:Na_początek:JavaScript /pl/docs/Learn/JavaScript/Client-side_web_APIs/Manipulating_documents +/pl/docs/CSS:Na_początek:Kaskadowość_i_dziedziczenie /pl/docs/Learn/CSS/Building_blocks/Cascade_and_inheritance +/pl/docs/CSS:Na_początek:Kolor /pl/docs/Learn/CSS/Building_blocks/Values_and_units +/pl/docs/CSS:Na_początek:Listy /pl/docs/Learn/CSS/Styling_text/Styling_lists +/pl/docs/CSS:Na_początek:Media /pl/docs/Web/Progressive_web_apps/Responsive/Media_types +/pl/docs/CSS:Na_początek:Po_co_używać_CSS /pl/docs/conflicting/Learn/CSS/First_steps/How_CSS_works_21be2ff13a08a8866d772c3a5e975193 +/pl/docs/CSS:Na_początek:Selektory /pl/docs/Learn/CSS/Building_blocks/Selectors +/pl/docs/CSS:Na_początek:Style_tekstowe /pl/docs/Learn/CSS/Styling_text/Fundamentals +/pl/docs/CSS:Na_początek:Tabele /pl/docs/Learn/CSS/Building_blocks/Styling_tables /pl/docs/CSS:Na_początek:Treść /pl/docs/Learn/CSS/Howto/Generated_content -/pl/docs/CSS:Na_początek:Układ /pl/docs/Web/CSS/Na_początek/Układ +/pl/docs/CSS:Na_początek:Układ /pl/docs/conflicting/Learn/CSS/CSS_layout /pl/docs/CSS:Na_początek:Wiązania_XBL /pl/docs/Web/CSS/Na_początek/Wiązania_XBL /pl/docs/CSS:Na_początek:XUL-owe_interfejsy_użytkownika /pl/docs/Web/CSS/Na_początek/XUL-owe_interfejsy_użytkownika -/pl/docs/CSS:Selektory_typu /pl/docs/Web/CSS/Selektory_typu -/pl/docs/CSS:Wartość_początkowa /pl/docs/Web/CSS/Wartość_początkowa +/pl/docs/CSS:Selektory_typu /pl/docs/Web/CSS/Type_selectors +/pl/docs/CSS:Wartość_początkowa /pl/docs/Web/CSS/initial_value /pl/docs/CSS:azimuth /pl/docs/Web/CSS/azimuth /pl/docs/CSS:background /pl/docs/Web/CSS/background /pl/docs/CSS:background-attachment /pl/docs/Web/CSS/background-attachment @@ -282,10 +287,14 @@ /pl/docs/CSS:word-spacing /pl/docs/Web/CSS/word-spacing /pl/docs/CSS:z-index /pl/docs/Web/CSS/z-index /pl/docs/Checky_-_rozszerzenie_Firefoksa_(link) https://addons.mozilla.org/extensions/moreinfo.php?id=165 +/pl/docs/Chrome /pl/docs/conflicting/Glossary/Chrome /pl/docs/Chrome_Registration /pl/docs/Mozilla/Rejestracja_Chrome -/pl/docs/Common_CSS_Questions /pl/docs/Web/CSS/Częste_pytania_o_CSS -/pl/docs/Częste_Pytania_o_CSS /pl/docs/Web/CSS/Częste_pytania_o_CSS -/pl/docs/DOM/CSS /pl/docs/Web/CSS/CSS_Reference +/pl/docs/Co_nowego_w_Deer_Park_Alpha /pl/docs/Mozilla/Firefox/Releases/1.5/What_s_new_in_1.5_alpha +/pl/docs/Common_CSS_Questions /pl/docs/Learn/CSS/Howto/CSS_FAQ +/pl/docs/Częste_Pytania_o_CSS /pl/docs/Learn/CSS/Howto/CSS_FAQ +/pl/docs/DHTML /pl/docs/Glossary/DHTML +/pl/docs/DOM /pl/docs/conflicting/Web/API/Document_Object_Model_7d961b8030c6099ee907f4f4b5fe6b3d +/pl/docs/DOM/CSS /pl/docs/Web/CSS/Reference /pl/docs/DOM/HTMLTableElement /pl/docs/Web/API/HTMLTableElement /pl/docs/DOM/Selection /pl/docs/Web/API/Selection /pl/docs/DOM/Selection/addRange /pl/docs/Web/API/Selection/addRange @@ -306,11 +315,12 @@ /pl/docs/DOM/Selection/removeRange /pl/docs/Web/API/Selection/removeRange /pl/docs/DOM/Selection/selectAllChildren /pl/docs/Web/API/Selection/selectAllChildren /pl/docs/DOM/Selection/toString /pl/docs/Web/API/Selection/toString -/pl/docs/DOM/Storage /pl/docs/Web/API/Storage +/pl/docs/DOM/Storage /pl/docs/Web/API/Web_Storage_API /pl/docs/DOM/cssRule /pl/docs/Web/API/CSSRule +/pl/docs/DOM/dispatchEvent_-_przykład /pl/docs/Web/Guide/Events/Creating_and_triggering_events /pl/docs/DOM/document /pl/docs/Web/API/Document /pl/docs/DOM/document.URL /pl/docs/Web/API/Document/URL -/pl/docs/DOM/document.activeElement /pl/docs/Web/API/Document/activeElement +/pl/docs/DOM/document.activeElement /pl/docs/Web/API/DocumentOrShadowRoot/activeElement /pl/docs/DOM/document.alinkColor /pl/docs/Web/API/Document/alinkColor /pl/docs/DOM/document.anchors /pl/docs/Web/API/Document/anchors /pl/docs/DOM/document.applets /pl/docs/Web/API/Document/applets @@ -333,7 +343,7 @@ /pl/docs/DOM/document.domain /pl/docs/Web/API/Document/domain /pl/docs/DOM/document.embeds /pl/docs/Web/API/Document/embeds /pl/docs/DOM/document.fgColor /pl/docs/Web/API/Document/fgColor -/pl/docs/DOM/document.firstChild /pl/docs/Web/API/Document/firstChild +/pl/docs/DOM/document.firstChild /pl/docs/conflicting/Web/API/Node/firstChild /pl/docs/DOM/document.forms /pl/docs/Web/API/Document/forms /pl/docs/DOM/document.getElementById /pl/docs/Web/API/Document/getElementById /pl/docs/DOM/document.getElementsByName /pl/docs/Web/API/Document/getElementsByName @@ -347,32 +357,32 @@ /pl/docs/DOM/document.linkColor /pl/docs/Web/API/Document/linkColor /pl/docs/DOM/document.links /pl/docs/Web/API/Document/links /pl/docs/DOM/document.location /pl/docs/Web/API/Document/location -/pl/docs/DOM/document.namespaceURI /pl/docs/Web/API/Document/namespaceURI +/pl/docs/DOM/document.namespaceURI /pl/docs/conflicting/Web/API/Node/namespaceURI /pl/docs/DOM/document.open /pl/docs/Web/API/Document/open /pl/docs/DOM/document.plugins /pl/docs/Web/API/Document/plugins /pl/docs/DOM/document.referrer /pl/docs/Web/API/Document/referrer -/pl/docs/DOM/document.styleSheets /pl/docs/Web/API/Document/styleSheets +/pl/docs/DOM/document.styleSheets /pl/docs/Web/API/DocumentOrShadowRoot/styleSheets /pl/docs/DOM/document.title /pl/docs/Web/API/Document/title /pl/docs/DOM/document.vlinkColor /pl/docs/Web/API/Document/vlinkColor /pl/docs/DOM/document.width /pl/docs/Web/API/Document/width /pl/docs/DOM/document.write /pl/docs/Web/API/Document/write /pl/docs/DOM/document.writeln /pl/docs/Web/API/Document/writeln /pl/docs/DOM/element /pl/docs/Web/API/Element -/pl/docs/DOM/element.addEventListener /pl/docs/Web/API/Element/addEventListener -/pl/docs/DOM/element.appendChild /pl/docs/Web/API/Element/appendChild +/pl/docs/DOM/element.addEventListener /pl/docs/Web/API/EventTarget/addEventListener +/pl/docs/DOM/element.appendChild /pl/docs/Web/API/Node/appendChild /pl/docs/DOM/element.attributes /pl/docs/Web/API/Element/attributes -/pl/docs/DOM/element.blur /pl/docs/Web/API/Element/blur -/pl/docs/DOM/element.childNodes /pl/docs/Web/API/Element/childNodes +/pl/docs/DOM/element.blur /pl/docs/Web/API/HTMLOrForeignElement/blur +/pl/docs/DOM/element.childNodes /pl/docs/Web/API/Node/childNodes /pl/docs/DOM/element.className /pl/docs/Web/API/Element/className -/pl/docs/DOM/element.click /pl/docs/Web/API/Element/click +/pl/docs/DOM/element.click /pl/docs/Web/API/HTMLElement/click /pl/docs/DOM/element.clientHeight /pl/docs/Web/API/Element/clientHeight /pl/docs/DOM/element.clientWidth /pl/docs/Web/API/Element/clientWidth -/pl/docs/DOM/element.cloneNode /pl/docs/Web/API/Element/clientNode +/pl/docs/DOM/element.cloneNode /pl/docs/Web/API/Node/cloneNode /pl/docs/DOM/element.createAttribute /pl/docs/Web/API/Document/createAttribute -/pl/docs/DOM/element.dir /pl/docs/Web/API/Element/dir -/pl/docs/DOM/element.dispatchEvent /pl/docs/Web/API/Element/dispatchEvent -/pl/docs/DOM/element.firstChild /pl/docs/Web/API/Element/firstChild -/pl/docs/DOM/element.focus /pl/docs/Web/API/Element/focus +/pl/docs/DOM/element.dir /pl/docs/Web/API/HTMLElement/dir +/pl/docs/DOM/element.dispatchEvent /pl/docs/Web/API/EventTarget/dispatchEvent +/pl/docs/DOM/element.firstChild /pl/docs/Web/API/Node/firstChild +/pl/docs/DOM/element.focus /pl/docs/Web/API/HTMLOrForeignElement/focus /pl/docs/DOM/element.getAttribute /pl/docs/Web/API/Element/getAttribute /pl/docs/DOM/element.getAttributeNS /pl/docs/Web/API/Element/getAttributeNS /pl/docs/DOM/element.getAttributeNode /pl/docs/Web/API/Element/getAttributeNode @@ -381,39 +391,40 @@ /pl/docs/DOM/element.hasAttribute /pl/docs/Web/API/Element/hasAttribute /pl/docs/DOM/element.hasAttributeNS /pl/docs/Web/API/Element/hasAttributeNS /pl/docs/DOM/element.hasAttributes /pl/docs/Web/API/Element/hasAttributes -/pl/docs/DOM/element.hasChildNodes /pl/docs/Web/API/Element/hasChildNodes +/pl/docs/DOM/element.hasChildNodes /pl/docs/Web/API/Node/hasChildNodes /pl/docs/DOM/element.id /pl/docs/Web/API/Element/id /pl/docs/DOM/element.innerHTML /pl/docs/Web/API/Element/innerHTML -/pl/docs/DOM/element.insertBefore /pl/docs/Web/API/Element/insertBefore -/pl/docs/DOM/element.lang /pl/docs/Web/API/Element/lang -/pl/docs/DOM/element.lastChild /pl/docs/Web/API/Element/lastChild -/pl/docs/DOM/element.length /pl/docs/Web/API/Element/length -/pl/docs/DOM/element.localName /pl/docs/Web/API/Element/localName -/pl/docs/DOM/element.name /pl/docs/Web/API/Element/name -/pl/docs/DOM/element.namespaceURI /pl/docs/Web/API/Element/namespaceURI -/pl/docs/DOM/element.nextSibling /pl/docs/Web/API/Element/nextSibling -/pl/docs/DOM/element.nodeName /pl/docs/Web/API/Element/nodeName -/pl/docs/DOM/element.nodeType /pl/docs/Web/API/Element/nodeType -/pl/docs/DOM/element.nodeValue /pl/docs/Web/API/Element/nodeValue -/pl/docs/DOM/element.normalize /pl/docs/Web/API/Element/normalize -/pl/docs/DOM/element.offsetHeight /pl/docs/Web/API/Element/offsetHeight -/pl/docs/DOM/element.offsetLeft /pl/docs/Web/API/Element/offsetLeft -/pl/docs/DOM/element.offsetParent /pl/docs/Web/API/Element/offsetParent -/pl/docs/DOM/element.offsetWidth /pl/docs/Web/API/Element/offsetWidth -/pl/docs/DOM/element.onclick /pl/docs/Web/API/Element/onclick -/pl/docs/DOM/element.onkeypress /pl/docs/Web/API/Element/onkeypress -/pl/docs/DOM/element.onkeyup /pl/docs/Web/API/Element/onkeyup -/pl/docs/DOM/element.onmousedown /pl/docs/Web/API/Element/onmousedown -/pl/docs/DOM/element.onmousemove /pl/docs/Web/API/Element/onmousemove -/pl/docs/DOM/element.ownerDocument /pl/docs/Web/API/Element/ownerDocument -/pl/docs/DOM/element.parentNode /pl/docs/Web/API/Element/parentNode -/pl/docs/DOM/element.prefix /pl/docs/Web/API/Element/prefix -/pl/docs/DOM/element.previousSibling /pl/docs/Web/API/Element/previousSibling +/pl/docs/DOM/element.insertBefore /pl/docs/Web/API/Node/insertBefore +/pl/docs/DOM/element.lang /pl/docs/Web/API/HTMLElement/lang +/pl/docs/DOM/element.lastChild /pl/docs/Web/API/Node/lastChild +/pl/docs/DOM/element.length /pl/docs/Web/API/NodeList/length +/pl/docs/DOM/element.localName /pl/docs/Web/API/Node/localName +/pl/docs/DOM/element.name /pl/docs/conflicting/Web/API +/pl/docs/DOM/element.namespaceURI /pl/docs/Web/API/Node/namespaceURI +/pl/docs/DOM/element.nextSibling /pl/docs/Web/API/Node/nextSibling +/pl/docs/DOM/element.nodeName /pl/docs/Web/API/Node/nodeName +/pl/docs/DOM/element.nodeType /pl/docs/Web/API/Node/nodeType +/pl/docs/DOM/element.nodeValue /pl/docs/Web/API/Node/nodeValue +/pl/docs/DOM/element.normalize /pl/docs/Web/API/Node/normalize +/pl/docs/DOM/element.offsetHeight /pl/docs/Web/API/HTMLElement/offsetHeight +/pl/docs/DOM/element.offsetLeft /pl/docs/Web/API/HTMLElement/offsetLeft +/pl/docs/DOM/element.offsetParent /pl/docs/Web/API/HTMLElement/offsetParent +/pl/docs/DOM/element.offsetWidth /pl/docs/Web/API/HTMLElement/offsetWidth +/pl/docs/DOM/element.onclick /pl/docs/Web/API/GlobalEventHandlers/onclick +/pl/docs/DOM/element.onkeydown /pl/docs/Web/API/GlobalEventHandlers/onkeydown +/pl/docs/DOM/element.onkeypress /pl/docs/Web/API/GlobalEventHandlers/onkeypress +/pl/docs/DOM/element.onkeyup /pl/docs/Web/API/GlobalEventHandlers/onkeyup +/pl/docs/DOM/element.onmousedown /pl/docs/Web/API/GlobalEventHandlers/onmousedown +/pl/docs/DOM/element.onmousemove /pl/docs/Web/API/GlobalEventHandlers/onmousemove +/pl/docs/DOM/element.ownerDocument /pl/docs/Web/API/Node/ownerDocument +/pl/docs/DOM/element.parentNode /pl/docs/Web/API/Node/parentNode +/pl/docs/DOM/element.prefix /pl/docs/Web/API/Node/prefix +/pl/docs/DOM/element.previousSibling /pl/docs/Web/API/Node/previousSibling /pl/docs/DOM/element.removeAttribute /pl/docs/Web/API/Element/removeAttribute /pl/docs/DOM/element.removeAttributeNS /pl/docs/Web/API/Element/removeAttributeNS /pl/docs/DOM/element.removeAttributeNode /pl/docs/Web/API/Element/removeAttributeNode -/pl/docs/DOM/element.removeChild /pl/docs/Web/API/Element/removeChild -/pl/docs/DOM/element.replaceChild /pl/docs/Web/API/Element/replaceChild +/pl/docs/DOM/element.removeChild /pl/docs/Web/API/Node/removeChild +/pl/docs/DOM/element.replaceChild /pl/docs/Web/API/Node/replaceChild /pl/docs/DOM/element.scrollLeft /pl/docs/Web/API/Element/scrollLeft /pl/docs/DOM/element.scrollTop /pl/docs/Web/API/Element/scrollTop /pl/docs/DOM/element.scrollWidth /pl/docs/Web/API/Element/scrollWidth @@ -421,41 +432,41 @@ /pl/docs/DOM/element.setAttributeNS /pl/docs/Web/API/Element/setAttributeNS /pl/docs/DOM/element.setAttributeNode /pl/docs/Web/API/Element/setAttributeNode /pl/docs/DOM/element.setAttributeNodeNS /pl/docs/Web/API/Element/setAttributeNodeNS -/pl/docs/DOM/element.style /pl/docs/Web/API/Element/style -/pl/docs/DOM/element.tabIndex /pl/docs/Web/API/Element/tabIndex +/pl/docs/DOM/element.style /pl/docs/Web/API/ElementCSSInlineStyle/style +/pl/docs/DOM/element.tabIndex /pl/docs/Web/API/HTMLOrForeignElement/tabIndex /pl/docs/DOM/element.tagName /pl/docs/Web/API/Element/tagName -/pl/docs/DOM/element.textContent /pl/docs/Web/API/Element/textContent +/pl/docs/DOM/element.textContent /pl/docs/Web/API/Node/textContent /pl/docs/DOM/event /pl/docs/Web/API/Event -/pl/docs/DOM/event.altKey /pl/docs/Web/API/Event/altKey +/pl/docs/DOM/event.altKey /pl/docs/Web/API/MouseEvent/altKey /pl/docs/DOM/event.bubbles /pl/docs/Web/API/Event/bubbles -/pl/docs/DOM/event.button /pl/docs/Web/API/Event/button -/pl/docs/DOM/event.cancelBubble /pl/docs/Web/API/Event/cancelBubble +/pl/docs/DOM/event.button /pl/docs/Web/API/MouseEvent/button +/pl/docs/DOM/event.cancelBubble /pl/docs/Web/API/UIEvent/cancelBubble /pl/docs/DOM/event.cancelable /pl/docs/Web/API/Event/cancelable -/pl/docs/DOM/event.charCode /pl/docs/Web/API/Event/charCode -/pl/docs/DOM/event.clientX /pl/docs/Web/API/Event/clientX -/pl/docs/DOM/event.clientY /pl/docs/Web/API/Event/clientY -/pl/docs/DOM/event.ctrlKey /pl/docs/Web/API/Event/ctrlKey +/pl/docs/DOM/event.charCode /pl/docs/Web/API/KeyboardEvent/charCode +/pl/docs/DOM/event.clientX /pl/docs/Web/API/MouseEvent/clientX +/pl/docs/DOM/event.clientY /pl/docs/Web/API/MouseEvent/clientY +/pl/docs/DOM/event.ctrlKey /pl/docs/Web/API/MouseEvent/ctrlKey /pl/docs/DOM/event.currentTarget /pl/docs/Web/API/Event/currentTarget /pl/docs/DOM/event.eventPhase /pl/docs/Web/API/Event/eventPhase /pl/docs/DOM/event.initEvent /pl/docs/Web/API/Event/initEvent -/pl/docs/DOM/event.initMouseEvent /pl/docs/Web/API/Event/initMouseEvent -/pl/docs/DOM/event.initUIEvent /pl/docs/Web/API/Event/initUIEvent -/pl/docs/DOM/event.isChar /pl/docs/Web/API/Event/isChar -/pl/docs/DOM/event.keyCode /pl/docs/Web/API/Event/keyCode -/pl/docs/DOM/event.layerX /pl/docs/Web/API/Event/layerX -/pl/docs/DOM/event.layerY /pl/docs/Web/API/Event/layerY -/pl/docs/DOM/event.metaKey /pl/docs/Web/API/Event/metaKey -/pl/docs/DOM/event.pageX /pl/docs/Web/API/Event/pageX -/pl/docs/DOM/event.pageY /pl/docs/Web/API/Event/pageY -/pl/docs/DOM/event.relatedTarget /pl/docs/Web/API/Event/relatedTarget -/pl/docs/DOM/event.screenX /pl/docs/Web/API/Event/screenX -/pl/docs/DOM/event.screenY /pl/docs/Web/API/Event/screenY -/pl/docs/DOM/event.shiftKey /pl/docs/Web/API/Event/shiftKey +/pl/docs/DOM/event.initMouseEvent /pl/docs/Web/API/MouseEvent/initMouseEvent +/pl/docs/DOM/event.initUIEvent /pl/docs/Web/API/UIEvent/initUIEvent +/pl/docs/DOM/event.isChar /pl/docs/Web/API/UIEvent/isChar +/pl/docs/DOM/event.keyCode /pl/docs/Web/API/KeyboardEvent/keyCode +/pl/docs/DOM/event.layerX /pl/docs/Web/API/UIEvent/layerX +/pl/docs/DOM/event.layerY /pl/docs/Web/API/UIEvent/layerY +/pl/docs/DOM/event.metaKey /pl/docs/Web/API/MouseEvent/metaKey +/pl/docs/DOM/event.pageX /pl/docs/Web/API/UIEvent/pageX +/pl/docs/DOM/event.pageY /pl/docs/Web/API/UIEvent/pageY +/pl/docs/DOM/event.relatedTarget /pl/docs/Web/API/MouseEvent/relatedTarget +/pl/docs/DOM/event.screenX /pl/docs/Web/API/MouseEvent/screenX +/pl/docs/DOM/event.screenY /pl/docs/Web/API/MouseEvent/screenY +/pl/docs/DOM/event.shiftKey /pl/docs/Web/API/MouseEvent/shiftKey /pl/docs/DOM/event.stopPropagation /pl/docs/Web/API/Event/stopPropagation /pl/docs/DOM/event.target /pl/docs/Web/API/Event/target /pl/docs/DOM/event.timeStamp /pl/docs/Web/API/Event/timeStamp /pl/docs/DOM/event.type /pl/docs/Web/API/Event/type -/pl/docs/DOM/event.view /pl/docs/Web/API/Event/view +/pl/docs/DOM/event.view /pl/docs/Web/API/UIEvent/view /pl/docs/DOM/form /pl/docs/Web/API/HTMLFormElement /pl/docs/DOM/form.acceptCharset /pl/docs/Web/API/HTMLFormElement/acceptCharset /pl/docs/DOM/form.action /pl/docs/Web/API/HTMLFormElement/action @@ -469,14 +480,14 @@ /pl/docs/DOM/form.submit /pl/docs/Web/API/HTMLFormElement/submit /pl/docs/DOM/form.target /pl/docs/Web/API/HTMLFormElement/target /pl/docs/DOM/range /pl/docs/Web/API/Range -/pl/docs/DOM/stylesheet /pl/docs/Web/API/Stylesheet -/pl/docs/DOM/stylesheet.cssRules /pl/docs/Web/API/Stylesheet/cssRules -/pl/docs/DOM/stylesheet.deleteRule /pl/docs/Web/API/Stylesheet/deleteRule +/pl/docs/DOM/stylesheet /pl/docs/Web/API/CSSStyleSheet +/pl/docs/DOM/stylesheet.cssRules /pl/docs/Web/API/CSSRuleList +/pl/docs/DOM/stylesheet.deleteRule /pl/docs/Web/API/CSSStyleSheet/deleteRule /pl/docs/DOM/stylesheet.disabled /pl/docs/Web/API/Stylesheet/disabled /pl/docs/DOM/stylesheet.href /pl/docs/Web/API/Stylesheet/href -/pl/docs/DOM/stylesheet.insertRule /pl/docs/Web/API/Stylesheet/insertRule +/pl/docs/DOM/stylesheet.insertRule /pl/docs/Web/API/CSSStyleSheet/insertRule /pl/docs/DOM/stylesheet.media /pl/docs/Web/API/Stylesheet/media -/pl/docs/DOM/stylesheet.ownerRule /pl/docs/Web/API/Stylesheet/ownerRule +/pl/docs/DOM/stylesheet.ownerRule /pl/docs/orphaned/Web/API/Stylesheet/ownerRule /pl/docs/DOM/stylesheet.parentStyleSheet /pl/docs/Web/API/Stylesheet/parentStyleSheet /pl/docs/DOM/stylesheet.title /pl/docs/Web/API/Stylesheet/title /pl/docs/DOM/stylesheet.type /pl/docs/Web/API/Stylesheet/type @@ -486,8 +497,8 @@ /pl/docs/DOM/table.tHead /pl/docs/Web/API/HTMLTableElement/tHead /pl/docs/DOM/window /pl/docs/Web/API/Window /pl/docs/DOM/window.alert /pl/docs/Web/API/Window/alert -/pl/docs/DOM/window.clearInterval /pl/docs/Web/API/Window/clearInterval -/pl/docs/DOM/window.clearTimeout /pl/docs/Web/API/Window/clearTimeout +/pl/docs/DOM/window.clearInterval /pl/docs/Web/API/WindowOrWorkerGlobalScope/clearInterval +/pl/docs/DOM/window.clearTimeout /pl/docs/Web/API/WindowOrWorkerGlobalScope/clearTimeout /pl/docs/DOM/window.closed /pl/docs/Web/API/Window/closed /pl/docs/DOM/window.content /pl/docs/Web/API/Window/content /pl/docs/DOM/window.controllers /pl/docs/Web/API/Window/controllers @@ -502,23 +513,23 @@ /pl/docs/DOM/window.getSelection /pl/docs/Web/API/Window/getSelection /pl/docs/DOM/window.name /pl/docs/Web/API/Window/name /pl/docs/DOM/window.navigator /pl/docs/Web/API/Window/navigator -/pl/docs/DOM/window.navigator.appCodeName /pl/docs/Web/API/Navigator/appCodeName -/pl/docs/DOM/window.navigator.appName /pl/docs/Web/API/Navigator/appName -/pl/docs/DOM/window.navigator.appVersion /pl/docs/Web/API/Navigator/appVersion +/pl/docs/DOM/window.navigator.appCodeName /pl/docs/Web/API/NavigatorID/appCodeName +/pl/docs/DOM/window.navigator.appName /pl/docs/Web/API/NavigatorID/appName +/pl/docs/DOM/window.navigator.appVersion /pl/docs/Web/API/NavigatorID/appVersion /pl/docs/DOM/window.navigator.buildID /pl/docs/Web/API/Navigator/buildID /pl/docs/DOM/window.navigator.cookieEnabled /pl/docs/Web/API/Navigator/cookieEnabled -/pl/docs/DOM/window.navigator.javaEnabled /pl/docs/Web/API/Navigator/javaEnabled -/pl/docs/DOM/window.navigator.language /pl/docs/Web/API/Navigator/language -/pl/docs/DOM/window.navigator.mimeTypes /pl/docs/Web/API/Navigator/mimeTypes -/pl/docs/DOM/window.navigator.onLine /pl/docs/Web/API/Navigator/onLine +/pl/docs/DOM/window.navigator.javaEnabled /pl/docs/Web/API/NavigatorPlugins/javaEnabled +/pl/docs/DOM/window.navigator.language /pl/docs/Web/API/NavigatorLanguage/language +/pl/docs/DOM/window.navigator.mimeTypes /pl/docs/Web/API/NavigatorPlugins/mimeTypes +/pl/docs/DOM/window.navigator.onLine /pl/docs/Web/API/NavigatorOnLine/onLine /pl/docs/DOM/window.navigator.oscpu /pl/docs/Web/API/Navigator/oscpu -/pl/docs/DOM/window.navigator.platform /pl/docs/Web/API/Navigator/platform -/pl/docs/DOM/window.navigator.plugins /pl/docs/Web/API/Navigator/plugins -/pl/docs/DOM/window.navigator.product /pl/docs/Web/API/Navigator/product +/pl/docs/DOM/window.navigator.platform /pl/docs/Web/API/NavigatorID/platform +/pl/docs/DOM/window.navigator.plugins /pl/docs/Web/API/NavigatorPlugins/plugins +/pl/docs/DOM/window.navigator.product /pl/docs/Web/API/NavigatorID/product /pl/docs/DOM/window.navigator.productSub /pl/docs/Web/API/Navigator/productSub /pl/docs/DOM/window.navigator.registerContentHandler /pl/docs/Web/API/Navigator/registerContentHandler /pl/docs/DOM/window.navigator.registerProtocolHandler /pl/docs/Web/API/Navigator/registerProtocolHandler -/pl/docs/DOM/window.onload /pl/docs/Web/API/Window/onload +/pl/docs/DOM/window.onload /pl/docs/Web/API/GlobalEventHandlers/onload /pl/docs/DOM/window.open /pl/docs/Web/API/Window/open /pl/docs/DOM/window.openDialog /pl/docs/Web/API/Window/openDialog /pl/docs/DOM/window.opener /pl/docs/Web/API/Window/opener @@ -530,9 +541,9 @@ /pl/docs/DOM/window.scrollByLines /pl/docs/Web/API/Window/scrollByLines /pl/docs/DOM/window.scrollByPages /pl/docs/Web/API/Window/scrollByPages /pl/docs/DOM/window.scrollTo /pl/docs/Web/API/Window/scrollTo -/pl/docs/DOM/window.setInterval /pl/docs/Web/API/Window/setInterval -/pl/docs/DOM/window.setTimeout /pl/docs/Web/API/Window/setTimeout -/pl/docs/DOM:CSS /pl/docs/Web/CSS/CSS_Reference +/pl/docs/DOM/window.setInterval /pl/docs/Web/API/WindowOrWorkerGlobalScope/setInterval +/pl/docs/DOM/window.setTimeout /pl/docs/Web/API/WindowOrWorkerGlobalScope/setTimeout +/pl/docs/DOM:CSS /pl/docs/Web/CSS/Reference /pl/docs/DOM:Selection /pl/docs/Web/API/Selection /pl/docs/DOM:Selection:addRange /pl/docs/Web/API/Selection/addRange /pl/docs/DOM:Selection:anchorNode /pl/docs/Web/API/Selection/anchorNode @@ -552,12 +563,12 @@ /pl/docs/DOM:Selection:removeRange /pl/docs/Web/API/Selection/removeRange /pl/docs/DOM:Selection:selectAllChildren /pl/docs/Web/API/Selection/selectAllChildren /pl/docs/DOM:Selection:toString /pl/docs/Web/API/Selection/toString -/pl/docs/DOM:Storage /pl/docs/Web/API/Storage +/pl/docs/DOM:Storage /pl/docs/Web/API/Web_Storage_API /pl/docs/DOM:cssRule /pl/docs/Web/API/CSSRule -/pl/docs/DOM:dispatchEvent_-_przykład /pl/docs/DOM/dispatchEvent_-_przykład +/pl/docs/DOM:dispatchEvent_-_przykład /pl/docs/Web/Guide/Events/Creating_and_triggering_events /pl/docs/DOM:document /pl/docs/Web/API/Document /pl/docs/DOM:document.URL /pl/docs/Web/API/Document/URL -/pl/docs/DOM:document.activeElement /pl/docs/Web/API/Document/activeElement +/pl/docs/DOM:document.activeElement /pl/docs/Web/API/DocumentOrShadowRoot/activeElement /pl/docs/DOM:document.alinkColor /pl/docs/Web/API/Document/alinkColor /pl/docs/DOM:document.anchors /pl/docs/Web/API/Document/anchors /pl/docs/DOM:document.applets /pl/docs/Web/API/Document/applets @@ -580,7 +591,7 @@ /pl/docs/DOM:document.domain /pl/docs/Web/API/Document/domain /pl/docs/DOM:document.embeds /pl/docs/Web/API/Document/embeds /pl/docs/DOM:document.fgColor /pl/docs/Web/API/Document/fgColor -/pl/docs/DOM:document.firstChild /pl/docs/Web/API/Document/firstChild +/pl/docs/DOM:document.firstChild /pl/docs/conflicting/Web/API/Node/firstChild /pl/docs/DOM:document.forms /pl/docs/Web/API/Document/forms /pl/docs/DOM:document.getElementById /pl/docs/Web/API/Document/getElementById /pl/docs/DOM:document.getElementsByName /pl/docs/Web/API/Document/getElementsByName @@ -594,32 +605,32 @@ /pl/docs/DOM:document.linkColor /pl/docs/Web/API/Document/linkColor /pl/docs/DOM:document.links /pl/docs/Web/API/Document/links /pl/docs/DOM:document.location /pl/docs/Web/API/Document/location -/pl/docs/DOM:document.namespaceURI /pl/docs/Web/API/Document/namespaceURI +/pl/docs/DOM:document.namespaceURI /pl/docs/conflicting/Web/API/Node/namespaceURI /pl/docs/DOM:document.open /pl/docs/Web/API/Document/open /pl/docs/DOM:document.plugins /pl/docs/Web/API/Document/plugins /pl/docs/DOM:document.referrer /pl/docs/Web/API/Document/referrer -/pl/docs/DOM:document.styleSheets /pl/docs/Web/API/Document/styleSheets +/pl/docs/DOM:document.styleSheets /pl/docs/Web/API/DocumentOrShadowRoot/styleSheets /pl/docs/DOM:document.title /pl/docs/Web/API/Document/title /pl/docs/DOM:document.vlinkColor /pl/docs/Web/API/Document/vlinkColor /pl/docs/DOM:document.width /pl/docs/Web/API/Document/width /pl/docs/DOM:document.write /pl/docs/Web/API/Document/write /pl/docs/DOM:document.writeln /pl/docs/Web/API/Document/writeln /pl/docs/DOM:element /pl/docs/Web/API/Element -/pl/docs/DOM:element.addEventListener /pl/docs/Web/API/Element/addEventListener -/pl/docs/DOM:element.appendChild /pl/docs/Web/API/Element/appendChild +/pl/docs/DOM:element.addEventListener /pl/docs/Web/API/EventTarget/addEventListener +/pl/docs/DOM:element.appendChild /pl/docs/Web/API/Node/appendChild /pl/docs/DOM:element.attributes /pl/docs/Web/API/Element/attributes -/pl/docs/DOM:element.blur /pl/docs/Web/API/Element/blur -/pl/docs/DOM:element.childNodes /pl/docs/Web/API/Element/childNodes +/pl/docs/DOM:element.blur /pl/docs/Web/API/HTMLOrForeignElement/blur +/pl/docs/DOM:element.childNodes /pl/docs/Web/API/Node/childNodes /pl/docs/DOM:element.className /pl/docs/Web/API/Element/className -/pl/docs/DOM:element.click /pl/docs/Web/API/Element/click +/pl/docs/DOM:element.click /pl/docs/Web/API/HTMLElement/click /pl/docs/DOM:element.clientHeight /pl/docs/Web/API/Element/clientHeight /pl/docs/DOM:element.clientWidth /pl/docs/Web/API/Element/clientWidth -/pl/docs/DOM:element.cloneNode /pl/docs/Web/API/Element/clientNode +/pl/docs/DOM:element.cloneNode /pl/docs/Web/API/Node/cloneNode /pl/docs/DOM:element.createAttribute /pl/docs/Web/API/Document/createAttribute -/pl/docs/DOM:element.dir /pl/docs/Web/API/Element/dir -/pl/docs/DOM:element.dispatchEvent /pl/docs/Web/API/Element/dispatchEvent -/pl/docs/DOM:element.firstChild /pl/docs/Web/API/Element/firstChild -/pl/docs/DOM:element.focus /pl/docs/Web/API/Element/focus +/pl/docs/DOM:element.dir /pl/docs/Web/API/HTMLElement/dir +/pl/docs/DOM:element.dispatchEvent /pl/docs/Web/API/EventTarget/dispatchEvent +/pl/docs/DOM:element.firstChild /pl/docs/Web/API/Node/firstChild +/pl/docs/DOM:element.focus /pl/docs/Web/API/HTMLOrForeignElement/focus /pl/docs/DOM:element.getAttribute /pl/docs/Web/API/Element/getAttribute /pl/docs/DOM:element.getAttributeNS /pl/docs/Web/API/Element/getAttributeNS /pl/docs/DOM:element.getAttributeNode /pl/docs/Web/API/Element/getAttributeNode @@ -628,40 +639,40 @@ /pl/docs/DOM:element.hasAttribute /pl/docs/Web/API/Element/hasAttribute /pl/docs/DOM:element.hasAttributeNS /pl/docs/Web/API/Element/hasAttributeNS /pl/docs/DOM:element.hasAttributes /pl/docs/Web/API/Element/hasAttributes -/pl/docs/DOM:element.hasChildNodes /pl/docs/Web/API/Element/hasChildNodes +/pl/docs/DOM:element.hasChildNodes /pl/docs/Web/API/Node/hasChildNodes /pl/docs/DOM:element.id /pl/docs/Web/API/Element/id /pl/docs/DOM:element.innerHTML /pl/docs/Web/API/Element/innerHTML -/pl/docs/DOM:element.insertBefore /pl/docs/Web/API/Element/insertBefore -/pl/docs/DOM:element.lang /pl/docs/Web/API/Element/lang -/pl/docs/DOM:element.lastChild /pl/docs/Web/API/Element/lastChild -/pl/docs/DOM:element.length /pl/docs/Web/API/Element/length -/pl/docs/DOM:element.localName /pl/docs/Web/API/Element/localName -/pl/docs/DOM:element.name /pl/docs/Web/API/Element/name -/pl/docs/DOM:element.namespaceURI /pl/docs/Web/API/Element/namespaceURI -/pl/docs/DOM:element.nextSibling /pl/docs/Web/API/Element/nextSibling -/pl/docs/DOM:element.nodeName /pl/docs/Web/API/Element/nodeName -/pl/docs/DOM:element.nodeType /pl/docs/Web/API/Element/nodeType -/pl/docs/DOM:element.nodeValue /pl/docs/Web/API/Element/nodeValue -/pl/docs/DOM:element.normalize /pl/docs/Web/API/Element/normalize -/pl/docs/DOM:element.offsetHeight /pl/docs/Web/API/Element/offsetHeight -/pl/docs/DOM:element.offsetLeft /pl/docs/Web/API/Element/offsetLeft -/pl/docs/DOM:element.offsetParent /pl/docs/Web/API/Element/offsetParent -/pl/docs/DOM:element.offsetWidth /pl/docs/Web/API/Element/offsetWidth -/pl/docs/DOM:element.onclick /pl/docs/Web/API/Element/onclick -/pl/docs/DOM:element.onkeydown /pl/docs/DOM/element.onkeydown -/pl/docs/DOM:element.onkeypress /pl/docs/Web/API/Element/onkeypress -/pl/docs/DOM:element.onkeyup /pl/docs/Web/API/Element/onkeyup -/pl/docs/DOM:element.onmousedown /pl/docs/Web/API/Element/onmousedown -/pl/docs/DOM:element.onmousemove /pl/docs/Web/API/Element/onmousemove -/pl/docs/DOM:element.ownerDocument /pl/docs/Web/API/Element/ownerDocument -/pl/docs/DOM:element.parentNode /pl/docs/Web/API/Element/parentNode -/pl/docs/DOM:element.prefix /pl/docs/Web/API/Element/prefix -/pl/docs/DOM:element.previousSibling /pl/docs/Web/API/Element/previousSibling +/pl/docs/DOM:element.insertBefore /pl/docs/Web/API/Node/insertBefore +/pl/docs/DOM:element.lang /pl/docs/Web/API/HTMLElement/lang +/pl/docs/DOM:element.lastChild /pl/docs/Web/API/Node/lastChild +/pl/docs/DOM:element.length /pl/docs/Web/API/NodeList/length +/pl/docs/DOM:element.localName /pl/docs/Web/API/Node/localName +/pl/docs/DOM:element.name /pl/docs/conflicting/Web/API +/pl/docs/DOM:element.namespaceURI /pl/docs/Web/API/Node/namespaceURI +/pl/docs/DOM:element.nextSibling /pl/docs/Web/API/Node/nextSibling +/pl/docs/DOM:element.nodeName /pl/docs/Web/API/Node/nodeName +/pl/docs/DOM:element.nodeType /pl/docs/Web/API/Node/nodeType +/pl/docs/DOM:element.nodeValue /pl/docs/Web/API/Node/nodeValue +/pl/docs/DOM:element.normalize /pl/docs/Web/API/Node/normalize +/pl/docs/DOM:element.offsetHeight /pl/docs/Web/API/HTMLElement/offsetHeight +/pl/docs/DOM:element.offsetLeft /pl/docs/Web/API/HTMLElement/offsetLeft +/pl/docs/DOM:element.offsetParent /pl/docs/Web/API/HTMLElement/offsetParent +/pl/docs/DOM:element.offsetWidth /pl/docs/Web/API/HTMLElement/offsetWidth +/pl/docs/DOM:element.onclick /pl/docs/Web/API/GlobalEventHandlers/onclick +/pl/docs/DOM:element.onkeydown /pl/docs/Web/API/GlobalEventHandlers/onkeydown +/pl/docs/DOM:element.onkeypress /pl/docs/Web/API/GlobalEventHandlers/onkeypress +/pl/docs/DOM:element.onkeyup /pl/docs/Web/API/GlobalEventHandlers/onkeyup +/pl/docs/DOM:element.onmousedown /pl/docs/Web/API/GlobalEventHandlers/onmousedown +/pl/docs/DOM:element.onmousemove /pl/docs/Web/API/GlobalEventHandlers/onmousemove +/pl/docs/DOM:element.ownerDocument /pl/docs/Web/API/Node/ownerDocument +/pl/docs/DOM:element.parentNode /pl/docs/Web/API/Node/parentNode +/pl/docs/DOM:element.prefix /pl/docs/Web/API/Node/prefix +/pl/docs/DOM:element.previousSibling /pl/docs/Web/API/Node/previousSibling /pl/docs/DOM:element.removeAttribute /pl/docs/Web/API/Element/removeAttribute /pl/docs/DOM:element.removeAttributeNS /pl/docs/Web/API/Element/removeAttributeNS /pl/docs/DOM:element.removeAttributeNode /pl/docs/Web/API/Element/removeAttributeNode -/pl/docs/DOM:element.removeChild /pl/docs/Web/API/Element/removeChild -/pl/docs/DOM:element.replaceChild /pl/docs/Web/API/Element/replaceChild +/pl/docs/DOM:element.removeChild /pl/docs/Web/API/Node/removeChild +/pl/docs/DOM:element.replaceChild /pl/docs/Web/API/Node/replaceChild /pl/docs/DOM:element.scrollLeft /pl/docs/Web/API/Element/scrollLeft /pl/docs/DOM:element.scrollTop /pl/docs/Web/API/Element/scrollTop /pl/docs/DOM:element.scrollWidth /pl/docs/Web/API/Element/scrollWidth @@ -669,41 +680,41 @@ /pl/docs/DOM:element.setAttributeNS /pl/docs/Web/API/Element/setAttributeNS /pl/docs/DOM:element.setAttributeNode /pl/docs/Web/API/Element/setAttributeNode /pl/docs/DOM:element.setAttributeNodeNS /pl/docs/Web/API/Element/setAttributeNodeNS -/pl/docs/DOM:element.style /pl/docs/Web/API/Element/style -/pl/docs/DOM:element.tabIndex /pl/docs/Web/API/Element/tabIndex +/pl/docs/DOM:element.style /pl/docs/Web/API/ElementCSSInlineStyle/style +/pl/docs/DOM:element.tabIndex /pl/docs/Web/API/HTMLOrForeignElement/tabIndex /pl/docs/DOM:element.tagName /pl/docs/Web/API/Element/tagName -/pl/docs/DOM:element.textContent /pl/docs/Web/API/Element/textContent +/pl/docs/DOM:element.textContent /pl/docs/Web/API/Node/textContent /pl/docs/DOM:event /pl/docs/Web/API/Event -/pl/docs/DOM:event.altKey /pl/docs/Web/API/Event/altKey +/pl/docs/DOM:event.altKey /pl/docs/Web/API/MouseEvent/altKey /pl/docs/DOM:event.bubbles /pl/docs/Web/API/Event/bubbles -/pl/docs/DOM:event.button /pl/docs/Web/API/Event/button -/pl/docs/DOM:event.cancelBubble /pl/docs/Web/API/Event/cancelBubble +/pl/docs/DOM:event.button /pl/docs/Web/API/MouseEvent/button +/pl/docs/DOM:event.cancelBubble /pl/docs/Web/API/UIEvent/cancelBubble /pl/docs/DOM:event.cancelable /pl/docs/Web/API/Event/cancelable -/pl/docs/DOM:event.charCode /pl/docs/Web/API/Event/charCode -/pl/docs/DOM:event.clientX /pl/docs/Web/API/Event/clientX -/pl/docs/DOM:event.clientY /pl/docs/Web/API/Event/clientY -/pl/docs/DOM:event.ctrlKey /pl/docs/Web/API/Event/ctrlKey +/pl/docs/DOM:event.charCode /pl/docs/Web/API/KeyboardEvent/charCode +/pl/docs/DOM:event.clientX /pl/docs/Web/API/MouseEvent/clientX +/pl/docs/DOM:event.clientY /pl/docs/Web/API/MouseEvent/clientY +/pl/docs/DOM:event.ctrlKey /pl/docs/Web/API/MouseEvent/ctrlKey /pl/docs/DOM:event.currentTarget /pl/docs/Web/API/Event/currentTarget /pl/docs/DOM:event.eventPhase /pl/docs/Web/API/Event/eventPhase /pl/docs/DOM:event.initEvent /pl/docs/Web/API/Event/initEvent -/pl/docs/DOM:event.initMouseEvent /pl/docs/Web/API/Event/initMouseEvent -/pl/docs/DOM:event.initUIEvent /pl/docs/Web/API/Event/initUIEvent -/pl/docs/DOM:event.isChar /pl/docs/Web/API/Event/isChar -/pl/docs/DOM:event.keyCode /pl/docs/Web/API/Event/keyCode -/pl/docs/DOM:event.layerX /pl/docs/Web/API/Event/layerX -/pl/docs/DOM:event.layerY /pl/docs/Web/API/Event/layerY -/pl/docs/DOM:event.metaKey /pl/docs/Web/API/Event/metaKey -/pl/docs/DOM:event.pageX /pl/docs/Web/API/Event/pageX -/pl/docs/DOM:event.pageY /pl/docs/Web/API/Event/pageY -/pl/docs/DOM:event.relatedTarget /pl/docs/Web/API/Event/relatedTarget -/pl/docs/DOM:event.screenX /pl/docs/Web/API/Event/screenX -/pl/docs/DOM:event.screenY /pl/docs/Web/API/Event/screenY -/pl/docs/DOM:event.shiftKey /pl/docs/Web/API/Event/shiftKey +/pl/docs/DOM:event.initMouseEvent /pl/docs/Web/API/MouseEvent/initMouseEvent +/pl/docs/DOM:event.initUIEvent /pl/docs/Web/API/UIEvent/initUIEvent +/pl/docs/DOM:event.isChar /pl/docs/Web/API/UIEvent/isChar +/pl/docs/DOM:event.keyCode /pl/docs/Web/API/KeyboardEvent/keyCode +/pl/docs/DOM:event.layerX /pl/docs/Web/API/UIEvent/layerX +/pl/docs/DOM:event.layerY /pl/docs/Web/API/UIEvent/layerY +/pl/docs/DOM:event.metaKey /pl/docs/Web/API/MouseEvent/metaKey +/pl/docs/DOM:event.pageX /pl/docs/Web/API/UIEvent/pageX +/pl/docs/DOM:event.pageY /pl/docs/Web/API/UIEvent/pageY +/pl/docs/DOM:event.relatedTarget /pl/docs/Web/API/MouseEvent/relatedTarget +/pl/docs/DOM:event.screenX /pl/docs/Web/API/MouseEvent/screenX +/pl/docs/DOM:event.screenY /pl/docs/Web/API/MouseEvent/screenY +/pl/docs/DOM:event.shiftKey /pl/docs/Web/API/MouseEvent/shiftKey /pl/docs/DOM:event.stopPropagation /pl/docs/Web/API/Event/stopPropagation /pl/docs/DOM:event.target /pl/docs/Web/API/Event/target /pl/docs/DOM:event.timeStamp /pl/docs/Web/API/Event/timeStamp /pl/docs/DOM:event.type /pl/docs/Web/API/Event/type -/pl/docs/DOM:event.view /pl/docs/Web/API/Event/view +/pl/docs/DOM:event.view /pl/docs/Web/API/UIEvent/view /pl/docs/DOM:form /pl/docs/Web/API/HTMLFormElement /pl/docs/DOM:form.acceptCharset /pl/docs/Web/API/HTMLFormElement/acceptCharset /pl/docs/DOM:form.action /pl/docs/Web/API/HTMLFormElement/action @@ -717,14 +728,14 @@ /pl/docs/DOM:form.submit /pl/docs/Web/API/HTMLFormElement/submit /pl/docs/DOM:form.target /pl/docs/Web/API/HTMLFormElement/target /pl/docs/DOM:range /pl/docs/Web/API/Range -/pl/docs/DOM:stylesheet /pl/docs/Web/API/Stylesheet -/pl/docs/DOM:stylesheet.cssRules /pl/docs/Web/API/Stylesheet/cssRules -/pl/docs/DOM:stylesheet.deleteRule /pl/docs/Web/API/Stylesheet/deleteRule +/pl/docs/DOM:stylesheet /pl/docs/Web/API/CSSStyleSheet +/pl/docs/DOM:stylesheet.cssRules /pl/docs/Web/API/CSSRuleList +/pl/docs/DOM:stylesheet.deleteRule /pl/docs/Web/API/CSSStyleSheet/deleteRule /pl/docs/DOM:stylesheet.disabled /pl/docs/Web/API/Stylesheet/disabled /pl/docs/DOM:stylesheet.href /pl/docs/Web/API/Stylesheet/href -/pl/docs/DOM:stylesheet.insertRule /pl/docs/Web/API/Stylesheet/insertRule +/pl/docs/DOM:stylesheet.insertRule /pl/docs/Web/API/CSSStyleSheet/insertRule /pl/docs/DOM:stylesheet.media /pl/docs/Web/API/Stylesheet/media -/pl/docs/DOM:stylesheet.ownerRule /pl/docs/Web/API/Stylesheet/ownerRule +/pl/docs/DOM:stylesheet.ownerRule /pl/docs/orphaned/Web/API/Stylesheet/ownerRule /pl/docs/DOM:stylesheet.parentStyleSheet /pl/docs/Web/API/Stylesheet/parentStyleSheet /pl/docs/DOM:stylesheet.title /pl/docs/Web/API/Stylesheet/title /pl/docs/DOM:stylesheet.type /pl/docs/Web/API/Stylesheet/type @@ -748,23 +759,23 @@ /pl/docs/DOM:window.getSelection /pl/docs/Web/API/Window/getSelection /pl/docs/DOM:window.name /pl/docs/Web/API/Window/name /pl/docs/DOM:window.navigator /pl/docs/Web/API/Window/navigator -/pl/docs/DOM:window.navigator.appCodeName /pl/docs/Web/API/Navigator/appCodeName -/pl/docs/DOM:window.navigator.appName /pl/docs/Web/API/Navigator/appName -/pl/docs/DOM:window.navigator.appVersion /pl/docs/Web/API/Navigator/appVersion +/pl/docs/DOM:window.navigator.appCodeName /pl/docs/Web/API/NavigatorID/appCodeName +/pl/docs/DOM:window.navigator.appName /pl/docs/Web/API/NavigatorID/appName +/pl/docs/DOM:window.navigator.appVersion /pl/docs/Web/API/NavigatorID/appVersion /pl/docs/DOM:window.navigator.buildID /pl/docs/Web/API/Navigator/buildID /pl/docs/DOM:window.navigator.cookieEnabled /pl/docs/Web/API/Navigator/cookieEnabled -/pl/docs/DOM:window.navigator.javaEnabled /pl/docs/Web/API/Navigator/javaEnabled -/pl/docs/DOM:window.navigator.language /pl/docs/Web/API/Navigator/language -/pl/docs/DOM:window.navigator.mimeTypes /pl/docs/Web/API/Navigator/mimeTypes -/pl/docs/DOM:window.navigator.onLine /pl/docs/Web/API/Navigator/onLine +/pl/docs/DOM:window.navigator.javaEnabled /pl/docs/Web/API/NavigatorPlugins/javaEnabled +/pl/docs/DOM:window.navigator.language /pl/docs/Web/API/NavigatorLanguage/language +/pl/docs/DOM:window.navigator.mimeTypes /pl/docs/Web/API/NavigatorPlugins/mimeTypes +/pl/docs/DOM:window.navigator.onLine /pl/docs/Web/API/NavigatorOnLine/onLine /pl/docs/DOM:window.navigator.oscpu /pl/docs/Web/API/Navigator/oscpu -/pl/docs/DOM:window.navigator.platform /pl/docs/Web/API/Navigator/platform -/pl/docs/DOM:window.navigator.plugins /pl/docs/Web/API/Navigator/plugins -/pl/docs/DOM:window.navigator.product /pl/docs/Web/API/Navigator/product +/pl/docs/DOM:window.navigator.platform /pl/docs/Web/API/NavigatorID/platform +/pl/docs/DOM:window.navigator.plugins /pl/docs/Web/API/NavigatorPlugins/plugins +/pl/docs/DOM:window.navigator.product /pl/docs/Web/API/NavigatorID/product /pl/docs/DOM:window.navigator.productSub /pl/docs/Web/API/Navigator/productSub /pl/docs/DOM:window.navigator.registerContentHandler /pl/docs/Web/API/Navigator/registerContentHandler /pl/docs/DOM:window.navigator.registerProtocolHandler /pl/docs/Web/API/Navigator/registerProtocolHandler -/pl/docs/DOM:window.onload /pl/docs/Web/API/Window/onload +/pl/docs/DOM:window.onload /pl/docs/Web/API/GlobalEventHandlers/onload /pl/docs/DOM:window.open /pl/docs/Web/API/Window/open /pl/docs/DOM:window.openDialog /pl/docs/Web/API/Window/openDialog /pl/docs/DOM:window.opener /pl/docs/Web/API/Window/opener @@ -776,561 +787,571 @@ /pl/docs/DOM:window.scrollByLines /pl/docs/Web/API/Window/scrollByLines /pl/docs/DOM:window.scrollByPages /pl/docs/Web/API/Window/scrollByPages /pl/docs/DOM:window.scrollTo /pl/docs/Web/API/Window/scrollTo -/pl/docs/DOM:window.setInterval /pl/docs/Web/API/Window/setInterval -/pl/docs/DOM:window.setTimeout /pl/docs/Web/API/Window/setTimeout +/pl/docs/DOM:window.setInterval /pl/docs/Web/API/WindowOrWorkerGlobalScope/setInterval +/pl/docs/DOM:window.setTimeout /pl/docs/Web/API/WindowOrWorkerGlobalScope/setTimeout +/pl/docs/DOM_i_JavaScript /pl/docs/orphaned/DOM_i_JavaScript /pl/docs/Developer_Guide /pl/docs/Mozilla/Developer_guide /pl/docs/Developer_Guide/Source_Code /pl/docs/Mozilla/Developer_guide/Source_Code /pl/docs/Dodatki_w_Mozilli_-_FAQ(link) https://addons.mozilla.org/faq.php -/pl/docs/Dodawanie_wyszukiwarek_ze_stron_WWW /pl/docs/Dodawanie_wyszukiwarek_z_poziomu_stron_WWW -/pl/docs/Dokumentacja_CSS /pl/docs/Web/CSS/CSS_Reference +/pl/docs/Dodawanie_wyszukiwarek_z_poziomu_stron_WWW /pl/docs/conflicting/Web/OpenSearch +/pl/docs/Dodawanie_wyszukiwarek_ze_stron_WWW /pl/docs/conflicting/Web/OpenSearch +/pl/docs/Dokumentacja_CSS /pl/docs/Web/CSS/Reference /pl/docs/Dokumentacja_CSS/Rozszerzenia_Mozilli /pl/docs/Web/CSS/Mozilla_Extensions /pl/docs/Dokumentacja_CSS:Rozszerzenia_Mozilli /pl/docs/Web/CSS/Mozilla_Extensions -/pl/docs/Dokumentacja_Gecko_DOM/Wprowadzenie_do_DOM /pl/docs/Dokumentacja_Gecko_DOM/Wprowadzenie +/pl/docs/Dokumentacja_Gecko_DOM /pl/docs/Web/API/Document_Object_Model +/pl/docs/Dokumentacja_Gecko_DOM/Przedmowa /pl/docs/conflicting/Web/API/Document_Object_Model +/pl/docs/Dokumentacja_Gecko_DOM/Przykłady_użycia_DOM /pl/docs/Web/API/Document_Object_Model/Examples +/pl/docs/Dokumentacja_Gecko_DOM/Wprowadzenie /pl/docs/Web/API/Document_Object_Model/Introduction +/pl/docs/Dokumentacja_Gecko_DOM/Wprowadzenie_do_DOM /pl/docs/Web/API/Document_Object_Model/Introduction /pl/docs/Dokumentacja_Gecko_DOM/document /pl/docs/Web/API/Document /pl/docs/Dokumentacja_Gecko_DOM/element /pl/docs/Web/API/Element -/pl/docs/Dokumentacja_Gecko_DOM/element.focus /pl/docs/Web/API/Element/focus -/pl/docs/Dokumentacja_Gecko_DOM/element/appendChild /pl/docs/Web/API/Element/appendChild -/pl/docs/Dokumentacja_Gecko_DOM/element/blur /pl/docs/Web/API/Element/blur -/pl/docs/Dokumentacja_Gecko_DOM/element/cloneNode /pl/docs/Web/API/Element/clientNode -/pl/docs/Dokumentacja_Gecko_DOM/element/focus /pl/docs/Web/API/Element/focus +/pl/docs/Dokumentacja_Gecko_DOM/element.focus /pl/docs/Web/API/HTMLOrForeignElement/focus +/pl/docs/Dokumentacja_Gecko_DOM/element/appendChild /pl/docs/Web/API/Node/appendChild +/pl/docs/Dokumentacja_Gecko_DOM/element/blur /pl/docs/Web/API/HTMLOrForeignElement/blur +/pl/docs/Dokumentacja_Gecko_DOM/element/cloneNode /pl/docs/Web/API/Node/cloneNode +/pl/docs/Dokumentacja_Gecko_DOM/element/focus /pl/docs/Web/API/HTMLOrForeignElement/focus /pl/docs/Dokumentacja_Gecko_DOM/element/getAttribute /pl/docs/Web/API/Element/getAttribute /pl/docs/Dokumentacja_Gecko_DOM/element/setAttribute /pl/docs/Web/API/Element/setAttribute /pl/docs/Dokumentacja_Gecko_DOM/window /pl/docs/Web/API/Window -/pl/docs/Dokumentacja_Gecko_DOM:Przedmowa /pl/docs/Dokumentacja_Gecko_DOM/Przedmowa -/pl/docs/Dokumentacja_Gecko_DOM:Przykłady_użycia_DOM /pl/docs/Dokumentacja_Gecko_DOM/Przykłady_użycia_DOM -/pl/docs/Dokumentacja_Gecko_DOM:Wprowadzenie /pl/docs/Dokumentacja_Gecko_DOM/Wprowadzenie -/pl/docs/Dokumentacja_Gecko_DOM:Wprowadzenie_do_DOM /pl/docs/Dokumentacja_Gecko_DOM/Wprowadzenie +/pl/docs/Dokumentacja_Gecko_DOM:Przedmowa /pl/docs/conflicting/Web/API/Document_Object_Model +/pl/docs/Dokumentacja_Gecko_DOM:Przykłady_użycia_DOM /pl/docs/Web/API/Document_Object_Model/Examples +/pl/docs/Dokumentacja_Gecko_DOM:Wprowadzenie /pl/docs/Web/API/Document_Object_Model/Introduction +/pl/docs/Dokumentacja_Gecko_DOM:Wprowadzenie_do_DOM /pl/docs/Web/API/Document_Object_Model/Introduction /pl/docs/Dokumentacja_Gecko_DOM:document /pl/docs/Web/API/Document /pl/docs/Dokumentacja_Gecko_DOM:element /pl/docs/Web/API/Element -/pl/docs/Dokumentacja_Gecko_DOM:element.focus /pl/docs/Web/API/Element/focus -/pl/docs/Dokumentacja_Gecko_DOM:element:appendChild /pl/docs/Web/API/Element/appendChild -/pl/docs/Dokumentacja_Gecko_DOM:element:blur /pl/docs/Web/API/Element/blur -/pl/docs/Dokumentacja_Gecko_DOM:element:cloneNode /pl/docs/Web/API/Element/clientNode -/pl/docs/Dokumentacja_Gecko_DOM:element:focus /pl/docs/Web/API/Element/focus +/pl/docs/Dokumentacja_Gecko_DOM:element.focus /pl/docs/Web/API/HTMLOrForeignElement/focus +/pl/docs/Dokumentacja_Gecko_DOM:element:appendChild /pl/docs/Web/API/Node/appendChild +/pl/docs/Dokumentacja_Gecko_DOM:element:blur /pl/docs/Web/API/HTMLOrForeignElement/blur +/pl/docs/Dokumentacja_Gecko_DOM:element:cloneNode /pl/docs/Web/API/Node/cloneNode +/pl/docs/Dokumentacja_Gecko_DOM:element:focus /pl/docs/Web/API/HTMLOrForeignElement/focus /pl/docs/Dokumentacja_Gecko_DOM:element:getAttribute /pl/docs/Web/API/Element/getAttribute /pl/docs/Dokumentacja_Gecko_DOM:element:setAttribute /pl/docs/Web/API/Element/setAttribute /pl/docs/Dokumentacja_Gecko_DOM:window /pl/docs/Web/API/Window -/pl/docs/Dokumentacja_języka_JavaScript_1.5 /pl/docs/Web/JavaScript/Referencje -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje /pl/docs/Web/JavaScript/Referencje/Obiekty -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/Boolean /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/Date /pl/docs/Web/JavaScript/Referencje/Obiekty/Date -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/Number /pl/docs/Web/JavaScript/Referencje/Obiekty/Number -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/Object /pl/docs/Web/JavaScript/Referencje/Obiekty/Object -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/String /pl/docs/Web/JavaScript/Referencje/Obiekty/String -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/arguments /pl/docs/Web/JavaScript/Referencje/Funkcje/arguments -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/arguments/callee /pl/docs/Web/JavaScript/Referencje/Funkcje/arguments/callee +/pl/docs/Dokumentacja_języka_JavaScript_1.5 /pl/docs/Web/JavaScript/Reference +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje /pl/docs/Web/JavaScript/Reference/Global_Objects +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/Boolean /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/Date /pl/docs/Web/JavaScript/Reference/Global_Objects/Date +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/Number /pl/docs/Web/JavaScript/Reference/Global_Objects/Number +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/Object /pl/docs/Web/JavaScript/Reference/Global_Objects/Object +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/String /pl/docs/Web/JavaScript/Reference/Global_Objects/String +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/arguments /pl/docs/Web/JavaScript/Reference/Functions/arguments +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/arguments/callee /pl/docs/Web/JavaScript/Reference/Functions/arguments/callee /pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/arguments/caller /pl/docs/Web/JavaScript/Referencje/Funkcje/arguments/caller -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/arguments/length /pl/docs/Web/JavaScript/Referencje/Funkcje/arguments/length -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/decodeURI /pl/docs/Web/JavaScript/Referencje/Obiekty/decodeURI -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/decodeURIComponent /pl/docs/Web/JavaScript/Referencje/Obiekty/decodeURIComponent -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/encodeURI /pl/docs/Web/JavaScript/Referencje/Obiekty/encodeURI -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/encodeURIComponent /pl/docs/Web/JavaScript/Referencje/Obiekty/encodeURIComponent +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/arguments/length /pl/docs/Web/JavaScript/Reference/Functions/arguments/length +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/decodeURI /pl/docs/Web/JavaScript/Reference/Global_Objects/decodeURI +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/decodeURIComponent /pl/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/encodeURI /pl/docs/Web/JavaScript/Reference/Global_Objects/encodeURI +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/encodeURIComponent /pl/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent /pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/eval /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/eval -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/isFinite /pl/docs/Web/JavaScript/Referencje/Obiekty/isFinite -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/isNaN /pl/docs/Web/JavaScript/Referencje/Obiekty/isNaN -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/parseFloat /pl/docs/Web/JavaScript/Referencje/Obiekty/parseFloat -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/parseInt /pl/docs/Web/JavaScript/Referencje/Obiekty/parseInt -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Komentarze /pl/docs/Web/JavaScript/Referencje/Komentarz -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Komentarze/komentarz /pl/docs/Web/JavaScript/Referencje/Komentarz +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/isFinite /pl/docs/Web/JavaScript/Reference/Global_Objects/isFinite +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/isNaN /pl/docs/Web/JavaScript/Reference/Global_Objects/isNaN +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/parseFloat /pl/docs/Web/JavaScript/Reference/Global_Objects/parseFloat +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Funkcje/parseInt /pl/docs/Web/JavaScript/Reference/Global_Objects/parseInt +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Komentarze /pl/docs/Web/JavaScript/Reference/Lexical_grammar +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Komentarze/komentarz /pl/docs/Web/JavaScript/Reference/Lexical_grammar /pl/docs/Dokumentacja_języka_JavaScript_1.5/LiveConnect /pl/docs/Web/JavaScript/Referencje/LiveConnect /pl/docs/Dokumentacja_języka_JavaScript_1.5/LiveConnect/JSException /pl/docs/Web/JavaScript/Referencje/LiveConnect/JSException /pl/docs/Dokumentacja_języka_JavaScript_1.5/LiveConnect/JSObject /pl/docs/Web/JavaScript/Referencje/LiveConnect/JSObject -/pl/docs/Dokumentacja_języka_JavaScript_1.5/O_tym_dokumencie /pl/docs/Web/JavaScript/Referencje/O_tym_dokumencie -/pl/docs/Dokumentacja_języka_JavaScript_1.5/O_tym_dokumencie/Konwencje_formatowania_tekstu /pl/docs/Web/JavaScript/Referencje/O_tym_dokumencie/Konwencje_formatowania_tekstu -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty /pl/docs/Web/JavaScript/Referencje/Obiekty -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array /pl/docs/Web/JavaScript/Referencje/Obiekty/Array -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/concat /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/concat -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/Array -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/every /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/every -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/filter /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/filter -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/forEach /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/forEach -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/indexOf /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/indexOf -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/join /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/join -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/lastIndexOf /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/lastIndexOf -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/length /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/length -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/map /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/map -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/pop /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/pop -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/prototype /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/prototype -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/push /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/push -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/reverse /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/reverse -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/shift /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/shift -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/slice /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/slice -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/some /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/some -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/sort /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/sort -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/splice /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/splice -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/toSource /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/toSource -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/toString /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/toString -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/unshift /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/unshift -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/valueOf /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/valueOf -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean/constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean/prototype /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean/prototype -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean/toSource /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean/toSource -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean/toString /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean/toString -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean/valueOf /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean/valueOf -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date /pl/docs/Web/JavaScript/Referencje/Obiekty/Date -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/UTC /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/UTC -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/constructor -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getDate /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getDate -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getDay /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getDay -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getFullYear /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getFullYear -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getHours /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getHours -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getMilliseconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getMilliseconds -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getMinutes /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getMinutes -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getMonth /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getMonth -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getSeconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getSeconds -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getTime /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getTime -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getTimezoneOffset /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getTimezoneOffset -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCDate /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCDate -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCDay /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCDay -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCFullYear /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCFullYear -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCHours /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCHours -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCMilliseconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCMilliseconds -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCMinutes /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCMinutes -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCMonth /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCMonth -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCSeconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCSeconds -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getYear /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getYear -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/now /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/now -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/parse /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/parse -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/prototype /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/prototype -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setDate /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setDate -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setFullYear /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setFullYear -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setHours /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setHours -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setMilliseconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setMilliseconds -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setMinutes /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setMinutes -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setMonth /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setMonth -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setSeconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setSeconds -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setTime /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setTime -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCDate /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCDate -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCFullYear /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCFullYear -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCHours /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCHours -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCMilliseconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCMilliseconds -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCMinutes /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCMinutes -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCMonth /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCMonth -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCSeconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCSeconds -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setYear /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setYear -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toGMTString /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toGMTString -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toLocaleDateString /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toLocaleDateString -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toLocaleString /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toLocaleString -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toLocaleTimeString /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toLocaleTimeString -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toSource /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toSource -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toString /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toString -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toUTCString /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toUTCString -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/valueOf /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/valueOf -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Function/arguments /pl/docs/Web/JavaScript/Referencje/Obiekty/Function/arguments +/pl/docs/Dokumentacja_języka_JavaScript_1.5/O_tym_dokumencie /pl/docs/Web/JavaScript/Reference/About +/pl/docs/Dokumentacja_języka_JavaScript_1.5/O_tym_dokumencie/Konwencje_formatowania_tekstu /pl/docs/orphaned/Web/JavaScript/Referencje/O_tym_dokumencie/Konwencje_formatowania_tekstu +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty /pl/docs/Web/JavaScript/Reference/Global_Objects +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array /pl/docs/Web/JavaScript/Reference/Global_Objects/Array +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/concat /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/concat +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/Array +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/every /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/every +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/filter /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/filter +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/forEach /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/indexOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/join /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/join +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/lastIndexOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/length /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/length +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/map /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/map +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/pop /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/pop +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/prototype /pl/docs/orphaned/Web/JavaScript/Reference/Global_Objects/Array/prototype +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/push /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/push +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/reverse /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/reverse +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/shift /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/shift +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/slice /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/slice +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/some /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/some +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/sort /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/sort +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/splice /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/splice +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/toSource +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/toString +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/unshift /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/unshift +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/valueOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/valueOf +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean/constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean/prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Boolean +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean/toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean/toSource +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean/toString +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean/valueOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean/valueOf +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date /pl/docs/Web/JavaScript/Reference/Global_Objects/Date +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/UTC /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/UTC +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/constructor /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Date +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getDate /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getDate +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getDay /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getDay +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getFullYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getFullYear +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getHours /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getHours +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getMilliseconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getMilliseconds +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getMinutes /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getMinutes +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getMonth /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getMonth +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getSeconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getSeconds +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getTime /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getTime +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getTimezoneOffset /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getTimezoneOffset +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCDate /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCDate +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCDay /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCDay +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCFullYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCFullYear +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCHours /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCHours +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCMilliseconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCMilliseconds +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCMinutes /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCMinutes +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCMonth /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCMonth +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCSeconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCSeconds +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getYear +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/now /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/now +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/parse /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/parse +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Date_73c046d653c590f4914731d078f3b2c5 +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setDate /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setDate +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setFullYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setFullYear +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setHours /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setHours +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setMilliseconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setMilliseconds +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setMinutes /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setMinutes +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setMonth /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setMonth +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setSeconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setSeconds +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setTime /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setTime +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCDate /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCDate +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCFullYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCFullYear +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCHours /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCHours +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCMilliseconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCMilliseconds +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCMinutes /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCMinutes +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCMonth /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCMonth +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCSeconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCSeconds +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setYear +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toGMTString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toGMTString +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toLocaleDateString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleDateString +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toLocaleString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleString +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toLocaleTimeString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleTimeString +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toSource +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toString +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toUTCString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toUTCString +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/valueOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/valueOf +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Function/arguments /pl/docs/Web/JavaScript/Reference/Global_Objects/Function/arguments /pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Function/arity /pl/docs/Web/JavaScript/Referencje/Obiekty/Function/arity -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Function/caller /pl/docs/Web/JavaScript/Referencje/Obiekty/Function/caller -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Function/constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/Function -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Function/length /pl/docs/Web/JavaScript/Referencje/Obiekty/Function/length -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Function/toString /pl/docs/Web/JavaScript/Referencje/Obiekty/Function/toString +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Function/caller /pl/docs/Web/JavaScript/Reference/Global_Objects/Function/caller +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Function/constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/Function +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Function/length /pl/docs/Web/JavaScript/Reference/Global_Objects/Function/length +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Function/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Function/toString /pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/JavaArray /pl/docs/Web/JavaScript/Referencje/Obiekty/JavaArray /pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/JavaArray/length /pl/docs/Web/JavaScript/Referencje/Obiekty/JavaArray/length /pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/JavaArray/toString /pl/docs/Web/JavaScript/Referencje/Obiekty/JavaArray/toString /pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/JavaClass /pl/docs/Web/JavaScript/Referencje/Obiekty/JavaClass /pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/JavaObject /pl/docs/Web/JavaScript/Referencje/Obiekty/JavaObject /pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/JavaPackage /pl/docs/Web/JavaScript/Referencje/Obiekty/JavaPackage -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math /pl/docs/Web/JavaScript/Referencje/Obiekty/Math -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/E /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/E -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/LN10 /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/LN10 -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/LN2 /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/LN2 -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/LOG10E /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/LOG10E -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/LOG2E /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/LOG2E -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/PI /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/PI -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/SQRT1_2 /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/SQRT1_2 -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/SQRT2 /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/SQRT2 -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/abs /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/abs -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/acos /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/acos -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/asin /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/asin -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/atan /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/atan -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/atan2 /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/atan2 -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/ceil /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/ceil -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/cos /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/cos -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/exp /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/exp -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/floor /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/floor -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/log /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/log -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/max /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/max -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/min /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/min -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/pow /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/pow -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/random /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/random -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/round /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/round -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/sin /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/sin -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/sqrt /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/sqrt -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/tan /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/tan -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number /pl/docs/Web/JavaScript/Referencje/Obiekty/Number -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/MAX_VALUE /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/MAX_VALUE -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/MIN_VALUE /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/MIN_VALUE -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/NEGATIVE_INFINITY /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/NEGATIVE_INFINITY -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/NaN /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/NaN -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/POSITIVE_INFINITY /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/POSITIVE_INFINITY -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/constructor -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/toExponential /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/toExponential -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/toFixed /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/toFixed -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/toPrecision /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/toPrecision -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/toString /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/toString -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object /pl/docs/Web/JavaScript/Referencje/Obiekty/Object -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/constructor +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math /pl/docs/Web/JavaScript/Reference/Global_Objects/Math +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/E /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/E +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/LN10 /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/LN10 +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/LN2 /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/LN2 +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/LOG10E /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/LOG10E +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/LOG2E /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/LOG2E +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/PI /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/PI +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/SQRT1_2 /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/SQRT1_2 +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/SQRT2 /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/SQRT2 +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/abs /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/abs +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/acos /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/acos +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/asin /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/asin +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/atan /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/atan +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/atan2 /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/atan2 +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/ceil /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/ceil +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/cos /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/cos +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/exp /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/exp +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/floor /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/floor +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/log /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/log +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/max /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/max +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/min /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/min +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/pow /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/pow +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/random /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/random +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/round /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/round +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/sin /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/sin +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/sqrt /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/sqrt +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/tan /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/tan +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number /pl/docs/Web/JavaScript/Reference/Global_Objects/Number +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/MAX_VALUE /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_VALUE +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/MIN_VALUE /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/MIN_VALUE +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/NEGATIVE_INFINITY /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/NEGATIVE_INFINITY +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/NaN /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/NaN +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/POSITIVE_INFINITY /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/POSITIVE_INFINITY +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/constructor /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Number +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/toExponential /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/toExponential +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/toFixed /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/toFixed +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/toPrecision /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/toPrecision +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/toString +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object /pl/docs/Web/JavaScript/Reference/Global_Objects/Object +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/constructor /pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/eval /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/eval -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/prototype /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/prototype -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/toLocaleString /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/toLocaleString -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/toSource /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/toSource -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/toString /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/toString +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Object +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/toLocaleString /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/toLocaleString +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/toSource +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/toString /pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/unwatch /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/unwatch -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/valueOf /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/valueOf +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/valueOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/valueOf /pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/watch /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/watch /pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Packages /pl/docs/Web/JavaScript/Referencje/Obiekty/Packages /pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Packages/java /pl/docs/Web/JavaScript/Referencje/Obiekty/Packages/java /pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Packages/nazwaKlasy /pl/docs/Web/JavaScript/Referencje/Obiekty/Packages/nazwaKlasy /pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Packages/netscape /pl/docs/Web/JavaScript/Referencje/Obiekty/Packages/netscape /pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/Packages/sun /pl/docs/Web/JavaScript/Referencje/Obiekty/Packages/sun -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/exec /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/exec -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/global /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/global -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/ignoreCase /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/ignoreCase -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/prototype /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/prototype -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/source /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/source -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/test /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/test -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/toSource /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/toSource -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/toString /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/toString -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String /pl/docs/Web/JavaScript/Referencje/Obiekty/String -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/anchor /pl/docs/Web/JavaScript/Referencje/Obiekty/String/anchor -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/big /pl/docs/Web/JavaScript/Referencje/Obiekty/String/big -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/blink /pl/docs/Web/JavaScript/Referencje/Obiekty/String/blink -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/bold /pl/docs/Web/JavaScript/Referencje/Obiekty/String/bold -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/charAt /pl/docs/Web/JavaScript/Referencje/Obiekty/String/charAt -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/charCodeAt /pl/docs/Web/JavaScript/Referencje/Obiekty/String/charCodeAt -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/concat /pl/docs/Web/JavaScript/Referencje/Obiekty/String/concat -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/String -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/fontcolor /pl/docs/Web/JavaScript/Referencje/Obiekty/String/fontcolor -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/fontsize /pl/docs/Web/JavaScript/Referencje/Obiekty/String/fontsize -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/fromCharCode /pl/docs/Web/JavaScript/Referencje/Obiekty/String/fromCharCode -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/italics /pl/docs/Web/JavaScript/Referencje/Obiekty/String/italics -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/link /pl/docs/Web/JavaScript/Referencje/Obiekty/String/link -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/prototype /pl/docs/Web/JavaScript/Referencje/Obiekty/String/prototype -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/search /pl/docs/Web/JavaScript/Referencje/Obiekty/String/search -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/slice /pl/docs/Web/JavaScript/Referencje/Obiekty/String/slice -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/small /pl/docs/Web/JavaScript/Referencje/Obiekty/String/small -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/strike /pl/docs/Web/JavaScript/Referencje/Obiekty/String/strike -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/sub /pl/docs/Web/JavaScript/Referencje/Obiekty/String/sub -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/substr /pl/docs/Web/JavaScript/Referencje/Obiekty/String/substr -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/substring /pl/docs/Web/JavaScript/Referencje/Obiekty/String/substring -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/sup /pl/docs/Web/JavaScript/Referencje/Obiekty/String/sup -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/toLowerCase /pl/docs/Web/JavaScript/Referencje/Obiekty/String/toLowerCase -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/toSource /pl/docs/Web/JavaScript/Referencje/Obiekty/String/toSource -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/toString /pl/docs/Web/JavaScript/Referencje/Obiekty/String/toString -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/toUpperCase /pl/docs/Web/JavaScript/Referencje/Obiekty/String/toUpperCase -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/valueOf /pl/docs/Web/JavaScript/Referencje/Obiekty/String/valueOf +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/exec /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/exec +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/global /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/global +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/ignoreCase /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/ignoreCase +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/RegExp +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/source /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/source +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/test /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/test +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/toSource +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/toString +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String /pl/docs/Web/JavaScript/Reference/Global_Objects/String +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/anchor /pl/docs/Web/JavaScript/Reference/Global_Objects/String/anchor +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/big /pl/docs/Web/JavaScript/Reference/Global_Objects/String/big +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/blink /pl/docs/Web/JavaScript/Reference/Global_Objects/String/blink +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/bold /pl/docs/Web/JavaScript/Reference/Global_Objects/String/bold +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/charAt /pl/docs/Web/JavaScript/Reference/Global_Objects/String/charAt +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/charCodeAt /pl/docs/Web/JavaScript/Reference/Global_Objects/String/charCodeAt +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/concat /pl/docs/Web/JavaScript/Reference/Global_Objects/String/concat +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/String +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/fontcolor /pl/docs/Web/JavaScript/Reference/Global_Objects/String/fontcolor +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/fontsize /pl/docs/Web/JavaScript/Reference/Global_Objects/String/fontsize +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/fromCharCode /pl/docs/Web/JavaScript/Reference/Global_Objects/String/fromCharCode +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/italics /pl/docs/Web/JavaScript/Reference/Global_Objects/String/italics +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/link /pl/docs/Web/JavaScript/Reference/Global_Objects/String/link +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/String +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/search /pl/docs/Web/JavaScript/Reference/Global_Objects/String/search +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/slice /pl/docs/Web/JavaScript/Reference/Global_Objects/String/slice +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/small /pl/docs/Web/JavaScript/Reference/Global_Objects/String/small +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/strike /pl/docs/Web/JavaScript/Reference/Global_Objects/String/strike +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/sub /pl/docs/Web/JavaScript/Reference/Global_Objects/String/sub +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/substr /pl/docs/Web/JavaScript/Reference/Global_Objects/String/substr +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/substring /pl/docs/Web/JavaScript/Reference/Global_Objects/String/substring +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/sup /pl/docs/Web/JavaScript/Reference/Global_Objects/String/sup +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/toLowerCase /pl/docs/Web/JavaScript/Reference/Global_Objects/String/toLowerCase +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/String/toSource +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/String/toString +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/toUpperCase /pl/docs/Web/JavaScript/Reference/Global_Objects/String/toUpperCase +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/valueOf /pl/docs/Web/JavaScript/Reference/Global_Objects/String/valueOf /pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/java /pl/docs/Web/JavaScript/Referencje/Obiekty/java /pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/netscape /pl/docs/Web/JavaScript/Referencje/Obiekty/netscape /pl/docs/Dokumentacja_języka_JavaScript_1.5/Obiekty/sun /pl/docs/Web/JavaScript/Referencje/Obiekty/sun -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory /pl/docs/Web/JavaScript/Referencje/Operatory -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_arytmetyczne /pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_arytmetyczne -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_działające_na_ciągach_znaków /pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_działające_na_ciągach_znaków -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_pamięci /pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_pamięci -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_porównania /pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_porównania -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_przypisania /pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_przypisania -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne /pl/docs/Web/JavaScript/Referencje/Operatory -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_delete /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_delete -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_function /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_function -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_in /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_in -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_instanceof /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_instanceof -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_new /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_new -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_przecinkowy /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_przecinkowy -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_typeof /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_typeof -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_void /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_void -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_warunkowy /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_warunkowy -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Pierwszeństwo_operatorów /pl/docs/Web/JavaScript/Referencje/Operatory/Pierwszeństwo_operatorów -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia /pl/docs/Web/JavaScript/Referencje/Polecenia -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/block /pl/docs/Web/JavaScript/Referencje/Polecenia/block -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/break /pl/docs/Web/JavaScript/Referencje/Polecenia/break -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/const /pl/docs/Web/JavaScript/Referencje/Polecenia/const -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/do...while /pl/docs/Web/JavaScript/Referencje/Polecenia/do...while -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/etykieta /pl/docs/Web/JavaScript/Referencje/Polecenia/etykieta -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/export /pl/docs/Web/JavaScript/Referencje/Polecenia/export -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/for /pl/docs/Web/JavaScript/Referencje/Polecenia/for -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/function /pl/docs/Web/JavaScript/Referencje/Polecenia/function -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/if...else /pl/docs/Web/JavaScript/Referencje/Polecenia/if...else -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/import /pl/docs/Web/JavaScript/Referencje/Polecenia/import -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/return /pl/docs/Web/JavaScript/Referencje/Polecenia/return -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/switch /pl/docs/Web/JavaScript/Referencje/Polecenia/switch -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/throw /pl/docs/Web/JavaScript/Referencje/Polecenia/throw -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/var /pl/docs/Web/JavaScript/Referencje/Polecenia/var -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/while /pl/docs/Web/JavaScript/Referencje/Polecenia/while -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Przestarzałe_własności_i_metody /pl/docs/Web/JavaScript/Referencje/Przestarzałe_własności_i_metody -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Słowa_zarezerwowane /pl/docs/Web/JavaScript/Referencje/Słowa_zarezerwowane -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Wyrażenia /pl/docs/Web/JavaScript/Referencje/Polecenia -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Wyrażenia/const /pl/docs/Web/JavaScript/Referencje/Polecenia/const -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Własności /pl/docs/Web/JavaScript/Referencje/Obiekty -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Własności/Infinity /pl/docs/Web/JavaScript/Referencje/Obiekty/Infinity -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Własności/NaN /pl/docs/Web/JavaScript/Referencje/Obiekty/NaN -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Własności/undefined /pl/docs/Web/JavaScript/Referencje/Obiekty/undefined -/pl/docs/Dokumentacja_języka_JavaScript_1.5/Własnościundefined /pl/docs/Web/JavaScript/Referencje/Obiekty/undefined -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje /pl/docs/Web/JavaScript/Referencje/Obiekty -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:Boolean /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:Date /pl/docs/Web/JavaScript/Referencje/Obiekty/Date -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:Number /pl/docs/Web/JavaScript/Referencje/Obiekty/Number -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:Object /pl/docs/Web/JavaScript/Referencje/Obiekty/Object -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:String /pl/docs/Web/JavaScript/Referencje/Obiekty/String -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:arguments /pl/docs/Web/JavaScript/Referencje/Funkcje/arguments -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:arguments:callee /pl/docs/Web/JavaScript/Referencje/Funkcje/arguments/callee +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory /pl/docs/Web/JavaScript/Reference/Operators +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_arytmetyczne /pl/docs/conflicting/Web/JavaScript/Reference/Operators_1f6634ff6e3ccef661281d6e50002147 +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_działające_na_ciągach_znaków /pl/docs/conflicting/Web/JavaScript/Reference/Operators_1d09774e621bf2431a4f5594a248dd21 +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_pamięci /pl/docs/Web/JavaScript/Reference/Operators/Property_Accessors +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_porównania /pl/docs/conflicting/Web/JavaScript/Reference/Operators_5ba63337c20d72b8f8747a954b9b6c94 +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_przypisania /pl/docs/conflicting/Web/JavaScript/Reference/Operators_de3666cd349851054926d5e52fced70d +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne /pl/docs/Web/JavaScript/Reference/Operators +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_delete /pl/docs/Web/JavaScript/Reference/Operators/delete +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_function /pl/docs/Web/JavaScript/Reference/Operators/function +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_in /pl/docs/Web/JavaScript/Reference/Operators/in +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_instanceof /pl/docs/Web/JavaScript/Reference/Operators/instanceof +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_new /pl/docs/Web/JavaScript/Reference/Operators/new +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_przecinkowy /pl/docs/Web/JavaScript/Reference/Operators/Comma_Operator +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_typeof /pl/docs/Web/JavaScript/Reference/Operators/typeof +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_void /pl/docs/Web/JavaScript/Reference/Operators/void +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_warunkowy /pl/docs/Web/JavaScript/Reference/Operators/Conditional_Operator +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Operatory/Pierwszeństwo_operatorów /pl/docs/Web/JavaScript/Reference/Operators/Operator_Precedence +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia /pl/docs/Web/JavaScript/Reference/Statements +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/block /pl/docs/Web/JavaScript/Reference/Statements/block +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/break /pl/docs/Web/JavaScript/Reference/Statements/break +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/const /pl/docs/Web/JavaScript/Reference/Statements/const +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/do...while /pl/docs/Web/JavaScript/Reference/Statements/do...while +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/etykieta /pl/docs/Web/JavaScript/Reference/Statements/label +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/export /pl/docs/Web/JavaScript/Reference/Statements/export +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/for /pl/docs/Web/JavaScript/Reference/Statements/for +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/function /pl/docs/Web/JavaScript/Reference/Statements/function +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/if...else /pl/docs/Web/JavaScript/Reference/Statements/if...else +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/import /pl/docs/Web/JavaScript/Reference/Statements/import +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/return /pl/docs/Web/JavaScript/Reference/Statements/return +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/switch /pl/docs/Web/JavaScript/Reference/Statements/switch +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/throw /pl/docs/Web/JavaScript/Reference/Statements/throw +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/var /pl/docs/Web/JavaScript/Reference/Statements/var +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Polecenia/while /pl/docs/Web/JavaScript/Reference/Statements/while +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Przestarzałe_własności_i_metody /pl/docs/Web/JavaScript/Reference/Deprecated_and_obsolete_features +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Słowa_zarezerwowane /pl/docs/conflicting/Web/JavaScript/Reference/Lexical_grammar +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Wyrażenia /pl/docs/Web/JavaScript/Reference/Statements +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Wyrażenia/const /pl/docs/Web/JavaScript/Reference/Statements/const +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Własności /pl/docs/Web/JavaScript/Reference/Global_Objects +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Własności/Infinity /pl/docs/Web/JavaScript/Reference/Global_Objects/Infinity +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Własności/NaN /pl/docs/Web/JavaScript/Reference/Global_Objects/NaN +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Własności/undefined /pl/docs/Web/JavaScript/Reference/Global_Objects/undefined +/pl/docs/Dokumentacja_języka_JavaScript_1.5/Własnościundefined /pl/docs/Web/JavaScript/Reference/Global_Objects/undefined +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje /pl/docs/Web/JavaScript/Reference/Global_Objects +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:Boolean /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:Date /pl/docs/Web/JavaScript/Reference/Global_Objects/Date +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:Number /pl/docs/Web/JavaScript/Reference/Global_Objects/Number +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:Object /pl/docs/Web/JavaScript/Reference/Global_Objects/Object +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:String /pl/docs/Web/JavaScript/Reference/Global_Objects/String +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:arguments /pl/docs/Web/JavaScript/Reference/Functions/arguments +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:arguments:callee /pl/docs/Web/JavaScript/Reference/Functions/arguments/callee /pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:arguments:caller /pl/docs/Web/JavaScript/Referencje/Funkcje/arguments/caller -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:arguments:length /pl/docs/Web/JavaScript/Referencje/Funkcje/arguments/length -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:decodeURI /pl/docs/Web/JavaScript/Referencje/Obiekty/decodeURI -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:decodeURIComponent /pl/docs/Web/JavaScript/Referencje/Obiekty/decodeURIComponent -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:encodeURI /pl/docs/Web/JavaScript/Referencje/Obiekty/encodeURI -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:encodeURIComponent /pl/docs/Web/JavaScript/Referencje/Obiekty/encodeURIComponent +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:arguments:length /pl/docs/Web/JavaScript/Reference/Functions/arguments/length +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:decodeURI /pl/docs/Web/JavaScript/Reference/Global_Objects/decodeURI +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:decodeURIComponent /pl/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:encodeURI /pl/docs/Web/JavaScript/Reference/Global_Objects/encodeURI +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:encodeURIComponent /pl/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent /pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:eval /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/eval -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:isFinite /pl/docs/Web/JavaScript/Referencje/Obiekty/isFinite -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:isNaN /pl/docs/Web/JavaScript/Referencje/Obiekty/isNaN -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:parseFloat /pl/docs/Web/JavaScript/Referencje/Obiekty/parseFloat -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:parseInt /pl/docs/Web/JavaScript/Referencje/Obiekty/parseInt -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Komentarze /pl/docs/Web/JavaScript/Referencje/Komentarz -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Komentarze:komentarz /pl/docs/Web/JavaScript/Referencje/Komentarz +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:isFinite /pl/docs/Web/JavaScript/Reference/Global_Objects/isFinite +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:isNaN /pl/docs/Web/JavaScript/Reference/Global_Objects/isNaN +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:parseFloat /pl/docs/Web/JavaScript/Reference/Global_Objects/parseFloat +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Funkcje:parseInt /pl/docs/Web/JavaScript/Reference/Global_Objects/parseInt +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Komentarze /pl/docs/Web/JavaScript/Reference/Lexical_grammar +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Komentarze:komentarz /pl/docs/Web/JavaScript/Reference/Lexical_grammar /pl/docs/Dokumentacja_języka_JavaScript_1.5:LiveConnect /pl/docs/Web/JavaScript/Referencje/LiveConnect /pl/docs/Dokumentacja_języka_JavaScript_1.5:LiveConnect:JSException /pl/docs/Web/JavaScript/Referencje/LiveConnect/JSException /pl/docs/Dokumentacja_języka_JavaScript_1.5:LiveConnect:JSObject /pl/docs/Web/JavaScript/Referencje/LiveConnect/JSObject -/pl/docs/Dokumentacja_języka_JavaScript_1.5:O_tym_dokumencie /pl/docs/Web/JavaScript/Referencje/O_tym_dokumencie -/pl/docs/Dokumentacja_języka_JavaScript_1.5:O_tym_dokumencie:Konwencje_formatowania_tekstu /pl/docs/Web/JavaScript/Referencje/O_tym_dokumencie/Konwencje_formatowania_tekstu -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty /pl/docs/Web/JavaScript/Referencje/Obiekty -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array /pl/docs/Web/JavaScript/Referencje/Obiekty/Array -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:concat /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/concat -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/Array -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:every /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/every -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:filter /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/filter -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:forEach /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/forEach -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:indexOf /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/indexOf -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:join /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/join -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:lastIndexOf /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/lastIndexOf -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:length /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/length -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:map /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/map -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:pop /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/pop -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:prototype /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/prototype -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:push /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/push -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:reverse /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/reverse -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:shift /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/shift -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:slice /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/slice -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:some /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/some -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:sort /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/sort -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:splice /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/splice -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:toSource /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/toSource -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:toString /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/toString -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:unshift /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/unshift -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:valueOf /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/valueOf -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Boolean /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Boolean:constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Boolean:prototype /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean/prototype -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Boolean:toSource /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean/toSource -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Boolean:toString /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean/toString -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Boolean:valueOf /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean/valueOf -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date /pl/docs/Web/JavaScript/Referencje/Obiekty/Date -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:UTC /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/UTC -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/constructor -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getDate /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getDate -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getDay /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getDay -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getFullYear /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getFullYear -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getHours /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getHours -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getMilliseconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getMilliseconds -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getMinutes /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getMinutes -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getMonth /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getMonth -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getSeconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getSeconds -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getTime /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getTime -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getTimezoneOffset /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getTimezoneOffset -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getUTCDate /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCDate -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getUTCDay /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCDay -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getUTCFullYear /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCFullYear -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getUTCHours /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCHours -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getUTCMilliseconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCMilliseconds -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getUTCMinutes /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCMinutes -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getUTCMonth /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCMonth -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getUTCSeconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCSeconds -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getYear /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getYear -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:now /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/now -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:parse /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/parse -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:prototype /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/prototype -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setDate /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setDate -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setFullYear /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setFullYear -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setHours /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setHours -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setMilliseconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setMilliseconds -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setMinutes /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setMinutes -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setMonth /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setMonth -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setSeconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setSeconds -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setTime /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setTime -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setUTCDate /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCDate -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setUTCFullYear /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCFullYear -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setUTCHours /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCHours -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setUTCMilliseconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCMilliseconds -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setUTCMinutes /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCMinutes -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setUTCMonth /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCMonth -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setUTCSeconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCSeconds -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setYear /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setYear -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:toGMTString /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toGMTString -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:toLocaleDateString /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toLocaleDateString -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:toLocaleString /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toLocaleString -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:toLocaleTimeString /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toLocaleTimeString -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:toSource /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toSource -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:toString /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toString -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:toUTCString /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toUTCString -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:valueOf /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/valueOf -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Function:arguments /pl/docs/Web/JavaScript/Referencje/Obiekty/Function/arguments +/pl/docs/Dokumentacja_języka_JavaScript_1.5:O_tym_dokumencie /pl/docs/Web/JavaScript/Reference/About +/pl/docs/Dokumentacja_języka_JavaScript_1.5:O_tym_dokumencie:Konwencje_formatowania_tekstu /pl/docs/orphaned/Web/JavaScript/Referencje/O_tym_dokumencie/Konwencje_formatowania_tekstu +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty /pl/docs/Web/JavaScript/Reference/Global_Objects +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array /pl/docs/Web/JavaScript/Reference/Global_Objects/Array +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:concat /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/concat +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/Array +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:every /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/every +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:filter /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/filter +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:forEach /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:indexOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:join /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/join +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:lastIndexOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:length /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/length +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:map /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/map +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:pop /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/pop +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:prototype /pl/docs/orphaned/Web/JavaScript/Reference/Global_Objects/Array/prototype +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:push /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/push +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:reverse /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/reverse +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:shift /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/shift +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:slice /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/slice +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:some /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/some +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:sort /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/sort +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:splice /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/splice +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/toSource +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/toString +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:unshift /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/unshift +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Array:valueOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/valueOf +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Boolean /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Boolean:constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Boolean:prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Boolean +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Boolean:toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean/toSource +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Boolean:toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean/toString +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Boolean:valueOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean/valueOf +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date /pl/docs/Web/JavaScript/Reference/Global_Objects/Date +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:UTC /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/UTC +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:constructor /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Date +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getDate /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getDate +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getDay /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getDay +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getFullYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getFullYear +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getHours /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getHours +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getMilliseconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getMilliseconds +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getMinutes /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getMinutes +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getMonth /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getMonth +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getSeconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getSeconds +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getTime /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getTime +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getTimezoneOffset /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getTimezoneOffset +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getUTCDate /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCDate +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getUTCDay /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCDay +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getUTCFullYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCFullYear +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getUTCHours /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCHours +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getUTCMilliseconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCMilliseconds +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getUTCMinutes /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCMinutes +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getUTCMonth /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCMonth +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getUTCSeconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCSeconds +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:getYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getYear +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:now /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/now +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:parse /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/parse +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Date_73c046d653c590f4914731d078f3b2c5 +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setDate /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setDate +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setFullYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setFullYear +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setHours /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setHours +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setMilliseconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setMilliseconds +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setMinutes /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setMinutes +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setMonth /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setMonth +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setSeconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setSeconds +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setTime /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setTime +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setUTCDate /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCDate +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setUTCFullYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCFullYear +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setUTCHours /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCHours +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setUTCMilliseconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCMilliseconds +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setUTCMinutes /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCMinutes +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setUTCMonth /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCMonth +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setUTCSeconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCSeconds +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:setYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setYear +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:toGMTString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toGMTString +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:toLocaleDateString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleDateString +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:toLocaleString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleString +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:toLocaleTimeString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleTimeString +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toSource +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toString +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:toUTCString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toUTCString +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Date:valueOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/valueOf +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Function:arguments /pl/docs/Web/JavaScript/Reference/Global_Objects/Function/arguments /pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Function:arity /pl/docs/Web/JavaScript/Referencje/Obiekty/Function/arity -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Function:caller /pl/docs/Web/JavaScript/Referencje/Obiekty/Function/caller -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Function:constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/Function -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Function:length /pl/docs/Web/JavaScript/Referencje/Obiekty/Function/length -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Function:toString /pl/docs/Web/JavaScript/Referencje/Obiekty/Function/toString +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Function:caller /pl/docs/Web/JavaScript/Reference/Global_Objects/Function/caller +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Function:constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/Function +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Function:length /pl/docs/Web/JavaScript/Reference/Global_Objects/Function/length +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Function:toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Function/toString /pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:JavaArray /pl/docs/Web/JavaScript/Referencje/Obiekty/JavaArray /pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:JavaArray:length /pl/docs/Web/JavaScript/Referencje/Obiekty/JavaArray/length /pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:JavaArray:toString /pl/docs/Web/JavaScript/Referencje/Obiekty/JavaArray/toString /pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:JavaClass /pl/docs/Web/JavaScript/Referencje/Obiekty/JavaClass /pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:JavaObject /pl/docs/Web/JavaScript/Referencje/Obiekty/JavaObject /pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:JavaPackage /pl/docs/Web/JavaScript/Referencje/Obiekty/JavaPackage -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math /pl/docs/Web/JavaScript/Referencje/Obiekty/Math -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:E /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/E -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:LN10 /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/LN10 -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:LN2 /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/LN2 -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:LOG10E /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/LOG10E -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:LOG2E /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/LOG2E -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:PI /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/PI -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:SQRT1_2 /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/SQRT1_2 -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:SQRT2 /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/SQRT2 -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:abs /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/abs -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:acos /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/acos -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:asin /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/asin -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:atan /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/atan -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:atan2 /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/atan2 -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:ceil /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/ceil -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:cos /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/cos -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:exp /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/exp -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:floor /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/floor -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:log /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/log -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:max /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/max -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:min /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/min -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:pow /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/pow -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:random /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/random -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:round /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/round -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:sin /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/sin -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:sqrt /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/sqrt -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:tan /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/tan -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number /pl/docs/Web/JavaScript/Referencje/Obiekty/Number -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number:MAX_VALUE /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/MAX_VALUE -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number:MIN_VALUE /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/MIN_VALUE -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number:NEGATIVE_INFINITY /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/NEGATIVE_INFINITY -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number:NaN /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/NaN -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number:POSITIVE_INFINITY /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/POSITIVE_INFINITY -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number:constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/constructor -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number:toExponential /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/toExponential -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number:toFixed /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/toFixed -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number:toPrecision /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/toPrecision -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number:toString /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/toString -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Object /pl/docs/Web/JavaScript/Referencje/Obiekty/Object -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Object:constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/constructor +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math /pl/docs/Web/JavaScript/Reference/Global_Objects/Math +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:E /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/E +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:LN10 /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/LN10 +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:LN2 /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/LN2 +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:LOG10E /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/LOG10E +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:LOG2E /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/LOG2E +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:PI /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/PI +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:SQRT1_2 /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/SQRT1_2 +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:SQRT2 /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/SQRT2 +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:abs /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/abs +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:acos /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/acos +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:asin /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/asin +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:atan /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/atan +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:atan2 /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/atan2 +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:ceil /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/ceil +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:cos /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/cos +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:exp /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/exp +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:floor /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/floor +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:log /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/log +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:max /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/max +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:min /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/min +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:pow /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/pow +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:random /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/random +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:round /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/round +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:sin /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/sin +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:sqrt /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/sqrt +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Math:tan /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/tan +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number /pl/docs/Web/JavaScript/Reference/Global_Objects/Number +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number:MAX_VALUE /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_VALUE +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number:MIN_VALUE /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/MIN_VALUE +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number:NEGATIVE_INFINITY /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/NEGATIVE_INFINITY +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number:NaN /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/NaN +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number:POSITIVE_INFINITY /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/POSITIVE_INFINITY +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number:constructor /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Number +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number:toExponential /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/toExponential +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number:toFixed /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/toFixed +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number:toPrecision /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/toPrecision +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Number:toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/toString +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Object /pl/docs/Web/JavaScript/Reference/Global_Objects/Object +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Object:constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/constructor /pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Object:eval /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/eval -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Object:prototype /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/prototype -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Object:toLocaleString /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/toLocaleString -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Object:toSource /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/toSource -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Object:toString /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/toString +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Object:prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Object +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Object:toLocaleString /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/toLocaleString +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Object:toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/toSource +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Object:toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/toString /pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Object:unwatch /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/unwatch -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Object:valueOf /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/valueOf +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Object:valueOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/valueOf /pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Object:watch /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/watch /pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Packages /pl/docs/Web/JavaScript/Referencje/Obiekty/Packages /pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Packages:java /pl/docs/Web/JavaScript/Referencje/Obiekty/Packages/java /pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Packages:nazwaKlasy /pl/docs/Web/JavaScript/Referencje/Obiekty/Packages/nazwaKlasy /pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Packages:netscape /pl/docs/Web/JavaScript/Referencje/Obiekty/Packages/netscape /pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:Packages:sun /pl/docs/Web/JavaScript/Referencje/Obiekty/Packages/sun -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:RegExp /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:RegExp:constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:RegExp:exec /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/exec -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:RegExp:global /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/global -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:RegExp:ignoreCase /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/ignoreCase -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:RegExp:prototype /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/prototype -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:RegExp:source /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/source -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:RegExp:test /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/test -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:RegExp:toSource /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/toSource -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:RegExp:toString /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/toString -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String /pl/docs/Web/JavaScript/Referencje/Obiekty/String -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:anchor /pl/docs/Web/JavaScript/Referencje/Obiekty/String/anchor -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:big /pl/docs/Web/JavaScript/Referencje/Obiekty/String/big -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:blink /pl/docs/Web/JavaScript/Referencje/Obiekty/String/blink -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:bold /pl/docs/Web/JavaScript/Referencje/Obiekty/String/bold -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:charAt /pl/docs/Web/JavaScript/Referencje/Obiekty/String/charAt -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:charCodeAt /pl/docs/Web/JavaScript/Referencje/Obiekty/String/charCodeAt -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:concat /pl/docs/Web/JavaScript/Referencje/Obiekty/String/concat -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/String -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:fontcolor /pl/docs/Web/JavaScript/Referencje/Obiekty/String/fontcolor -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:fontsize /pl/docs/Web/JavaScript/Referencje/Obiekty/String/fontsize -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:fromCharCode /pl/docs/Web/JavaScript/Referencje/Obiekty/String/fromCharCode -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:italics /pl/docs/Web/JavaScript/Referencje/Obiekty/String/italics -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:link /pl/docs/Web/JavaScript/Referencje/Obiekty/String/link -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:prototype /pl/docs/Web/JavaScript/Referencje/Obiekty/String/prototype -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:search /pl/docs/Web/JavaScript/Referencje/Obiekty/String/search -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:slice /pl/docs/Web/JavaScript/Referencje/Obiekty/String/slice -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:small /pl/docs/Web/JavaScript/Referencje/Obiekty/String/small -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:strike /pl/docs/Web/JavaScript/Referencje/Obiekty/String/strike -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:sub /pl/docs/Web/JavaScript/Referencje/Obiekty/String/sub -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:substr /pl/docs/Web/JavaScript/Referencje/Obiekty/String/substr -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:substring /pl/docs/Web/JavaScript/Referencje/Obiekty/String/substring -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:sup /pl/docs/Web/JavaScript/Referencje/Obiekty/String/sup -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:toLowerCase /pl/docs/Web/JavaScript/Referencje/Obiekty/String/toLowerCase -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:toSource /pl/docs/Web/JavaScript/Referencje/Obiekty/String/toSource -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:toString /pl/docs/Web/JavaScript/Referencje/Obiekty/String/toString -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:toUpperCase /pl/docs/Web/JavaScript/Referencje/Obiekty/String/toUpperCase -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:valueOf /pl/docs/Web/JavaScript/Referencje/Obiekty/String/valueOf +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:RegExp /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:RegExp:constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:RegExp:exec /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/exec +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:RegExp:global /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/global +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:RegExp:ignoreCase /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/ignoreCase +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:RegExp:prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/RegExp +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:RegExp:source /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/source +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:RegExp:test /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/test +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:RegExp:toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/toSource +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:RegExp:toString /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/toString +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String /pl/docs/Web/JavaScript/Reference/Global_Objects/String +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:anchor /pl/docs/Web/JavaScript/Reference/Global_Objects/String/anchor +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:big /pl/docs/Web/JavaScript/Reference/Global_Objects/String/big +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:blink /pl/docs/Web/JavaScript/Reference/Global_Objects/String/blink +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:bold /pl/docs/Web/JavaScript/Reference/Global_Objects/String/bold +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:charAt /pl/docs/Web/JavaScript/Reference/Global_Objects/String/charAt +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:charCodeAt /pl/docs/Web/JavaScript/Reference/Global_Objects/String/charCodeAt +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:concat /pl/docs/Web/JavaScript/Reference/Global_Objects/String/concat +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/String +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:fontcolor /pl/docs/Web/JavaScript/Reference/Global_Objects/String/fontcolor +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:fontsize /pl/docs/Web/JavaScript/Reference/Global_Objects/String/fontsize +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:fromCharCode /pl/docs/Web/JavaScript/Reference/Global_Objects/String/fromCharCode +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:italics /pl/docs/Web/JavaScript/Reference/Global_Objects/String/italics +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:link /pl/docs/Web/JavaScript/Reference/Global_Objects/String/link +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/String +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:search /pl/docs/Web/JavaScript/Reference/Global_Objects/String/search +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:slice /pl/docs/Web/JavaScript/Reference/Global_Objects/String/slice +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:small /pl/docs/Web/JavaScript/Reference/Global_Objects/String/small +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:strike /pl/docs/Web/JavaScript/Reference/Global_Objects/String/strike +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:sub /pl/docs/Web/JavaScript/Reference/Global_Objects/String/sub +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:substr /pl/docs/Web/JavaScript/Reference/Global_Objects/String/substr +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:substring /pl/docs/Web/JavaScript/Reference/Global_Objects/String/substring +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:sup /pl/docs/Web/JavaScript/Reference/Global_Objects/String/sup +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:toLowerCase /pl/docs/Web/JavaScript/Reference/Global_Objects/String/toLowerCase +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/String/toSource +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:toString /pl/docs/Web/JavaScript/Reference/Global_Objects/String/toString +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:toUpperCase /pl/docs/Web/JavaScript/Reference/Global_Objects/String/toUpperCase +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:String:valueOf /pl/docs/Web/JavaScript/Reference/Global_Objects/String/valueOf /pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:java /pl/docs/Web/JavaScript/Referencje/Obiekty/java /pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:netscape /pl/docs/Web/JavaScript/Referencje/Obiekty/netscape /pl/docs/Dokumentacja_języka_JavaScript_1.5:Obiekty:sun /pl/docs/Web/JavaScript/Referencje/Obiekty/sun -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory /pl/docs/Web/JavaScript/Referencje/Operatory -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_arytmetyczne /pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_arytmetyczne -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_działające_na_ciągach_znaków /pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_działające_na_ciągach_znaków -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_pamięci /pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_pamięci -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_porównania /pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_porównania -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_przypisania /pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_przypisania -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_specjalne /pl/docs/Web/JavaScript/Referencje/Operatory -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_specjalne:Operator_delete /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_delete -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_specjalne:Operator_function /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_function -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_specjalne:Operator_in /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_in -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_specjalne:Operator_instanceof /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_instanceof -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_specjalne:Operator_new /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_new -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_specjalne:Operator_przecinkowy /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_przecinkowy -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_specjalne:Operator_typeof /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_typeof -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_specjalne:Operator_void /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_void -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_specjalne:Operator_warunkowy /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_warunkowy -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Pierwszeństwo_operatorów /pl/docs/Web/JavaScript/Referencje/Operatory/Pierwszeństwo_operatorów -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia /pl/docs/Web/JavaScript/Referencje/Polecenia -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:block /pl/docs/Web/JavaScript/Referencje/Polecenia/block -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:break /pl/docs/Web/JavaScript/Referencje/Polecenia/break -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:const /pl/docs/Web/JavaScript/Referencje/Polecenia/const -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:do...while /pl/docs/Web/JavaScript/Referencje/Polecenia/do...while -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:etykieta /pl/docs/Web/JavaScript/Referencje/Polecenia/etykieta -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:export /pl/docs/Web/JavaScript/Referencje/Polecenia/export -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:for /pl/docs/Web/JavaScript/Referencje/Polecenia/for -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:function /pl/docs/Web/JavaScript/Referencje/Polecenia/function -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:if...else /pl/docs/Web/JavaScript/Referencje/Polecenia/if...else -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:import /pl/docs/Web/JavaScript/Referencje/Polecenia/import -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:return /pl/docs/Web/JavaScript/Referencje/Polecenia/return -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:switch /pl/docs/Web/JavaScript/Referencje/Polecenia/switch -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:throw /pl/docs/Web/JavaScript/Referencje/Polecenia/throw -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:var /pl/docs/Web/JavaScript/Referencje/Polecenia/var -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:while /pl/docs/Web/JavaScript/Referencje/Polecenia/while -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Przestarzałe_własności_i_metody /pl/docs/Web/JavaScript/Referencje/Przestarzałe_własności_i_metody -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Słowa_zarezerwowane /pl/docs/Web/JavaScript/Referencje/Słowa_zarezerwowane -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Wyrażenia:const /pl/docs/Web/JavaScript/Referencje/Polecenia/const -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Własności /pl/docs/Web/JavaScript/Referencje/Obiekty -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Własności:Infinity /pl/docs/Web/JavaScript/Referencje/Obiekty/Infinity -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Własności:NaN /pl/docs/Web/JavaScript/Referencje/Obiekty/NaN -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Własności:undefined /pl/docs/Web/JavaScript/Referencje/Obiekty/undefined -/pl/docs/Dokumentacja_języka_JavaScript_1.5:Własnościundefined /pl/docs/Web/JavaScript/Referencje/Obiekty/undefined -/pl/docs/Dostępność /pl/docs/Web/Dostępność -/pl/docs/Dynamiczne_zmiany_interfejsu_użytkownika_bazującego_na_XULu /pl/docs/Dynamiczne_zmiany_interfejsu_użytkownika_bazującego_na_XUL-u -/pl/docs/ECMAScript /pl/docs/Web/JavaScript/Zasoby_języka_JavaScript +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory /pl/docs/Web/JavaScript/Reference/Operators +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_arytmetyczne /pl/docs/conflicting/Web/JavaScript/Reference/Operators_1f6634ff6e3ccef661281d6e50002147 +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_działające_na_ciągach_znaków /pl/docs/conflicting/Web/JavaScript/Reference/Operators_1d09774e621bf2431a4f5594a248dd21 +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_pamięci /pl/docs/Web/JavaScript/Reference/Operators/Property_Accessors +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_porównania /pl/docs/conflicting/Web/JavaScript/Reference/Operators_5ba63337c20d72b8f8747a954b9b6c94 +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_przypisania /pl/docs/conflicting/Web/JavaScript/Reference/Operators_de3666cd349851054926d5e52fced70d +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_specjalne /pl/docs/Web/JavaScript/Reference/Operators +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_specjalne:Operator_delete /pl/docs/Web/JavaScript/Reference/Operators/delete +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_specjalne:Operator_function /pl/docs/Web/JavaScript/Reference/Operators/function +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_specjalne:Operator_in /pl/docs/Web/JavaScript/Reference/Operators/in +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_specjalne:Operator_instanceof /pl/docs/Web/JavaScript/Reference/Operators/instanceof +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_specjalne:Operator_new /pl/docs/Web/JavaScript/Reference/Operators/new +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_specjalne:Operator_przecinkowy /pl/docs/Web/JavaScript/Reference/Operators/Comma_Operator +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_specjalne:Operator_typeof /pl/docs/Web/JavaScript/Reference/Operators/typeof +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_specjalne:Operator_void /pl/docs/Web/JavaScript/Reference/Operators/void +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Operatory_specjalne:Operator_warunkowy /pl/docs/Web/JavaScript/Reference/Operators/Conditional_Operator +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Operatory:Pierwszeństwo_operatorów /pl/docs/Web/JavaScript/Reference/Operators/Operator_Precedence +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia /pl/docs/Web/JavaScript/Reference/Statements +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:block /pl/docs/Web/JavaScript/Reference/Statements/block +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:break /pl/docs/Web/JavaScript/Reference/Statements/break +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:const /pl/docs/Web/JavaScript/Reference/Statements/const +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:do...while /pl/docs/Web/JavaScript/Reference/Statements/do...while +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:etykieta /pl/docs/Web/JavaScript/Reference/Statements/label +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:export /pl/docs/Web/JavaScript/Reference/Statements/export +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:for /pl/docs/Web/JavaScript/Reference/Statements/for +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:function /pl/docs/Web/JavaScript/Reference/Statements/function +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:if...else /pl/docs/Web/JavaScript/Reference/Statements/if...else +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:import /pl/docs/Web/JavaScript/Reference/Statements/import +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:return /pl/docs/Web/JavaScript/Reference/Statements/return +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:switch /pl/docs/Web/JavaScript/Reference/Statements/switch +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:throw /pl/docs/Web/JavaScript/Reference/Statements/throw +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:var /pl/docs/Web/JavaScript/Reference/Statements/var +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Polecenia:while /pl/docs/Web/JavaScript/Reference/Statements/while +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Przestarzałe_własności_i_metody /pl/docs/Web/JavaScript/Reference/Deprecated_and_obsolete_features +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Słowa_zarezerwowane /pl/docs/conflicting/Web/JavaScript/Reference/Lexical_grammar +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Wyrażenia:const /pl/docs/Web/JavaScript/Reference/Statements/const +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Własności /pl/docs/Web/JavaScript/Reference/Global_Objects +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Własności:Infinity /pl/docs/Web/JavaScript/Reference/Global_Objects/Infinity +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Własności:NaN /pl/docs/Web/JavaScript/Reference/Global_Objects/NaN +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Własności:undefined /pl/docs/Web/JavaScript/Reference/Global_Objects/undefined +/pl/docs/Dokumentacja_języka_JavaScript_1.5:Własnościundefined /pl/docs/Web/JavaScript/Reference/Global_Objects/undefined +/pl/docs/Dostosowanie_aplikacji_XUL_do_Firefoksa_1.5 /pl/docs/Mozilla/Firefox/Releases/1.5/Adapting_XUL_Applications_for_Firefox_1.5 +/pl/docs/Dostępność /pl/docs/Web/Accessibility +/pl/docs/Dynamiczne_zmiany_interfejsu_użytkownika_bazującego_na_XUL-u /pl/docs/orphaned/Dynamiczne_zmiany_interfejsu_użytkownika_bazującego_na_XUL-u +/pl/docs/Dynamiczne_zmiany_interfejsu_użytkownika_bazującego_na_XULu /pl/docs/orphaned/Dynamiczne_zmiany_interfejsu_użytkownika_bazującego_na_XUL-u +/pl/docs/ECMAScript /pl/docs/Web/JavaScript/Language_Resources /pl/docs/EXSLT /pl/docs/Web/EXSLT /pl/docs/EditCSS_-_rozszerzenie_Firefoksa_(link) https://addons.mozilla.org/extensions/moreinfo.php?id=179 /pl/docs/Firebug_-_rozszerzenie_Firefoksa_(link) https://addons.mozilla.org/extensions/moreinfo.php?id=1843&application=firefox +/pl/docs/Firefox_-_potrzeba_wolności /pl/docs/orphaned/Firefox_-_potrzeba_wolności /pl/docs/Firefox_1.5 /pl/docs/Mozilla/Firefox/Releases/1.5 /pl/docs/Firefox_1.5_Beta_dla_programistów /pl/docs/Mozilla/Firefox/Releases/1.5 /pl/docs/Firefox_1.5_dla_programistów /pl/docs/Mozilla/Firefox/Releases/1.5 /pl/docs/Firefox_2 /pl/docs/Mozilla/Firefox/Releases/2 /pl/docs/Firefox_2_dla_programistów /pl/docs/Mozilla/Firefox/Releases/2 -/pl/docs/Firefox_3 /pl/docs/Firefox_3_dla_programistów -/pl/docs/Focus_management_in_HTML /pl/docs/Web/HTML/Zarządzanie_fokusem_w_HTML +/pl/docs/Firefox_3 /pl/docs/orphaned/Firefox_3_dla_programistów +/pl/docs/Firefox_3_dla_programistów /pl/docs/orphaned/Firefox_3_dla_programistów +/pl/docs/Focus_management_in_HTML /pl/docs/conflicting/Web/API/Document/hasFocus /pl/docs/Fragmenty_kodu:Canvas /pl/docs/Fragmenty_kodu/Canvas /pl/docs/Fragmenty_kodu:Ciasteczka /pl/docs/Fragmenty_kodu/Ciasteczka /pl/docs/Fragmenty_kodu:JS_XPCOM /pl/docs/Fragmenty_kodu/JS_XPCOM @@ -1341,9 +1362,22 @@ /pl/docs/Fragmenty_kodu:Wczytywanie_strony /pl/docs/Fragmenty_kodu/Wczytywanie_strony /pl/docs/Fragmenty_kodu:XML /pl/docs/Fragmenty_kodu/XML /pl/docs/Funkcje_obsługi_protokołów_przez_aplikacje_internetowe /pl/docs/Web/API/Navigator/registerProtocolHandler/Web-based_protocol_handlers +/pl/docs/Games/Tutorials/2D_Breakout_game_pure_JavaScript/Stworz_element_Canvas_i_rysuj_na_nim /pl/docs/Games/Tutorials/2D_Breakout_game_pure_JavaScript/Create_the_Canvas_and_draw_on_it +/pl/docs/Games/Tutorials/2D_Breakout_game_pure_JavaScript/odbijanie_od_scian /pl/docs/Games/Tutorials/2D_Breakout_game_pure_JavaScript/Bounce_off_the_walls +/pl/docs/Games/Tutorials/2D_Breakout_game_pure_JavaScript/posusz_pilka /pl/docs/Games/Tutorials/2D_Breakout_game_pure_JavaScript/Move_the_ball +/pl/docs/Games/Tutorials/2D_Breakout_game_pure_JavaScript/wykrywanie_kolizji /pl/docs/Games/Tutorials/2D_Breakout_game_pure_JavaScript/Collision_detection /pl/docs/Glossary/AOM /pl/docs/Glossary/Accessibility_tree +/pl/docs/Glossary/Abstrakcja /pl/docs/Glossary/Abstraction +/pl/docs/Glossary/Hipertekst /pl/docs/Glossary/Hypertext +/pl/docs/Glossary/Klasa /pl/docs/Glossary/Class +/pl/docs/Glossary/Kryptografia /pl/docs/Glossary/Cryptography +/pl/docs/Glossary/Obiekt /pl/docs/Glossary/Object +/pl/docs/Glossary/Przegladarka /pl/docs/Glossary/Browser +/pl/docs/Glossary/Pusty_element /pl/docs/Glossary/Empty_element +/pl/docs/Glossary/Semantyka /pl/docs/Glossary/Semantics +/pl/docs/Gry /pl/docs/Games /pl/docs/HTML /pl/docs/Web/HTML -/pl/docs/HTML/Canvas /pl/docs/Web/HTML/Canvas +/pl/docs/HTML/Canvas /pl/docs/Web/API/Canvas_API /pl/docs/HTML/Element /pl/docs/Web/HTML/Element /pl/docs/HTML/Element/a /pl/docs/Web/HTML/Element/a /pl/docs/HTML/Element/abbr /pl/docs/Web/HTML/Element/abbr @@ -1362,7 +1396,7 @@ /pl/docs/HTML/Element/center /pl/docs/Web/HTML/Element/center /pl/docs/HTML/Element/cite /pl/docs/Web/HTML/Element/cite /pl/docs/HTML/Element/code /pl/docs/Web/HTML/Element/code -/pl/docs/HTML/Element/comment /pl/docs/Web/HTML/Element/comment +/pl/docs/HTML/Element/comment /pl/docs/orphaned/Web/HTML/Element/comment /pl/docs/HTML/Element/dd /pl/docs/Web/HTML/Element/dd /pl/docs/HTML/Element/dl /pl/docs/Web/HTML/Element/dl /pl/docs/HTML/Element/dt /pl/docs/Web/HTML/Element/dt @@ -1405,12 +1439,13 @@ /pl/docs/HTML/Elementy/s /pl/docs/Web/HTML/Element/s /pl/docs/HTML/Elementy/small /pl/docs/Web/HTML/Element/small /pl/docs/HTML/Elementy/strong /pl/docs/Web/HTML/Element/strong -/pl/docs/HTML/Elementy_blokowe /pl/docs/Web/HTML/Elementy_blokowe -/pl/docs/HTML/Elementy_liniowe /pl/docs/Web/HTML/Elementy_liniowe -/pl/docs/HTML/Kontrola_sprawdzania_pisowni_w_formularzach_HTML /pl/docs/Web/HTML/Kontrola_sprawdzania_pisowni_w_formularzach_HTML -/pl/docs/HTML/The_Importance_of_Correct_Commenting /pl/docs/Web/HTML/Znaczenie_poprawnego_komentowania -/pl/docs/HTML/Znaczenie_poprawnego_komentowania /pl/docs/Web/HTML/Znaczenie_poprawnego_komentowania -/pl/docs/HTML:Canvas /pl/docs/Web/HTML/Canvas +/pl/docs/HTML/Elementy_blokowe /pl/docs/Web/HTML/Block-level_elements +/pl/docs/HTML/Elementy_liniowe /pl/docs/Web/HTML/Inline_elements +/pl/docs/HTML/HTML5 /pl/docs/Web/Guide/HTML/HTML5 +/pl/docs/HTML/Kontrola_sprawdzania_pisowni_w_formularzach_HTML /pl/docs/conflicting/Web/HTML/Global_attributes/spellcheck +/pl/docs/HTML/The_Importance_of_Correct_Commenting /pl/docs/conflicting/Learn/HTML/Introduction_to_HTML/Getting_started +/pl/docs/HTML/Znaczenie_poprawnego_komentowania /pl/docs/conflicting/Learn/HTML/Introduction_to_HTML/Getting_started +/pl/docs/HTML:Canvas /pl/docs/Web/API/Canvas_API /pl/docs/HTML:Element /pl/docs/Web/HTML/Element /pl/docs/HTML:Element:a /pl/docs/Web/HTML/Element/a /pl/docs/HTML:Element:abbr /pl/docs/Web/HTML/Element/abbr @@ -1429,7 +1464,7 @@ /pl/docs/HTML:Element:center /pl/docs/Web/HTML/Element/center /pl/docs/HTML:Element:cite /pl/docs/Web/HTML/Element/cite /pl/docs/HTML:Element:code /pl/docs/Web/HTML/Element/code -/pl/docs/HTML:Element:comment /pl/docs/Web/HTML/Element/comment +/pl/docs/HTML:Element:comment /pl/docs/orphaned/Web/HTML/Element/comment /pl/docs/HTML:Element:dd /pl/docs/Web/HTML/Element/dd /pl/docs/HTML:Element:dl /pl/docs/Web/HTML/Element/dl /pl/docs/HTML:Element:dt /pl/docs/Web/HTML/Element/dt @@ -1471,376 +1506,530 @@ /pl/docs/HTML:Elementy:s /pl/docs/Web/HTML/Element/s /pl/docs/HTML:Elementy:small /pl/docs/Web/HTML/Element/small /pl/docs/HTML:Elementy:strong /pl/docs/Web/HTML/Element/strong -/pl/docs/HTML:Elementy_blokowe /pl/docs/Web/HTML/Elementy_blokowe -/pl/docs/HTML:Elementy_liniowe /pl/docs/Web/HTML/Elementy_liniowe -/pl/docs/HTML:The_Importance_of_Correct_Commenting /pl/docs/Web/HTML/Znaczenie_poprawnego_komentowania -/pl/docs/HTML:Znaczenie_poprawnego_komentowania /pl/docs/Web/HTML/Znaczenie_poprawnego_komentowania -/pl/docs/HTML_Element_Cross_Reference /pl/docs/Wsparcie_przeglądarek_dla_elementów_HTML +/pl/docs/HTML:Elementy_blokowe /pl/docs/Web/HTML/Block-level_elements +/pl/docs/HTML:Elementy_liniowe /pl/docs/Web/HTML/Inline_elements +/pl/docs/HTML:The_Importance_of_Correct_Commenting /pl/docs/conflicting/Learn/HTML/Introduction_to_HTML/Getting_started +/pl/docs/HTML:Znaczenie_poprawnego_komentowania /pl/docs/conflicting/Learn/HTML/Introduction_to_HTML/Getting_started +/pl/docs/HTML_Element_Cross_Reference /pl/docs/orphaned/Wsparcie_przeglądarek_dla_elementów_HTML +/pl/docs/Istotne_błędy_poprawione_w_Firefoksie_3 /pl/docs/Mozilla/Firefox/Releases/3/Notable_bugs_fixed +/pl/docs/JSON /pl/docs/Glossary/JSON /pl/docs/JavaScript /pl/docs/Web/JavaScript /pl/docs/JavaScript/Guide /pl/docs/Web/JavaScript/Guide -/pl/docs/JavaScript/Guide/Obsolete_Pages /pl/docs/Web/JavaScript/Guide/Obsolete_Pages -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5 /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5 -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Blok_instrukcji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Blok_instrukcji -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Czytanie_wyrażenia_regularnego /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Definiowanie_funkcji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Definiowanie_funkcji -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Dodawanie_obiektom_nowej_funkcjonalności. /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Dodawanie_obiektom_nowej_funkcjonalności. -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_eval /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_eval -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isFinite /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isFinite -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isNaN /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isNaN -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_Number_i_String /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_Number_i_String -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_escape_i_unescape /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_escape_i_unescape -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_parseInt_i_parseFloat /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_parseInt_i_parseFloat -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcja_pętli /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcja_pętli/Instrukcja_do_...while /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_komentarzy /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_komentarzy -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_manipulacji_obiektem /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_manipulacji_obiektem -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_throw /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_throw -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_try...catch /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_try...catch -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_break /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_break -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continues /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_for /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_for -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_label /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_label -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_while /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_while -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_warunkowe /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_warunkowe -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Literały /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Literały -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Nazywanie_funkcji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wywołanie_funkcji -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_i_własności /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_i_własności -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_i_właściwości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_i_własności -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Array /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Array -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Date /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Date -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Math /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Math -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Number /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Number -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_RegExp /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_RegExp -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_String /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_String -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_function /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_function -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_logiczny /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operacje_na_łańcuchach /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operacje_na_łańcuchach -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_arytmetyczne /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_arytmetyczne -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_logiczne /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_logiczne -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_porównania /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_porównania -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_porównywania /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_porównania -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_przypisania /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_przypisania -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_specjalne /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_specjalne -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_string /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operacje_na_łańcuchach -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect +/pl/docs/JavaScript/Guide/Obsolete_Pages /pl/docs/conflicting/Web/JavaScript/Guide +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5 /pl/docs/conflicting/Web/JavaScript/Guide_a026fc5d05de582c88d39cf9fd37870d +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Blok_instrukcji /pl/docs/conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Czytanie_wyrażenia_regularnego /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Definiowanie_funkcji /pl/docs/conflicting/Web/JavaScript/Guide/Functions +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Dodawanie_obiektom_nowej_funkcjonalności. /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Dodawanie_obiektom_nowej_funkcjonalności. +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane /pl/docs/conflicting/Web/JavaScript/Guide/Functions_b0ff3e89089de1f0a22029bbde807073 +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_eval /pl/docs/conflicting/Web/JavaScript/Guide/Functions_90ea47f6d07003af2efc0a1756da41e2 +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isFinite /pl/docs/conflicting/Web/JavaScript/Guide/Functions_2af756c37808c2f8e09add6cc9618178 +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isNaN /pl/docs/conflicting/Web/JavaScript/Guide/Functions_8b84da88e673c0774c4f504a9be67268 +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_Number_i_String /pl/docs/conflicting/Web/JavaScript/Guide/Functions_74f4afa40d626fed3cf9277e30d6d211 +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_escape_i_unescape /pl/docs/conflicting/Web/JavaScript/Guide/Functions_14ccabf533660cb9d0794a5a93287159 +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_parseInt_i_parseFloat /pl/docs/conflicting/Web/JavaScript/Guide/Functions_915be6bbaf2578afefb6927c899d5f3d +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcja_pętli /pl/docs/conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_1a7d2f7d8b159dce08254c88948bc74a +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcja_pętli/Instrukcja_do_...while /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_komentarzy /pl/docs/conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_b955d4d09ed7fa71268639ed589f8702 +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_manipulacji_obiektem /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_manipulacji_obiektem +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_throw /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_throw +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_try...catch /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_try...catch +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli /pl/docs/conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_1a7d2f7d8b159dce08254c88948bc74a +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_break /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_break +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continues /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_for /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_for +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_label /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_label +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_while /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_while +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_warunkowe /pl/docs/conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_8f58cc44e17308f295c610e8acad2d99 +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Literały /pl/docs/conflicting/Web/JavaScript/Guide/Grammar_and_types +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Nazywanie_funkcji /pl/docs/conflicting/Web/JavaScript/Guide/Functions_403e991db3105a03e0afc1a3cc821a01 +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_i_własności /pl/docs/Web/JavaScript/Guide/Working_with_Objects +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_i_właściwości /pl/docs/Web/JavaScript/Guide/Working_with_Objects +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane /pl/docs/conflicting/Web/JavaScript/Guide_1093f218406d2d64ec91bb7a6bda93ce +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Array /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Array +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Date /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Date +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Math /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Math +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Number /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Number +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_RegExp /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_RegExp +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_String /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_String +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_function /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_function +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_logiczny /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory /pl/docs/Web/JavaScript/Guide/Expressions_and_Operators +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operacje_na_łańcuchach /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_arytmetyczne /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_605f6491d97a62449200a9401cba82c7 +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_logiczne /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_173cc0f9e32f34b0483b45a29fa462e4 +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_porównania /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_510ae1f584cbdb5ca760b545f90c72ed +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_porównywania /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_510ae1f584cbdb5ca760b545f90c72ed +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_przypisania /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_przypisania +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_specjalne /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_a3ce80967ffc4f60314caa4b05ec9c47 +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_string /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect /pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect/Komunikacja_między_Java_a_JavaScript /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect/Komunikacja_między_Java_a_JavaScript /pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect/Konwersja_typu_danych /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect/Konwersja_typu_danych /pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect/Konwersja_typu_danych/Konwersja_JavaScript_do_Java /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect/Konwersja_typu_danych/Konwersja_JavaScript_do_Java -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności/Wartości_lokalne_vs._dziedziczone /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności/Wartości_lokalne_vs._dziedziczone -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściowści /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściowści/Wartości_lokalne_vs._dziedziczone /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności/Wartości_lokalne_vs._dziedziczone -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściwości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściwości/Wartości_lokalne_vs._dziedziczone /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności/Wartości_lokalne_vs._dziedziczone -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Tworzenie_hierarchii /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Tworzenie_hierarchii -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Właściwości_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Właściwości_obiektu/Dodawanie_właściwości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Właściwości_obiektu/Dziedziczenie_właściwości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Globalne_wyszukiwanie,_wielkość_znaków,_wieloliniowe_wejście /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Globalne_wyszukiwanie,_wielkość_znaków,_wieloliniowe_wejście -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Przykłady_wyrażeń_regularnych /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Przykłady_wyrażeń_regularnych -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_zamknięciami /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_zamknięciami -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Stałe /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Stałe -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_metod /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_metod -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_właściowości_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_właściwości_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_właściowości_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_właściwości_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_właściwości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_'this'_do_obiektu_referencji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektów /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_konstruktorów_funkcji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_wyrażenia_regularnego /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_wyrażenia_regularnego -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Unicode /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Unicode -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Używanie_argumentów_tablicy /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wartości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wartości -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wyrażenia /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wyrażenia -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wywołanie_funkcji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wywołanie_funkcji -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments -/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zmienne /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zmienne -/pl/docs/JavaScript/Guide/o_tym_przewodniku /pl/docs/Web/JavaScript/Guide/o_tym_przewodniku -/pl/docs/JavaScript/Na_początek /pl/docs/Web/JavaScript/Na_początek +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności /pl/docs/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności/Wartości_lokalne_vs._dziedziczone /pl/docs/conflicting/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściowści /pl/docs/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściowści/Wartości_lokalne_vs._dziedziczone /pl/docs/conflicting/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściwości /pl/docs/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściwości/Wartości_lokalne_vs._dziedziczone /pl/docs/conflicting/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Tworzenie_hierarchii /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Tworzenie_hierarchii +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Właściwości_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Właściwości_obiektu/Dodawanie_właściwości /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Właściwości_obiektu/Dziedziczenie_właściwości /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Globalne_wyszukiwanie,_wielkość_znaków,_wieloliniowe_wejście /pl/docs/Web/JavaScript/Guide/Regular_Expressions +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Przykłady_wyrażeń_regularnych /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Przykłady_wyrażeń_regularnych +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_zamknięciami /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_zamknięciami +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Stałe /pl/docs/conflicting/Web/JavaScript/Guide/Grammar_and_types_d86447bbdab858af0abf9b17c9ec9dc9 +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_metod /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_metod +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_właściowości_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_właściwości_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_właściowości_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_właściwości_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_właściwości /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_'this'_do_obiektu_referencji /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektów /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_konstruktorów_funkcji /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_wyrażenia_regularnego /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_wyrażenia_regularnego +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Unicode /pl/docs/conflicting/Web/JavaScript/Guide/Grammar_and_types_0f7acbcd2fa8bfb327628638da4e5166 +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Używanie_argumentów_tablicy /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wartości /pl/docs/conflicting/Web/JavaScript/Guide/Grammar_and_types_1d6d13b355b9483ad46cf81082b7c261 +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wyrażenia /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_c278b67ddd602343b8c21711abc1b17c +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wywołanie_funkcji /pl/docs/conflicting/Web/JavaScript/Guide/Functions_403e991db3105a03e0afc1a3cc821a01 +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments +/pl/docs/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zmienne /pl/docs/conflicting/Web/JavaScript/Guide/Grammar_and_types_14ae50e0032f9c0db4fe484288797da6 +/pl/docs/JavaScript/Guide/o_tym_przewodniku /pl/docs/conflicting/Web/JavaScript/Guide/Introduction +/pl/docs/JavaScript/Na_początek /pl/docs/orphaned/Web/JavaScript/Na_początek /pl/docs/JavaScript/New_in_JavaScript /pl/docs/Web/JavaScript/New_in_JavaScript -/pl/docs/JavaScript/Reference/Global_Objects/Function/toString /pl/docs/Web/JavaScript/Referencje/Obiekty/Function/toString +/pl/docs/JavaScript/Reference/Global_Objects/Function/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Function/toString /pl/docs/JavaScript/Typed_arrays /pl/docs/Web/JavaScript/Typed_arrays -/pl/docs/JavaScript:Na_początek /pl/docs/Web/JavaScript/Na_początek -/pl/docs/Kodowanie_Mozilli /pl/docs/Programowanie_Mozilli -/pl/docs/Kolumny_CSS3 /pl/docs/Web/Guide/CSS/Kolumny_CSS3 -/pl/docs/Kontrola_sprawdzania_pisowni_w_formularzach_HTML /pl/docs/Web/HTML/Kontrola_sprawdzania_pisowni_w_formularzach_HTML +/pl/docs/JavaScript:Na_początek /pl/docs/orphaned/Web/JavaScript/Na_początek +/pl/docs/Kodowanie_Mozilli /pl/docs/orphaned/Programowanie_Mozilli +/pl/docs/Kolumny_CSS3 /pl/docs/Web/CSS/CSS_Columns/Using_multi-column_layouts +/pl/docs/Kontrola_sprawdzania_pisowni_w_formularzach_HTML /pl/docs/conflicting/Web/HTML/Global_attributes/spellcheck /pl/docs/Learn/CSS/Introduction_to_CSS /en-US/docs/Learn/CSS/First_steps /pl/docs/Learn/CSS/Introduction_to_CSS/How_CSS_works /en-US/docs/Learn/CSS/First_steps/How_CSS_works /pl/docs/Learn/CSS/Introduction_to_CSS/Selektory /en-US/docs/Learn/CSS/Building_blocks/Selectors /pl/docs/Learn/CSS/stylowanie_blokow /en-US/docs/Learn/CSS/Building_blocks -/pl/docs/Liczniki_CSS /pl/docs/Web/Guide/Liczniki_CSS +/pl/docs/Learn/Common_questions/Jak_dziala_Internet /pl/docs/Learn/Common_questions/How_does_the_Internet_work +/pl/docs/Learn/Getting_started_with_the_web/Jak_dziala_Siec /pl/docs/Learn/Getting_started_with_the_web/How_the_Web_works +/pl/docs/Learn/JavaScript/Obiekty /pl/docs/Learn/JavaScript/Objects +/pl/docs/Learn/JavaScript/Pierwsze_kroki /pl/docs/Learn/JavaScript/First_steps +/pl/docs/Learn/JavaScript/Pierwsze_kroki/A_first_splash /pl/docs/Learn/JavaScript/First_steps/A_first_splash +/pl/docs/Learn/JavaScript/Pierwsze_kroki/Co_poszlo_nie_tak /pl/docs/Learn/JavaScript/First_steps/What_went_wrong +/pl/docs/Learn/JavaScript/Pierwsze_kroki/Math /pl/docs/Learn/JavaScript/First_steps/Math +/pl/docs/Learn/JavaScript/Pierwsze_kroki/What_is_JavaScript /pl/docs/Learn/JavaScript/First_steps/What_is_JavaScript +/pl/docs/Learn/JavaScript/Pierwsze_kroki/Zmienne /pl/docs/Learn/JavaScript/First_steps/Variables +/pl/docs/Learn/Server-side/Express_Nodejs/Szkolenie_aplikacja_biblioteka /pl/docs/Learn/Server-side/Express_Nodejs/Tutorial_local_library_website +/pl/docs/Liczniki_CSS /pl/docs/Web/CSS/CSS_Lists_and_Counters/Using_CSS_counters +/pl/docs/Lista_komponentów_XPCOM /pl/docs/orphaned/Lista_komponentów_XPCOM +/pl/docs/Lokalizacja /pl/docs/Glossary/Localization /pl/docs/Lokalizacja_opisu_rozszerzeń /pl/docs/Lokalizacja_opisu_rozszerzenia /pl/docs/MDN/Contribute/Content /pl/docs/MDN/Guidelines -/pl/docs/MDN/Contribute/Content/Style_guide /pl/docs/MDN/Guidelines/Style_guide +/pl/docs/MDN/Contribute/Content/Style_guide /pl/docs/MDN/Guidelines/Writing_style_guide +/pl/docs/MDN/Contribute/Howto/Budowa_dany_edycja_artykuł /pl/docs/orphaned/MDN/Contribute/Howto/Do_an_editorial_review +/pl/docs/MDN/Contribute/Howto/Create_an_MDN_account /pl/docs/orphaned/MDN/Contribute/Howto/Create_an_MDN_account +/pl/docs/MDN/Contribute/Howto/Do_a_technical_review /pl/docs/orphaned/MDN/Contribute/Howto/Do_a_technical_review +/pl/docs/MDN/Contribute/Howto/Set_the_summary_for_a_page /pl/docs/orphaned/MDN/Contribute/Howto/Set_the_summary_for_a_page +/pl/docs/MDN/Contribute/Howto/Tag_JavaScript_pages /pl/docs/orphaned/MDN/Contribute/Howto/Tag_JavaScript_pages /pl/docs/MDN/Feedback /pl/docs/MDN/Contribute/Feedback +/pl/docs/MDN/Guidelines/Style_guide /pl/docs/MDN/Guidelines/Writing_style_guide +/pl/docs/MDN/Kuma /pl/docs/MDN/Yari +/pl/docs/MDN/User_guide /pl/docs/MDN/Tools /pl/docs/MDN/rozpocznij_mdn /pl/docs/MDN/Contribute/Getting_started /pl/docs/Manifest_Instalacji /pl/docs/Manifesty_Instalacji /pl/docs/Manifesty_Chrome /pl/docs/Mozilla/Rejestracja_Chrome /pl/docs/MathML /pl/docs/Web/MathML -/pl/docs/Narzędzia:Walidatory /pl/docs/Narzędzia/Walidatory -/pl/docs/Narzędzia_programistów /pl/docs/Narzędzia +/pl/docs/Moduły_JavaScript /pl/docs/orphaned/Moduły_JavaScript +/pl/docs/Mozilla/Add-ons/WebExtensions/Pierwsze_kroki_z_web-ext /pl/docs/orphaned/Mozilla/Add-ons/WebExtensions/Getting_started_with_web-ext +/pl/docs/Mozilla/Add-ons/WebExtensions/Twój_pierwszy_WebExtension /pl/docs/Mozilla/Add-ons/WebExtensions/Your_first_WebExtension +/pl/docs/Narzędzia /pl/docs/Tools +/pl/docs/Narzędzia/Browser_Toolbox /pl/docs/Tools/Browser_Toolbox +/pl/docs/Narzędzia/Debugger /pl/docs/Tools/Debugger +/pl/docs/Narzędzia/Debugger/How_to /pl/docs/Tools/Debugger/How_to +/pl/docs/Narzędzia/Page_Inspector /pl/docs/Tools/Page_Inspector +/pl/docs/Narzędzia/Page_Inspector/How_to /pl/docs/Tools/Page_Inspector/How_to +/pl/docs/Narzędzia/Page_Inspector/How_to/Open_the_Inspector /pl/docs/Tools/Page_Inspector/How_to/Open_the_Inspector +/pl/docs/Narzędzia/Page_Inspector/Przewodnik_przez_UI /pl/docs/Tools/Page_Inspector/UI_Tour +/pl/docs/Narzędzia/Performance /pl/docs/Tools/Performance +/pl/docs/Narzędzia/Performance/Flame_Chart /pl/docs/Tools/Performance/Flame_Chart +/pl/docs/Narzędzia/Profiler /pl/docs/conflicting/Tools/Performance +/pl/docs/Narzędzia/Storage_Inspector /pl/docs/Tools/Storage_Inspector +/pl/docs/Narzędzia/Tools_Toolbox /pl/docs/Tools/Tools_Toolbox +/pl/docs/Narzędzia/View_source /pl/docs/Tools/View_source +/pl/docs/Narzędzia/Walidatory /pl/docs/Tools/Validators +/pl/docs/Narzędzia/about:debugging /pl/docs/Tools/about:debugging +/pl/docs/Narzędzia:Walidatory /pl/docs/Tools/Validators +/pl/docs/Narzędzia_clone /pl/docs/orphaned/Narzędzia_clone +/pl/docs/Narzędzia_programistów /pl/docs/Tools /pl/docs/New_in_JavaScript_1.6 /pl/docs/Web/JavaScript/New_in_JavaScript/Nowości_w_JavaScript_1.6 +/pl/docs/Nieprawidłowy_typ_MIME_plików_CSS /pl/docs/Web/HTTP/Basics_of_HTTP/MIME_types /pl/docs/Nowości_w_JavaScript_1.4 /pl/docs/Web/JavaScript/Nowości_w_JavaScript_1.4 /pl/docs/Nowości_w_JavaScript_1.5 /pl/docs/Web/JavaScript/New_in_JavaScript/Nowości_w_JavaScript_1.5 /pl/docs/Nowości_w_JavaScript_1.6 /pl/docs/Web/JavaScript/New_in_JavaScript/Nowości_w_JavaScript_1.6 /pl/docs/Nowości_w_JavaScript_1.8 /pl/docs/Web/JavaScript/Nowości_w_JavaScript_1.8 +/pl/docs/O_modelu_obiektowym_dokumentu /pl/docs/conflicting/Web/API/Document_Object_Model_e07446e4017cbd3df6b1d4405d407501 /pl/docs/Obsługa_protokołów_przez_aplikacje_WWW /pl/docs/Web/API/Navigator/registerProtocolHandler/Web-based_protocol_handlers +/pl/docs/Podaj_Dłoń_'kursorowi' /pl/docs/conflicting/Web/CSS/CSS_Basic_User_Interface/Using_URL_values_for_the_cursor_property +/pl/docs/Poprawki_DOM_w_Firefoksie_3 /pl/docs/Mozilla/Firefox/Releases/3/DOM_improvements +/pl/docs/Poprawki_SVG_w_Firefoksie_3 /pl/docs/Mozilla/Firefox/Releases/3/SVG_improvements +/pl/docs/Poprawki_XUL_w_Firefoksie_3 /pl/docs/Mozilla/Firefox/Releases/3/XUL_improvements_in_Firefox_3 /pl/docs/Poprawne_zastosowanie_CSS_i_JavaScript_w_dokumentach_XHTML:Przykłady /pl/docs/Poprawne_zastosowanie_CSS_i_JavaScript_w_dokumentach_XHTML/Przykłady +/pl/docs/Porady_odnośnie_tworzenia_szybko_ładujących_się_stron_HTML /pl/docs/orphaned/Porady_odnośnie_tworzenia_szybko_ładujących_się_stron_HTML /pl/docs/Preferencje_API /pl/docs/API_Preferencji -/pl/docs/Przewodnik_po_języku_JavaScript_1.5 /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5 -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Blok_instrukcji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Blok_instrukcji -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Czytanie_wyrażenia_regularnego /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Definiowanie_funkcji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Definiowanie_funkcji -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Dodawanie_obiektom_nowej_funkcjonalności. /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Dodawanie_obiektom_nowej_funkcjonalności. -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_eval /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_eval -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isFinite /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isFinite -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isNaN /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isNaN -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_Number_i_String /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_Number_i_String -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_escape_i_unescape /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_escape_i_unescape -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_parseInt_i_parseFloat /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_parseInt_i_parseFloat -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcja_pętli /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcja_pętli/Instrukcja_do_...while /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_komentarzy /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_komentarzy -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_manipulacji_obiektem /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_manipulacji_obiektem -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_throw /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_throw -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_try...catch /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_try...catch -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_break /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_break -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continues /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_for /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_for -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_label /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_label -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_while /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_while -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_warunkowe /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_warunkowe -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Literały /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Literały -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Nazywanie_funkcji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wywołanie_funkcji -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/O /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_i_własności /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_i_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_i_właściwości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_i_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Array /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Array -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Date /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Date -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Math /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Math -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Number /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Number -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_RegExp /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_RegExp -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_String /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_String -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_function /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_function -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_logiczny /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Operatory /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operacje_na_łańcuchach /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operacje_na_łańcuchach -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_arytmetyczne /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_arytmetyczne -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_logiczne /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_logiczne -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_porównania /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_porównania -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_porównywania /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_porównania -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_przypisania /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_przypisania -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_specjalne /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_specjalne -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_string /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operacje_na_łańcuchach -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect +/pl/docs/Programowanie_Mozilli /pl/docs/orphaned/Programowanie_Mozilli +/pl/docs/Programowanie_WWW /pl/docs/conflicting/Web/Guide +/pl/docs/Przewodnik_po_języku_JavaScript_1.5 /pl/docs/conflicting/Web/JavaScript/Guide_a026fc5d05de582c88d39cf9fd37870d +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Blok_instrukcji /pl/docs/conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Czytanie_wyrażenia_regularnego /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Definiowanie_funkcji /pl/docs/conflicting/Web/JavaScript/Guide/Functions +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Dodawanie_obiektom_nowej_funkcjonalności. /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Dodawanie_obiektom_nowej_funkcjonalności. +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane /pl/docs/conflicting/Web/JavaScript/Guide/Functions_b0ff3e89089de1f0a22029bbde807073 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_eval /pl/docs/conflicting/Web/JavaScript/Guide/Functions_90ea47f6d07003af2efc0a1756da41e2 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isFinite /pl/docs/conflicting/Web/JavaScript/Guide/Functions_2af756c37808c2f8e09add6cc9618178 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isNaN /pl/docs/conflicting/Web/JavaScript/Guide/Functions_8b84da88e673c0774c4f504a9be67268 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_Number_i_String /pl/docs/conflicting/Web/JavaScript/Guide/Functions_74f4afa40d626fed3cf9277e30d6d211 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_escape_i_unescape /pl/docs/conflicting/Web/JavaScript/Guide/Functions_14ccabf533660cb9d0794a5a93287159 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_parseInt_i_parseFloat /pl/docs/conflicting/Web/JavaScript/Guide/Functions_915be6bbaf2578afefb6927c899d5f3d +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcja_pętli /pl/docs/conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_1a7d2f7d8b159dce08254c88948bc74a +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcja_pętli/Instrukcja_do_...while /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_komentarzy /pl/docs/conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_b955d4d09ed7fa71268639ed589f8702 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_manipulacji_obiektem /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_manipulacji_obiektem +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_throw /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_throw +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_try...catch /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_try...catch +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli /pl/docs/conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_1a7d2f7d8b159dce08254c88948bc74a +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_break /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_break +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continues /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_for /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_for +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_label /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_label +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_while /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_while +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_warunkowe /pl/docs/conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_8f58cc44e17308f295c610e8acad2d99 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Literały /pl/docs/conflicting/Web/JavaScript/Guide/Grammar_and_types +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Nazywanie_funkcji /pl/docs/conflicting/Web/JavaScript/Guide/Functions_403e991db3105a03e0afc1a3cc821a01 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/O /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_i_własności /pl/docs/Web/JavaScript/Guide/Working_with_Objects +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_i_właściwości /pl/docs/Web/JavaScript/Guide/Working_with_Objects +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane /pl/docs/conflicting/Web/JavaScript/Guide_1093f218406d2d64ec91bb7a6bda93ce +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Array /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Array +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Date /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Date +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Math /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Math +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Number /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Number +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_RegExp /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_RegExp +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_String /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_String +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_function /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_function +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_logiczny /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Operatory /pl/docs/Web/JavaScript/Guide/Expressions_and_Operators +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operacje_na_łańcuchach /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_arytmetyczne /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_605f6491d97a62449200a9401cba82c7 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_logiczne /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_173cc0f9e32f34b0483b45a29fa462e4 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_porównania /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_510ae1f584cbdb5ca760b545f90c72ed +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_porównywania /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_510ae1f584cbdb5ca760b545f90c72ed +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_przypisania /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_przypisania +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_specjalne /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_a3ce80967ffc4f60314caa4b05ec9c47 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_string /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect /pl/docs/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect/Komunikacja_między_Java_a_JavaScript /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect/Komunikacja_między_Java_a_JavaScript /pl/docs/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect/Konwersja_typu_danych /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect/Konwersja_typu_danych /pl/docs/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect/Konwersja_typu_danych/Konwersja_JavaScript_do_Java /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect/Konwersja_typu_danych/Konwersja_JavaScript_do_Java -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności/Wartości_lokalne_vs._dziedziczone /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności/Wartości_lokalne_vs._dziedziczone -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściowści /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściowści/Wartości_lokalne_vs._dziedziczone /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności/Wartości_lokalne_vs._dziedziczone -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściwości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściwości/Wartości_lokalne_vs._dziedziczone /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności/Wartości_lokalne_vs._dziedziczone -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Tworzenie_hierarchii /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Tworzenie_hierarchii -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Właściwości_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Właściwości_obiektu/Dodawanie_właściwości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Właściwości_obiektu/Dziedziczenie_właściwości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Globalne_wyszukiwanie,_wielkość_znaków,_wieloliniowe_wejście /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Globalne_wyszukiwanie,_wielkość_znaków,_wieloliniowe_wejście -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Przykłady_wyrażeń_regularnych /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Przykłady_wyrażeń_regularnych -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_zamknięciami /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_zamknięciami -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Stałe /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Stałe -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_metod /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_metod -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_właściowości_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_właściwości_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_właściowości_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_właściwości_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_właściwości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_'this'_do_obiektu_referencji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektów /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_konstruktorów_funkcji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_wyrażenia_regularnego /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_wyrażenia_regularnego -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Unicode /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Unicode -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Używanie_argumentów_tablicy /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Wartości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wartości -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Wyrażenia /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wyrażenia -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Wywołanie_funkcji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wywołanie_funkcji -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments -/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Zmienne /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zmienne -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Blok_instrukcji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Blok_instrukcji -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Czytanie_wyrażenia_regularnego /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Definiowanie_funkcji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Definiowanie_funkcji -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Funkcje_predefiniowane /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Funkcje_predefiniowane:Funkcja_eval /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_eval -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Funkcje_predefiniowane:Funkcja_isFinite /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isFinite -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Funkcje_predefiniowane:Funkcja_isNaN /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isNaN -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Funkcje_predefiniowane:Funkcje_Number_i_String /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_Number_i_String -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Funkcje_predefiniowane:Funkcje_escape_i_unescape /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_escape_i_unescape -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Funkcje_predefiniowane:Funkcje_parseInt_i_parseFloat /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_parseInt_i_parseFloat -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcja_pętli /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcja_pętli:Instrukcja_do_...while /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_komentarzy /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_komentarzy -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_manipulacji_obiektem /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_manipulacji_obiektem -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_obsługi_wyjątków /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_obsługi_wyjątków:Instrukcja_throw /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_throw -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_obsługi_wyjątków:Instrukcja_try...catch /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_try...catch -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_pętli /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_pętli:Instrukcja_break /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_break -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_pętli:Instrukcja_continue /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_pętli:Instrukcja_continues /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_pętli:Instrukcja_do_...while /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_pętli:Instrukcja_for /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_for -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_pętli:Instrukcja_label /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_label -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_pętli:Instrukcja_while /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_while -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_warunkowe /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_warunkowe -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Literały /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Literały -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Nazywanie_Funkcji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wywołanie_funkcji -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:O /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:O_tym_przewodniku /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_i_własności /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_i_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_i_właściwości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_i_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_predefiniowane /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_predefiniowane:Obiekt_Array /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Array -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_predefiniowane:Obiekt_Boolean /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_predefiniowane:Obiekt_Date /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Date -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_predefiniowane:Obiekt_Math /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Math -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_predefiniowane:Obiekt_Number /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Number -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_predefiniowane:Obiekt_RegExp /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_RegExp -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_predefiniowane:Obiekt_String /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_String -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_predefiniowane:Obiekt_function /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_function -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_predefiniowane:Obiekt_logiczny /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Operatory /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Operatory:Operacje_na_łańcuchach /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operacje_na_łańcuchach -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Operatory:Operatory_arytmetyczne /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_arytmetyczne -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Operatory:Operatory_logiczne /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_logiczne -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Operatory:Operatory_porównania /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_porównania -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Operatory:Operatory_porównywania /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_porównania -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Operatory:Operatory_przypisania /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_przypisania -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Operatory:Operatory_specjalne /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_specjalne -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Operatory:Operatory_string /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operacje_na_łańcuchach -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Podgląd_klas_LiveConnect /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności /pl/docs/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności/Wartości_lokalne_vs._dziedziczone /pl/docs/conflicting/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściowści /pl/docs/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściowści/Wartości_lokalne_vs._dziedziczone /pl/docs/conflicting/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściwości /pl/docs/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściwości/Wartości_lokalne_vs._dziedziczone /pl/docs/conflicting/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Tworzenie_hierarchii /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Tworzenie_hierarchii +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Właściwości_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Właściwości_obiektu/Dodawanie_właściwości /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Właściwości_obiektu/Dziedziczenie_właściwości /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Globalne_wyszukiwanie,_wielkość_znaków,_wieloliniowe_wejście /pl/docs/Web/JavaScript/Guide/Regular_Expressions +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Przykłady_wyrażeń_regularnych /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Przykłady_wyrażeń_regularnych +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Praca_z_zamknięciami /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_zamknięciami +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Stałe /pl/docs/conflicting/Web/JavaScript/Guide/Grammar_and_types_d86447bbdab858af0abf9b17c9ec9dc9 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_metod /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_metod +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_właściowości_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_właściwości_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_właściowości_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_właściwości_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_właściwości /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_'this'_do_obiektu_referencji /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektów /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_konstruktorów_funkcji /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_wyrażenia_regularnego /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_wyrażenia_regularnego +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Unicode /pl/docs/conflicting/Web/JavaScript/Guide/Grammar_and_types_0f7acbcd2fa8bfb327628638da4e5166 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Używanie_argumentów_tablicy /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Wartości /pl/docs/conflicting/Web/JavaScript/Guide/Grammar_and_types_1d6d13b355b9483ad46cf81082b7c261 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Wyrażenia /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_c278b67ddd602343b8c21711abc1b17c +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Wywołanie_funkcji /pl/docs/conflicting/Web/JavaScript/Guide/Functions_403e991db3105a03e0afc1a3cc821a01 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments +/pl/docs/Przewodnik_po_języku_JavaScript_1.5/Zmienne /pl/docs/conflicting/Web/JavaScript/Guide/Grammar_and_types_14ae50e0032f9c0db4fe484288797da6 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Blok_instrukcji /pl/docs/conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Czytanie_wyrażenia_regularnego /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Definiowanie_funkcji /pl/docs/conflicting/Web/JavaScript/Guide/Functions +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Funkcje_predefiniowane /pl/docs/conflicting/Web/JavaScript/Guide/Functions_b0ff3e89089de1f0a22029bbde807073 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Funkcje_predefiniowane:Funkcja_eval /pl/docs/conflicting/Web/JavaScript/Guide/Functions_90ea47f6d07003af2efc0a1756da41e2 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Funkcje_predefiniowane:Funkcja_isFinite /pl/docs/conflicting/Web/JavaScript/Guide/Functions_2af756c37808c2f8e09add6cc9618178 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Funkcje_predefiniowane:Funkcja_isNaN /pl/docs/conflicting/Web/JavaScript/Guide/Functions_8b84da88e673c0774c4f504a9be67268 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Funkcje_predefiniowane:Funkcje_Number_i_String /pl/docs/conflicting/Web/JavaScript/Guide/Functions_74f4afa40d626fed3cf9277e30d6d211 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Funkcje_predefiniowane:Funkcje_escape_i_unescape /pl/docs/conflicting/Web/JavaScript/Guide/Functions_14ccabf533660cb9d0794a5a93287159 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Funkcje_predefiniowane:Funkcje_parseInt_i_parseFloat /pl/docs/conflicting/Web/JavaScript/Guide/Functions_915be6bbaf2578afefb6927c899d5f3d +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcja_pętli /pl/docs/conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_1a7d2f7d8b159dce08254c88948bc74a +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcja_pętli:Instrukcja_do_...while /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_komentarzy /pl/docs/conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_b955d4d09ed7fa71268639ed589f8702 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_manipulacji_obiektem /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_manipulacji_obiektem +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_obsługi_wyjątków /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_obsługi_wyjątków:Instrukcja_throw /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_throw +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_obsługi_wyjątków:Instrukcja_try...catch /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_try...catch +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_pętli /pl/docs/conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_1a7d2f7d8b159dce08254c88948bc74a +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_pętli:Instrukcja_break /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_break +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_pętli:Instrukcja_continue /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_pętli:Instrukcja_continues /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_pętli:Instrukcja_do_...while /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_pętli:Instrukcja_for /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_for +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_pętli:Instrukcja_label /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_label +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_pętli:Instrukcja_while /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_while +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Instrukcje_warunkowe /pl/docs/conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_8f58cc44e17308f295c610e8acad2d99 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Literały /pl/docs/conflicting/Web/JavaScript/Guide/Grammar_and_types +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Nazywanie_Funkcji /pl/docs/conflicting/Web/JavaScript/Guide/Functions_403e991db3105a03e0afc1a3cc821a01 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:O /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:O_tym_przewodniku /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_i_własności /pl/docs/Web/JavaScript/Guide/Working_with_Objects +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_i_właściwości /pl/docs/Web/JavaScript/Guide/Working_with_Objects +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_predefiniowane /pl/docs/conflicting/Web/JavaScript/Guide_1093f218406d2d64ec91bb7a6bda93ce +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_predefiniowane:Obiekt_Array /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Array +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_predefiniowane:Obiekt_Boolean /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_predefiniowane:Obiekt_Date /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Date +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_predefiniowane:Obiekt_Math /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Math +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_predefiniowane:Obiekt_Number /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Number +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_predefiniowane:Obiekt_RegExp /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_RegExp +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_predefiniowane:Obiekt_String /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_String +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_predefiniowane:Obiekt_function /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_function +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Obiekty_predefiniowane:Obiekt_logiczny /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Operatory /pl/docs/Web/JavaScript/Guide/Expressions_and_Operators +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Operatory:Operacje_na_łańcuchach /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Operatory:Operatory_arytmetyczne /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_605f6491d97a62449200a9401cba82c7 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Operatory:Operatory_logiczne /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_173cc0f9e32f34b0483b45a29fa462e4 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Operatory:Operatory_porównania /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_510ae1f584cbdb5ca760b545f90c72ed +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Operatory:Operatory_porównywania /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_510ae1f584cbdb5ca760b545f90c72ed +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Operatory:Operatory_przypisania /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_przypisania +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Operatory:Operatory_specjalne /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_a3ce80967ffc4f60314caa4b05ec9c47 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Operatory:Operatory_string /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Podgląd_klas_LiveConnect /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect /pl/docs/Przewodnik_po_języku_JavaScript_1.5:Podgląd_klas_LiveConnect:Komunikacja_między_Java_a_JavaScript /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect/Komunikacja_między_Java_a_JavaScript /pl/docs/Przewodnik_po_języku_JavaScript_1.5:Podgląd_klas_LiveConnect:Konwersja_typu_danych /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect/Konwersja_typu_danych /pl/docs/Przewodnik_po_języku_JavaScript_1.5:Podgląd_klas_LiveConnect:Konwersja_typu_danych:Konwersja_JavaScript_do_Java /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect/Konwersja_typu_danych/Konwersja_JavaScript_do_Java -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Powrót_dziedziczenia_własności /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Powrót_dziedziczenia_własności:Wartości_lokalne_vs._dziedziczone /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności/Wartości_lokalne_vs._dziedziczone -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Powrót_dziedziczenia_właściowści /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Powrót_dziedziczenia_właściowści:Wartości_lokalne_vs._dziedziczone /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności/Wartości_lokalne_vs._dziedziczone -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Powrót_dziedziczenia_właściwości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Powrót_dziedziczenia_właściwości:Wartości_lokalne_vs._dziedziczone /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności/Wartości_lokalne_vs._dziedziczone -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Praca_z_przykładem /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Praca_z_przykładem:Tworzenie_hierarchii /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Tworzenie_hierarchii -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Praca_z_przykładem:Własności_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Praca_z_przykładem:Własności_obiektu:Dodawanie_własności /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Praca_z_przykładem:Własności_obiektu:Dziedziczenie_własności /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Praca_z_przykładem:Właściwości_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Praca_z_przykładem:Właściwości_obiektu:Dodawanie_właściwości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Praca_z_przykładem:Właściwości_obiektu:Dziedziczenie_właściwości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Praca_z_wyrażeniami_regularnymi:Globalne_wyszukiwanie,_wielkość_znaków,_wieloliniowe_wejście /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Globalne_wyszukiwanie,_wielkość_znaków,_wieloliniowe_wejście -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Praca_z_wyrażeniami_regularnymi:Przykłady_wyrażeń_regularnych /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Przykłady_wyrażeń_regularnych -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Stałe /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Stałe -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Definiowanie_metod /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_metod -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Definiowanie_własności_typu_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Definiowanie_właściowości_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Definiowanie_właściwości_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Indeksowanie_własności_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Indeksowanie_właściowości_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Indeksowanie_właściwości_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Usuwanie_własności /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Usuwanie_właściwości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Używanie_'this'_do_obiektu_referencji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Używanie_inicjacji_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Używanie_inicjacji_obiektów /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Używanie_konstruktorów_funkcji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Zastosowanie_'this'_do_obiektu_referencji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Zastosowanie_konstruktorów_funkcji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_wyrażenia_regularnego /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_wyrażenia_regularnego -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Unicode /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Unicode -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Używanie_argumentów_tablicy /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Wartości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wartości -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Wyrażenia /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wyrażenia -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Wywołanie_funkcji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wywołanie_funkcji -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Zapisywanie_wzorca_wyrażenia_regularnego /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Zastosowanie_obiektu_arguments /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments -/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Zmienne /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zmienne +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Powrót_dziedziczenia_własności /pl/docs/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Powrót_dziedziczenia_własności:Wartości_lokalne_vs._dziedziczone /pl/docs/conflicting/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Powrót_dziedziczenia_właściowści /pl/docs/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Powrót_dziedziczenia_właściowści:Wartości_lokalne_vs._dziedziczone /pl/docs/conflicting/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Powrót_dziedziczenia_właściwości /pl/docs/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Powrót_dziedziczenia_właściwości:Wartości_lokalne_vs._dziedziczone /pl/docs/conflicting/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Praca_z_przykładem /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Praca_z_przykładem:Tworzenie_hierarchii /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Tworzenie_hierarchii +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Praca_z_przykładem:Własności_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Praca_z_przykładem:Własności_obiektu:Dodawanie_własności /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Praca_z_przykładem:Własności_obiektu:Dziedziczenie_własności /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Praca_z_przykładem:Właściwości_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Praca_z_przykładem:Właściwości_obiektu:Dodawanie_właściwości /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Praca_z_przykładem:Właściwości_obiektu:Dziedziczenie_właściwości /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Praca_z_wyrażeniami_regularnymi:Globalne_wyszukiwanie,_wielkość_znaków,_wieloliniowe_wejście /pl/docs/Web/JavaScript/Guide/Regular_Expressions +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Praca_z_wyrażeniami_regularnymi:Przykłady_wyrażeń_regularnych /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Przykłady_wyrażeń_regularnych +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Stałe /pl/docs/conflicting/Web/JavaScript/Guide/Grammar_and_types_d86447bbdab858af0abf9b17c9ec9dc9 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Definiowanie_metod /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_metod +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Definiowanie_własności_typu_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Definiowanie_właściowości_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Definiowanie_właściwości_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Indeksowanie_własności_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Indeksowanie_właściowości_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Indeksowanie_właściwości_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Usuwanie_własności /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Usuwanie_właściwości /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Używanie_'this'_do_obiektu_referencji /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Używanie_inicjacji_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Używanie_inicjacji_obiektów /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Używanie_konstruktorów_funkcji /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Zastosowanie_'this'_do_obiektu_referencji /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_nowych_obiektów:Zastosowanie_konstruktorów_funkcji /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Tworzenie_wyrażenia_regularnego /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_wyrażenia_regularnego +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Unicode /pl/docs/conflicting/Web/JavaScript/Guide/Grammar_and_types_0f7acbcd2fa8bfb327628638da4e5166 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Używanie_argumentów_tablicy /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Wartości /pl/docs/conflicting/Web/JavaScript/Guide/Grammar_and_types_1d6d13b355b9483ad46cf81082b7c261 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Wyrażenia /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_c278b67ddd602343b8c21711abc1b17c +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Wywołanie_funkcji /pl/docs/conflicting/Web/JavaScript/Guide/Functions_403e991db3105a03e0afc1a3cc821a01 +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Zapisywanie_wzorca_wyrażenia_regularnego /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Zastosowanie_obiektu_arguments /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments +/pl/docs/Przewodnik_po_języku_JavaScript_1.5:Zmienne /pl/docs/conflicting/Web/JavaScript/Guide/Grammar_and_types_14ae50e0032f9c0db4fe484288797da6 +/pl/docs/Przygotowanie_środowiska_programowania_rozszerzenia /pl/docs/orphaned/Przygotowanie_środowiska_programowania_rozszerzenia /pl/docs/Rejestracja_Chrome /pl/docs/Mozilla/Rejestracja_Chrome /pl/docs/Rejestry_Chrome /pl/docs/Mozilla/Rejestracja_Chrome /pl/docs/Rozszerzenia_CSS_Mozilli /pl/docs/Web/CSS/Mozilla_Extensions /pl/docs/Rysowanie_grafik_za_pomocą_Canvas /pl/docs/Web/API/Canvas_API/Tutorial +/pl/docs/Rysowanie_tekstu_przy_użyciu_canvas /pl/docs/Web/API/Canvas_API/Tutorial/Drawing_text /pl/docs/SVG /pl/docs/Web/SVG -/pl/docs/SVG/Inne_zasoby /pl/docs/Web/SVG/Inne_zasoby -/pl/docs/SVG/Przewodnik /pl/docs/Web/SVG/Przewodnik -/pl/docs/SVG:Inne_zasoby /pl/docs/Web/SVG/Inne_zasoby -/pl/docs/SVG:Przewodnik /pl/docs/Web/SVG/Przewodnik -/pl/docs/SVG_w_XHTML_-_Wprowadzenie /pl/docs/Web/SVG/Przewodnik/SVG_w_XHTML_-_Wprowadzenie +/pl/docs/SVG/Inne_zasoby /pl/docs/Web/SVG/Other_Resources +/pl/docs/SVG/Przewodnik /pl/docs/Web/SVG/Tutorial +/pl/docs/SVG:Inne_zasoby /pl/docs/Web/SVG/Other_Resources +/pl/docs/SVG:Przewodnik /pl/docs/Web/SVG/Tutorial +/pl/docs/SVG_w_XHTML_-_Wprowadzenie /pl/docs/Web/SVG/Tutorial/SVG_In_HTML_Introduction /pl/docs/Safely_accessing_content_DOM_from_chrome /pl/docs/Bezpieczny_dostęp_do_składników_DOM_z_poziomu_chrome -/pl/docs/Skrócone_deklaracje_CSS /pl/docs/Web/CSS/Skrócone_deklaracje_CSS +/pl/docs/Skrócone_deklaracje_CSS /pl/docs/Web/CSS/Shorthand_properties /pl/docs/Storage:Wydajność /pl/docs/Storage/Wydajność /pl/docs/Strona_główna /pl/docs/Web /pl/docs/Szybka_dokumentacja_CSS-2 /pl/docs/Web/CSS /pl/docs/The_Basics_of_Web_Services /pl/docs/Podstawy_Web_Services -/pl/docs/Tips_for_Authoring_Fast-loading_HTML_Pages /pl/docs/Porady_odnośnie_tworzenia_szybko_ładujących_się_stron_HTML -/pl/docs/Tools/Debugger/How_to /pl/docs/Narzędzia/Debugger/How_to -/pl/docs/Tools/Page_Inspector/How_to /pl/docs/Narzędzia/Page_Inspector/How_to -/pl/docs/Tools/Page_Inspector/How_to/Open_the_Inspector /pl/docs/Narzędzia/Page_Inspector/How_to/Open_the_Inspector -/pl/docs/Tools/Performance /pl/docs/Narzędzia/Performance -/pl/docs/Tools/Performance/Flame_Chart /pl/docs/Narzędzia/Performance/Flame_Chart +/pl/docs/Tips_for_Authoring_Fast-loading_HTML_Pages /pl/docs/orphaned/Porady_odnośnie_tworzenia_szybko_ładujących_się_stron_HTML /pl/docs/Tools/WebIDE /pl/docs/Narzędzia/WebIDE /pl/docs/Tools/WebIDE/Troubleshooting /pl/docs/Narzędzia/WebIDE/Troubleshooting -/pl/docs/Transformacje_XML_z_XSLT /pl/docs/Web/XSLT/Transformacje_XML_z_XSLT -/pl/docs/Transformacje_XML_z_XSLT/Dokumentacja_XSLT_XPath /pl/docs/Web/XSLT/Transformacje_XML_z_XSLT/Dokumentacja_XSLT_XPath -/pl/docs/Transformacje_XML_z_XSLT/Przeczytaj_więcej /pl/docs/Web/XSLT/Transformacje_XML_z_XSLT/Przeczytaj_więcej -/pl/docs/Transformacje_XML_z_XSLT:Dokumentacja_XSLT_XPath /pl/docs/Web/XSLT/Transformacje_XML_z_XSLT/Dokumentacja_XSLT_XPath -/pl/docs/Transformacje_XML_z_XSLT:Przeczytaj_więcej /pl/docs/Web/XSLT/Transformacje_XML_z_XSLT/Przeczytaj_więcej -/pl/docs/Użycie_wartości_URL_dla_własności_cursor /pl/docs/Web/CSS/cursor/Użycie_wartości_URL_dla_własności_cursor -/pl/docs/Web/API/Uint16Array /pl/docs/Web/JavaScript/Referencje/Obiekty/Uint16Array -/pl/docs/Web/API/WindowBase64.atob /pl/docs/Web/API/WindowBase64/atob -/pl/docs/Web/API/WindowBase64.btoa /pl/docs/Web/API/WindowBase64/btoa +/pl/docs/Transformacje_XML_z_XSLT /pl/docs/Web/XSLT/Transforming_XML_with_XSLT +/pl/docs/Transformacje_XML_z_XSLT/Dokumentacja_XSLT_XPath /pl/docs/Web/XSLT/Transforming_XML_with_XSLT/The_Netscape_XSLT_XPath_Reference +/pl/docs/Transformacje_XML_z_XSLT/Przeczytaj_więcej /pl/docs/Web/XSLT/Transforming_XML_with_XSLT/For_Further_Reading +/pl/docs/Transformacje_XML_z_XSLT:Dokumentacja_XSLT_XPath /pl/docs/Web/XSLT/Transforming_XML_with_XSLT/The_Netscape_XSLT_XPath_Reference +/pl/docs/Transformacje_XML_z_XSLT:Przeczytaj_więcej /pl/docs/Web/XSLT/Transforming_XML_with_XSLT/For_Further_Reading +/pl/docs/Tutorial_lokalizacji_rozszerzeń_do_Firefoksa_i_Thunderbirda_dla_wersji_1.0_i_wyższych /pl/docs/orphaned/Tutorial_lokalizacji_rozszerzeń_do_Firefoksa_i_Thunderbirda_dla_wersji_1.0_i_wyższych +/pl/docs/Tworzenie_wtyczek_OpenSearch_dla_Firefoksa /pl/docs/Web/OpenSearch +/pl/docs/Tworzymy_rozszerzenie /pl/docs/conflicting/Mozilla/Add-ons +/pl/docs/Użycie_wartości_URL_dla_własności_cursor /pl/docs/Web/CSS/CSS_Basic_User_Interface/Using_URL_values_for_the_cursor_property +/pl/docs/Web/API/AudioContext/createDynamicsCompressor /pl/docs/Web/API/BaseAudioContext/createDynamicsCompressor +/pl/docs/Web/API/Canvas_API/Tutorial/Optymalizacja_canvas /pl/docs/Web/API/Canvas_API/Tutorial/Optimizing_canvas +/pl/docs/Web/API/Canvas_API/Tutorial/rysowanie_ksztaltow /pl/docs/Web/API/Canvas_API/Tutorial/Drawing_shapes +/pl/docs/Web/API/Document/activeElement /pl/docs/Web/API/DocumentOrShadowRoot/activeElement +/pl/docs/Web/API/Document/firstChild /pl/docs/conflicting/Web/API/Node/firstChild +/pl/docs/Web/API/Document/namespaceURI /pl/docs/conflicting/Web/API/Node/namespaceURI +/pl/docs/Web/API/Document/styleSheets /pl/docs/Web/API/DocumentOrShadowRoot/styleSheets +/pl/docs/Web/API/Element/addEventListener /pl/docs/Web/API/EventTarget/addEventListener +/pl/docs/Web/API/Element/appendChild /pl/docs/Web/API/Node/appendChild +/pl/docs/Web/API/Element/blur /pl/docs/Web/API/HTMLOrForeignElement/blur +/pl/docs/Web/API/Element/childNodes /pl/docs/Web/API/Node/childNodes +/pl/docs/Web/API/Element/click /pl/docs/Web/API/HTMLElement/click +/pl/docs/Web/API/Element/clientNode /pl/docs/Web/API/Node/cloneNode +/pl/docs/Web/API/Element/dir /pl/docs/Web/API/HTMLElement/dir +/pl/docs/Web/API/Element/dispatchEvent /pl/docs/Web/API/EventTarget/dispatchEvent +/pl/docs/Web/API/Element/firstChild /pl/docs/Web/API/Node/firstChild +/pl/docs/Web/API/Element/focus /pl/docs/Web/API/HTMLOrForeignElement/focus +/pl/docs/Web/API/Element/hasChildNodes /pl/docs/Web/API/Node/hasChildNodes +/pl/docs/Web/API/Element/insertBefore /pl/docs/Web/API/Node/insertBefore +/pl/docs/Web/API/Element/lang /pl/docs/Web/API/HTMLElement/lang +/pl/docs/Web/API/Element/lastChild /pl/docs/Web/API/Node/lastChild +/pl/docs/Web/API/Element/length /pl/docs/Web/API/NodeList/length +/pl/docs/Web/API/Element/localName /pl/docs/Web/API/Node/localName +/pl/docs/Web/API/Element/name /pl/docs/conflicting/Web/API +/pl/docs/Web/API/Element/namespaceURI /pl/docs/Web/API/Node/namespaceURI +/pl/docs/Web/API/Element/nextSibling /pl/docs/Web/API/Node/nextSibling +/pl/docs/Web/API/Element/nodeName /pl/docs/Web/API/Node/nodeName +/pl/docs/Web/API/Element/nodeType /pl/docs/Web/API/Node/nodeType +/pl/docs/Web/API/Element/nodeValue /pl/docs/Web/API/Node/nodeValue +/pl/docs/Web/API/Element/normalize /pl/docs/Web/API/Node/normalize +/pl/docs/Web/API/Element/offsetHeight /pl/docs/Web/API/HTMLElement/offsetHeight +/pl/docs/Web/API/Element/offsetLeft /pl/docs/Web/API/HTMLElement/offsetLeft +/pl/docs/Web/API/Element/offsetParent /pl/docs/Web/API/HTMLElement/offsetParent +/pl/docs/Web/API/Element/offsetWidth /pl/docs/Web/API/HTMLElement/offsetWidth +/pl/docs/Web/API/Element/onclick /pl/docs/Web/API/GlobalEventHandlers/onclick +/pl/docs/Web/API/Element/onkeypress /pl/docs/Web/API/GlobalEventHandlers/onkeypress +/pl/docs/Web/API/Element/onkeyup /pl/docs/Web/API/GlobalEventHandlers/onkeyup +/pl/docs/Web/API/Element/onmousedown /pl/docs/Web/API/GlobalEventHandlers/onmousedown +/pl/docs/Web/API/Element/onmousemove /pl/docs/Web/API/GlobalEventHandlers/onmousemove +/pl/docs/Web/API/Element/ownerDocument /pl/docs/Web/API/Node/ownerDocument +/pl/docs/Web/API/Element/parentNode /pl/docs/Web/API/Node/parentNode +/pl/docs/Web/API/Element/prefix /pl/docs/Web/API/Node/prefix +/pl/docs/Web/API/Element/previousSibling /pl/docs/Web/API/Node/previousSibling +/pl/docs/Web/API/Element/removeChild /pl/docs/Web/API/Node/removeChild +/pl/docs/Web/API/Element/replaceChild /pl/docs/Web/API/Node/replaceChild +/pl/docs/Web/API/Element/style /pl/docs/Web/API/ElementCSSInlineStyle/style +/pl/docs/Web/API/Element/tabIndex /pl/docs/Web/API/HTMLOrForeignElement/tabIndex +/pl/docs/Web/API/Element/textContent /pl/docs/Web/API/Node/textContent +/pl/docs/Web/API/Event/altKey /pl/docs/Web/API/MouseEvent/altKey +/pl/docs/Web/API/Event/button /pl/docs/Web/API/MouseEvent/button +/pl/docs/Web/API/Event/cancelBubble /pl/docs/Web/API/UIEvent/cancelBubble +/pl/docs/Web/API/Event/charCode /pl/docs/Web/API/KeyboardEvent/charCode +/pl/docs/Web/API/Event/clientX /pl/docs/Web/API/MouseEvent/clientX +/pl/docs/Web/API/Event/clientY /pl/docs/Web/API/MouseEvent/clientY +/pl/docs/Web/API/Event/ctrlKey /pl/docs/Web/API/MouseEvent/ctrlKey +/pl/docs/Web/API/Event/initMouseEvent /pl/docs/Web/API/MouseEvent/initMouseEvent +/pl/docs/Web/API/Event/initUIEvent /pl/docs/Web/API/UIEvent/initUIEvent +/pl/docs/Web/API/Event/isChar /pl/docs/Web/API/UIEvent/isChar +/pl/docs/Web/API/Event/keyCode /pl/docs/Web/API/KeyboardEvent/keyCode +/pl/docs/Web/API/Event/layerX /pl/docs/Web/API/UIEvent/layerX +/pl/docs/Web/API/Event/layerY /pl/docs/Web/API/UIEvent/layerY +/pl/docs/Web/API/Event/metaKey /pl/docs/Web/API/MouseEvent/metaKey +/pl/docs/Web/API/Event/pageX /pl/docs/Web/API/UIEvent/pageX +/pl/docs/Web/API/Event/pageY /pl/docs/Web/API/UIEvent/pageY +/pl/docs/Web/API/Event/relatedTarget /pl/docs/Web/API/MouseEvent/relatedTarget +/pl/docs/Web/API/Event/screenX /pl/docs/Web/API/MouseEvent/screenX +/pl/docs/Web/API/Event/screenY /pl/docs/Web/API/MouseEvent/screenY +/pl/docs/Web/API/Event/shiftKey /pl/docs/Web/API/MouseEvent/shiftKey +/pl/docs/Web/API/Event/view /pl/docs/Web/API/UIEvent/view +/pl/docs/Web/API/HTMLElement/dataset /pl/docs/Web/API/HTMLOrForeignElement/dataset +/pl/docs/Web/API/Navigator/appCodeName /pl/docs/Web/API/NavigatorID/appCodeName +/pl/docs/Web/API/Navigator/appName /pl/docs/Web/API/NavigatorID/appName +/pl/docs/Web/API/Navigator/appVersion /pl/docs/Web/API/NavigatorID/appVersion +/pl/docs/Web/API/Navigator/javaEnabled /pl/docs/Web/API/NavigatorPlugins/javaEnabled +/pl/docs/Web/API/Navigator/language /pl/docs/Web/API/NavigatorLanguage/language +/pl/docs/Web/API/Navigator/mimeTypes /pl/docs/Web/API/NavigatorPlugins/mimeTypes +/pl/docs/Web/API/Navigator/onLine /pl/docs/Web/API/NavigatorOnLine/onLine +/pl/docs/Web/API/Navigator/platform /pl/docs/Web/API/NavigatorID/platform +/pl/docs/Web/API/Navigator/plugins /pl/docs/Web/API/NavigatorPlugins/plugins +/pl/docs/Web/API/Navigator/product /pl/docs/Web/API/NavigatorID/product +/pl/docs/Web/API/NavigatorOnLine/Zdarzenia_online_i_offline /pl/docs/Web/API/NavigatorOnLine/Online_and_offline_events +/pl/docs/Web/API/Storage /pl/docs/Web/API/Web_Storage_API +/pl/docs/Web/API/Stylesheet /pl/docs/Web/API/CSSStyleSheet +/pl/docs/Web/API/Stylesheet/cssRules /pl/docs/Web/API/CSSRuleList +/pl/docs/Web/API/Stylesheet/deleteRule /pl/docs/Web/API/CSSStyleSheet/deleteRule +/pl/docs/Web/API/Stylesheet/insertRule /pl/docs/Web/API/CSSStyleSheet/insertRule +/pl/docs/Web/API/Stylesheet/ownerRule /pl/docs/orphaned/Web/API/Stylesheet/ownerRule +/pl/docs/Web/API/Uint16Array /pl/docs/Web/JavaScript/Reference/Global_Objects/Uint16Array +/pl/docs/Web/API/Window/clearInterval /pl/docs/Web/API/WindowOrWorkerGlobalScope/clearInterval +/pl/docs/Web/API/Window/clearTimeout /pl/docs/Web/API/WindowOrWorkerGlobalScope/clearTimeout +/pl/docs/Web/API/Window/onload /pl/docs/Web/API/GlobalEventHandlers/onload +/pl/docs/Web/API/Window/setInterval /pl/docs/Web/API/WindowOrWorkerGlobalScope/setInterval +/pl/docs/Web/API/Window/setTimeout /pl/docs/Web/API/WindowOrWorkerGlobalScope/setTimeout +/pl/docs/Web/API/WindowBase64 /pl/docs/Web/API/WindowOrWorkerGlobalScope +/pl/docs/Web/API/WindowBase64.atob /pl/docs/Web/API/WindowOrWorkerGlobalScope/atob +/pl/docs/Web/API/WindowBase64.btoa /pl/docs/Web/API/WindowOrWorkerGlobalScope/btoa +/pl/docs/Web/API/WindowBase64/atob /pl/docs/Web/API/WindowOrWorkerGlobalScope/atob +/pl/docs/Web/API/WindowBase64/btoa /pl/docs/Web/API/WindowOrWorkerGlobalScope/btoa +/pl/docs/Web/API/Zdarzenia_dotykowe /pl/docs/Web/API/Touch_events +/pl/docs/Web/API/powiadomienie /pl/docs/Web/API/Notification +/pl/docs/Web/Accessibility/ARIA/Aplikacje_internetowe_i_ARIA_FAQ /pl/docs/Web/Accessibility/ARIA/Web_applications_and_ARIA_FAQ +/pl/docs/Web/Bezpieczeństwo /pl/docs/Web/Security +/pl/docs/Web/Bezpieczeństwo/Certificate_Transparency /pl/docs/Web/Security/Certificate_Transparency +/pl/docs/Web/Bezpieczeństwo/Podstawy_bezpieczenstwa_informacji /pl/docs/orphaned/Web/Security/Information_Security_Basics +/pl/docs/Web/Bezpieczeństwo/Same-origin_policy /pl/docs/Web/Security/Same-origin_policy +/pl/docs/Web/Bezpieczeństwo/Subresource_Integrity /pl/docs/Web/Security/Subresource_Integrity /pl/docs/Web/CSS/-moz-appearance /pl/docs/Web/CSS/appearance /pl/docs/Web/CSS/-moz-background-inline-policy /pl/docs/Web/CSS/box-decoration-break /pl/docs/Web/CSS/-moz-background-origin /pl/docs/Web/CSS/background-origin @@ -1849,21 +2038,73 @@ /pl/docs/Web/CSS/-moz-border-radius-bottomright /pl/docs/Web/CSS/border-bottom-right-radius /pl/docs/Web/CSS/-moz-border-radius-topleft /pl/docs/Web/CSS/border-top-left-radius /pl/docs/Web/CSS/-moz-border-radius-topright /pl/docs/Web/CSS/border-top-right-radius +/pl/docs/Web/CSS/-moz-box-align /pl/docs/Web/CSS/box-align /pl/docs/Web/CSS/-moz-box-direction /pl/docs/Web/CSS/box-direction +/pl/docs/Web/CSS/-moz-box-flex /pl/docs/Web/CSS/box-flex +/pl/docs/Web/CSS/-moz-box-orient /pl/docs/Web/CSS/box-orient +/pl/docs/Web/CSS/-moz-box-pack /pl/docs/Web/CSS/box-pack /pl/docs/Web/CSS/-moz-box-sizing /pl/docs/Web/CSS/box-sizing /pl/docs/Web/CSS/-moz-opacity /pl/docs/Web/CSS/opacity +/pl/docs/Web/CSS/-moz-outline-color /pl/docs/Web/CSS/outline-color /pl/docs/Web/CSS/-moz-outline-offset /pl/docs/Web/CSS/outline-offset +/pl/docs/Web/CSS/:after /pl/docs/Web/CSS/::after +/pl/docs/Web/CSS/:before /pl/docs/Web/CSS/::before +/pl/docs/Web/CSS/:first-letter /pl/docs/Web/CSS/::first-letter +/pl/docs/Web/CSS/:first-node /pl/docs/Web/CSS/:-moz-first-node /pl/docs/Web/CSS/:last-node /pl/docs/Web/CSS/:-moz-last-node /pl/docs/Web/CSS/@-moz-document /pl/docs/Web/CSS/@document +/pl/docs/Web/CSS/CSS_Colors /pl/docs/Web/CSS/CSS_Color +/pl/docs/Web/CSS/CSS_Colors/Narzedzie_doboru_kolorow /pl/docs/Web/CSS/CSS_Colors/Color_picker_tool +/pl/docs/Web/CSS/CSS_Grid_Layout/Realizacja_typowych_ukladow_za_pomoca_ukladu_siatki_CSS /pl/docs/Web/CSS/CSS_Grid_Layout/Realizing_common_layouts_using_CSS_Grid_Layout +/pl/docs/Web/CSS/CSS_Reference /pl/docs/Web/CSS/Reference /pl/docs/Web/CSS/CSS_Reference/Rozszerzenia_Mozilli /pl/docs/Web/CSS/Mozilla_Extensions -/pl/docs/Web/CSS/Na_początek/Czym_jest_CSS? /pl/docs/Web/CSS/Na_początek/Czym_jest_CSS +/pl/docs/Web/CSS/CSS_Selectors/Użycie_pseudoklasy_:target_w_selektorach /pl/docs/Web/CSS/CSS_Selectors/Using_the_:target_pseudo-class_in_selectors +/pl/docs/Web/CSS/Częste_pytania_o_CSS /pl/docs/Learn/CSS/Howto/CSS_FAQ +/pl/docs/Web/CSS/Dziedziczenie /pl/docs/Web/CSS/inheritance +/pl/docs/Web/CSS/Inne_zasoby /pl/docs/conflicting/Web/CSS +/pl/docs/Web/CSS/Na_początek /pl/docs/Learn/CSS/First_steps +/pl/docs/Web/CSS/Na_początek/Bloki /pl/docs/Learn/CSS/Building_blocks +/pl/docs/Web/CSS/Na_początek/Czym_jest_CSS /pl/docs/Learn/CSS/First_steps/How_CSS_works +/pl/docs/Web/CSS/Na_początek/Czym_jest_CSS? /pl/docs/Learn/CSS/First_steps/How_CSS_works +/pl/docs/Web/CSS/Na_początek/Czytelny_CSS /pl/docs/Learn/CSS/First_steps/How_CSS_is_structured +/pl/docs/Web/CSS/Na_początek/Grafika_SVG /pl/docs/Web/SVG/Tutorial/SVG_and_CSS +/pl/docs/Web/CSS/Na_początek/Jak_działa_CSS /pl/docs/conflicting/Learn/CSS/First_steps/How_CSS_works +/pl/docs/Web/CSS/Na_początek/JavaScript /pl/docs/Learn/JavaScript/Client-side_web_APIs/Manipulating_documents +/pl/docs/Web/CSS/Na_początek/Kaskadowość_i_dziedziczenie /pl/docs/Learn/CSS/Building_blocks/Cascade_and_inheritance +/pl/docs/Web/CSS/Na_początek/Kolor /pl/docs/Learn/CSS/Building_blocks/Values_and_units +/pl/docs/Web/CSS/Na_początek/Listy /pl/docs/Learn/CSS/Styling_text/Styling_lists +/pl/docs/Web/CSS/Na_początek/Media /pl/docs/Web/Progressive_web_apps/Responsive/Media_types +/pl/docs/Web/CSS/Na_początek/Po_co_używać_CSS /pl/docs/conflicting/Learn/CSS/First_steps/How_CSS_works_21be2ff13a08a8866d772c3a5e975193 +/pl/docs/Web/CSS/Na_początek/Selektory /pl/docs/Learn/CSS/Building_blocks/Selectors +/pl/docs/Web/CSS/Na_początek/Style_tekstowe /pl/docs/Learn/CSS/Styling_text/Fundamentals +/pl/docs/Web/CSS/Na_początek/Tables /pl/docs/Learn/CSS/Building_blocks/Styling_tables /pl/docs/Web/CSS/Na_początek/Treść /pl/docs/Learn/CSS/Howto/Generated_content +/pl/docs/Web/CSS/Na_początek/Układ /pl/docs/conflicting/Learn/CSS/CSS_layout +/pl/docs/Web/CSS/Prywatnosc_i_znacznik_:visited /pl/docs/Web/CSS/Privacy_and_the_:visited_selector +/pl/docs/Web/CSS/Rozszerzenia_WebKit /pl/docs/Web/CSS/WebKit_Extensions +/pl/docs/Web/CSS/Selektor_klasy /pl/docs/Web/CSS/Class_selectors +/pl/docs/Web/CSS/Selektor_uniwersalny /pl/docs/Web/CSS/Universal_selectors +/pl/docs/Web/CSS/Selektory_typu /pl/docs/Web/CSS/Type_selectors +/pl/docs/Web/CSS/Skrócone_deklaracje_CSS /pl/docs/Web/CSS/Shorthand_properties /pl/docs/Web/CSS/Uzycie_zmiennych_CSS /pl/docs/Web/CSS/Using_CSS_custom_properties +/pl/docs/Web/CSS/Wartość_początkowa /pl/docs/Web/CSS/initial_value +/pl/docs/Web/CSS/cursor/Użycie_wartości_URL_dla_własności_cursor /pl/docs/Web/CSS/CSS_Basic_User_Interface/Using_URL_values_for_the_cursor_property /pl/docs/Web/CSS/transform-function/matrix /pl/docs/Web/CSS/transform-function/matrix() +/pl/docs/Web/Dostępność /pl/docs/Web/Accessibility +/pl/docs/Web/Dostępność/An_overview_of_accessible_web_applications_and_widgets /pl/docs/Web/Accessibility/An_overview_of_accessible_web_applications_and_widgets +/pl/docs/Web/Dostępność/Keyboard-navigable_JavaScript_widgets /pl/docs/Web/Accessibility/Keyboard-navigable_JavaScript_widgets /pl/docs/Web/Events/drag /pl/docs/Web/API/Document/drag_event +/pl/docs/Web/Guide/AJAX/Na_początek /pl/docs/Web/Guide/AJAX/Getting_Started /pl/docs/Web/Guide/CSS /pl/docs/Learn/CSS +/pl/docs/Web/Guide/CSS/Kolumny_CSS3 /pl/docs/Web/CSS/CSS_Columns/Using_multi-column_layouts +/pl/docs/Web/Guide/CSS/Sprawdzanie_media_queries /pl/docs/Web/CSS/Media_Queries/Testing_media_queries /pl/docs/Web/Guide/HTML /pl/docs/Learn/HTML /pl/docs/Web/Guide/HTML/Wprowadzenie /pl/docs/Learn/HTML/Introduction_to_HTML +/pl/docs/Web/Guide/Liczniki_CSS /pl/docs/Web/CSS/CSS_Lists_and_Counters/Using_CSS_counters +/pl/docs/Web/HTML(PL) /pl/docs/conflicting/Web/HTML +/pl/docs/Web/HTML(PL)/Tryb_Zgodnosci_oraz_Tryb_Standardow /pl/docs/Web/HTML/Quirks_Mode_and_Standards_Mode +/pl/docs/Web/HTML/Canvas /pl/docs/Web/API/Canvas_API +/pl/docs/Web/HTML/Element/comment /pl/docs/orphaned/Web/HTML/Element/comment /pl/docs/Web/HTML/Elementy /pl/docs/Web/HTML/Element /pl/docs/Web/HTML/Elementy/a /pl/docs/Web/HTML/Element/a /pl/docs/Web/HTML/Elementy/abbr /pl/docs/Web/HTML/Element/abbr @@ -1885,496 +2126,995 @@ /pl/docs/Web/HTML/Elementy/s /pl/docs/Web/HTML/Element/s /pl/docs/Web/HTML/Elementy/small /pl/docs/Web/HTML/Element/small /pl/docs/Web/HTML/Elementy/strong /pl/docs/Web/HTML/Element/strong -/pl/docs/Web/HTML/The_Importance_of_Correct_Commenting /pl/docs/Web/HTML/Znaczenie_poprawnego_komentowania -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5 /pl/docs/Web/JavaScript/Referencje -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje /pl/docs/Web/JavaScript/Referencje/Obiekty -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/Boolean /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/Date /pl/docs/Web/JavaScript/Referencje/Obiekty/Date -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/Number /pl/docs/Web/JavaScript/Referencje/Obiekty/Number -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/Object /pl/docs/Web/JavaScript/Referencje/Obiekty/Object -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/String /pl/docs/Web/JavaScript/Referencje/Obiekty/String -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/arguments /pl/docs/Web/JavaScript/Referencje/Funkcje/arguments -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/arguments/callee /pl/docs/Web/JavaScript/Referencje/Funkcje/arguments/callee +/pl/docs/Web/HTML/Elementy_blokowe /pl/docs/Web/HTML/Block-level_elements +/pl/docs/Web/HTML/Elementy_liniowe /pl/docs/Web/HTML/Inline_elements +/pl/docs/Web/HTML/Global_attributes/pisownia /pl/docs/Web/HTML/Global_attributes/spellcheck +/pl/docs/Web/HTML/Kontrola_sprawdzania_pisowni_w_formularzach_HTML /pl/docs/conflicting/Web/HTML/Global_attributes/spellcheck +/pl/docs/Web/HTML/The_Importance_of_Correct_Commenting /pl/docs/conflicting/Learn/HTML/Introduction_to_HTML/Getting_started +/pl/docs/Web/HTML/Zarządzanie_fokusem_w_HTML /pl/docs/conflicting/Web/API/Document/hasFocus +/pl/docs/Web/HTML/Znaczenie_poprawnego_komentowania /pl/docs/conflicting/Learn/HTML/Introduction_to_HTML/Getting_started +/pl/docs/Web/HTTP/Ciasteczka /pl/docs/Web/HTTP/Cookies +/pl/docs/Web/HTTP/HTTP_wiadomosci_ogólne /pl/docs/Web/HTTP/Overview +/pl/docs/Web/HTTP/Headers/Data /pl/docs/Web/HTTP/Headers/Date +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5 /pl/docs/Web/JavaScript/Reference +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje /pl/docs/Web/JavaScript/Reference/Global_Objects +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/Boolean /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/Date /pl/docs/Web/JavaScript/Reference/Global_Objects/Date +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/Number /pl/docs/Web/JavaScript/Reference/Global_Objects/Number +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/Object /pl/docs/Web/JavaScript/Reference/Global_Objects/Object +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/String /pl/docs/Web/JavaScript/Reference/Global_Objects/String +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/arguments /pl/docs/Web/JavaScript/Reference/Functions/arguments +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/arguments/callee /pl/docs/Web/JavaScript/Reference/Functions/arguments/callee /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/arguments/caller /pl/docs/Web/JavaScript/Referencje/Funkcje/arguments/caller -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/arguments/length /pl/docs/Web/JavaScript/Referencje/Funkcje/arguments/length -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/decodeURI /pl/docs/Web/JavaScript/Referencje/Obiekty/decodeURI -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/decodeURIComponent /pl/docs/Web/JavaScript/Referencje/Obiekty/decodeURIComponent -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/encodeURI /pl/docs/Web/JavaScript/Referencje/Obiekty/encodeURI -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/encodeURIComponent /pl/docs/Web/JavaScript/Referencje/Obiekty/encodeURIComponent +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/arguments/length /pl/docs/Web/JavaScript/Reference/Functions/arguments/length +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/decodeURI /pl/docs/Web/JavaScript/Reference/Global_Objects/decodeURI +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/decodeURIComponent /pl/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/encodeURI /pl/docs/Web/JavaScript/Reference/Global_Objects/encodeURI +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/encodeURIComponent /pl/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/eval /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/eval -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/isFinite /pl/docs/Web/JavaScript/Referencje/Obiekty/isFinite -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/isNaN /pl/docs/Web/JavaScript/Referencje/Obiekty/isNaN -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/parseFloat /pl/docs/Web/JavaScript/Referencje/Obiekty/parseFloat -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/parseInt /pl/docs/Web/JavaScript/Referencje/Obiekty/parseInt -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Komentarze /pl/docs/Web/JavaScript/Referencje/Komentarz -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Komentarze/komentarz /pl/docs/Web/JavaScript/Referencje/Komentarz +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/isFinite /pl/docs/Web/JavaScript/Reference/Global_Objects/isFinite +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/isNaN /pl/docs/Web/JavaScript/Reference/Global_Objects/isNaN +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/parseFloat /pl/docs/Web/JavaScript/Reference/Global_Objects/parseFloat +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Funkcje/parseInt /pl/docs/Web/JavaScript/Reference/Global_Objects/parseInt +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Komentarze /pl/docs/Web/JavaScript/Reference/Lexical_grammar +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Komentarze/komentarz /pl/docs/Web/JavaScript/Reference/Lexical_grammar /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/LiveConnect /pl/docs/Web/JavaScript/Referencje/LiveConnect /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/LiveConnect/JSException /pl/docs/Web/JavaScript/Referencje/LiveConnect/JSException /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/LiveConnect/JSObject /pl/docs/Web/JavaScript/Referencje/LiveConnect/JSObject -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/O_tym_dokumencie /pl/docs/Web/JavaScript/Referencje/O_tym_dokumencie -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/O_tym_dokumencie/Konwencje_formatowania_tekstu /pl/docs/Web/JavaScript/Referencje/O_tym_dokumencie/Konwencje_formatowania_tekstu -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty /pl/docs/Web/JavaScript/Referencje/Obiekty -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array /pl/docs/Web/JavaScript/Referencje/Obiekty/Array -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/concat /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/concat -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/Array -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/every /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/every -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/filter /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/filter -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/forEach /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/forEach -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/indexOf /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/indexOf -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/join /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/join -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/lastIndexOf /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/lastIndexOf -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/length /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/length -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/map /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/map -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/pop /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/pop -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/prototype /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/prototype -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/push /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/push -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/reverse /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/reverse -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/shift /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/shift -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/slice /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/slice -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/some /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/some -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/sort /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/sort -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/splice /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/splice -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/toSource /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/toSource -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/toString /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/toString -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/unshift /pl/docs/Web/JavaScript/Referencje/Obiekty/Array/unshift -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/valueOf /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/valueOf -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean/constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean/prototype /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean/prototype -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean/toSource /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean/toSource -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean/toString /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean/toString -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean/valueOf /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean/valueOf -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date /pl/docs/Web/JavaScript/Referencje/Obiekty/Date -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/UTC /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/UTC -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/constructor -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getDate /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getDate -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getDay /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getDay -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getFullYear /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getFullYear -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getHours /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getHours -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getMilliseconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getMilliseconds -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getMinutes /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getMinutes -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getMonth /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getMonth -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getSeconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getSeconds -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getTime /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getTime -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getTimezoneOffset /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getTimezoneOffset -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCDate /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCDate -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCDay /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCDay -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCFullYear /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCFullYear -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCHours /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCHours -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCMilliseconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCMilliseconds -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCMinutes /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCMinutes -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCMonth /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCMonth -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCSeconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCSeconds -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getYear /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getYear -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/now /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/now -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/parse /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/parse -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/prototype /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/prototype -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setDate /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setDate -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setFullYear /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setFullYear -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setHours /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setHours -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setMilliseconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setMilliseconds -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setMinutes /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setMinutes -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setMonth /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setMonth -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setSeconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setSeconds -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setTime /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setTime -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCDate /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCDate -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCFullYear /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCFullYear -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCHours /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCHours -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCMilliseconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCMilliseconds -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCMinutes /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCMinutes -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCMonth /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCMonth -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCSeconds /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCSeconds -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setYear /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setYear -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toGMTString /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toGMTString -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toLocaleDateString /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toLocaleDateString -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toLocaleString /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toLocaleString -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toLocaleTimeString /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toLocaleTimeString -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toSource /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toSource -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toString /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toString -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toUTCString /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toUTCString -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/valueOf /pl/docs/Web/JavaScript/Referencje/Obiekty/Date/valueOf +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/O_tym_dokumencie /pl/docs/Web/JavaScript/Reference/About +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/O_tym_dokumencie/Konwencje_formatowania_tekstu /pl/docs/orphaned/Web/JavaScript/Referencje/O_tym_dokumencie/Konwencje_formatowania_tekstu +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty /pl/docs/Web/JavaScript/Reference/Global_Objects +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array /pl/docs/Web/JavaScript/Reference/Global_Objects/Array +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/concat /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/concat +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/Array +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/every /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/every +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/filter /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/filter +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/forEach /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/indexOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/join /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/join +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/lastIndexOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/length /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/length +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/map /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/map +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/pop /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/pop +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/prototype /pl/docs/orphaned/Web/JavaScript/Reference/Global_Objects/Array/prototype +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/push /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/push +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/reverse /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/reverse +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/shift /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/shift +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/slice /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/slice +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/some /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/some +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/sort /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/sort +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/splice /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/splice +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/toSource +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/toString +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/unshift /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/unshift +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Array/valueOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/valueOf +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean/constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean/prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Boolean +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean/toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean/toSource +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean/toString +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Boolean/valueOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean/valueOf +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date /pl/docs/Web/JavaScript/Reference/Global_Objects/Date +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/UTC /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/UTC +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/constructor /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Date +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getDate /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getDate +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getDay /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getDay +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getFullYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getFullYear +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getHours /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getHours +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getMilliseconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getMilliseconds +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getMinutes /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getMinutes +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getMonth /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getMonth +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getSeconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getSeconds +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getTime /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getTime +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getTimezoneOffset /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getTimezoneOffset +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCDate /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCDate +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCDay /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCDay +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCFullYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCFullYear +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCHours /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCHours +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCMilliseconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCMilliseconds +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCMinutes /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCMinutes +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCMonth /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCMonth +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getUTCSeconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCSeconds +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/getYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getYear +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/now /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/now +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/parse /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/parse +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Date_73c046d653c590f4914731d078f3b2c5 +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setDate /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setDate +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setFullYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setFullYear +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setHours /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setHours +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setMilliseconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setMilliseconds +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setMinutes /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setMinutes +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setMonth /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setMonth +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setSeconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setSeconds +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setTime /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setTime +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCDate /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCDate +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCFullYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCFullYear +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCHours /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCHours +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCMilliseconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCMilliseconds +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCMinutes /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCMinutes +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCMonth /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCMonth +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setUTCSeconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCSeconds +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/setYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setYear +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toGMTString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toGMTString +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toLocaleDateString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleDateString +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toLocaleString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleString +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toLocaleTimeString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleTimeString +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toSource +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toString +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/toUTCString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toUTCString +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Date/valueOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/valueOf /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/JavaArray /pl/docs/Web/JavaScript/Referencje/Obiekty/JavaArray /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/JavaArray/length /pl/docs/Web/JavaScript/Referencje/Obiekty/JavaArray/length /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/JavaArray/toString /pl/docs/Web/JavaScript/Referencje/Obiekty/JavaArray/toString /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/JavaClass /pl/docs/Web/JavaScript/Referencje/Obiekty/JavaClass /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/JavaObject /pl/docs/Web/JavaScript/Referencje/Obiekty/JavaObject /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/JavaPackage /pl/docs/Web/JavaScript/Referencje/Obiekty/JavaPackage -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math /pl/docs/Web/JavaScript/Referencje/Obiekty/Math -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/E /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/E -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/LN10 /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/LN10 -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/LN2 /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/LN2 -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/LOG10E /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/LOG10E -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/LOG2E /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/LOG2E -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/PI /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/PI -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/SQRT1_2 /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/SQRT1_2 -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/SQRT2 /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/SQRT2 -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/abs /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/abs -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/acos /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/acos -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/asin /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/asin -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/atan /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/atan -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/atan2 /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/atan2 -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/ceil /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/ceil -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/cos /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/cos -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/exp /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/exp -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/floor /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/floor -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/log /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/log -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/max /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/max -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/min /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/min -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/pow /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/pow -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/random /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/random -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/round /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/round -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/sin /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/sin -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/sqrt /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/sqrt -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/tan /pl/docs/Web/JavaScript/Referencje/Obiekty/Math/tan -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number /pl/docs/Web/JavaScript/Referencje/Obiekty/Number -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/MAX_VALUE /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/MAX_VALUE -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/MIN_VALUE /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/MIN_VALUE -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/NEGATIVE_INFINITY /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/NEGATIVE_INFINITY -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/NaN /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/NaN -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/POSITIVE_INFINITY /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/POSITIVE_INFINITY -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/constructor -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/toExponential /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/toExponential -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/toFixed /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/toFixed -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/toPrecision /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/toPrecision -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/toString /pl/docs/Web/JavaScript/Referencje/Obiekty/Number/toString -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object /pl/docs/Web/JavaScript/Referencje/Obiekty/Object -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/constructor +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math /pl/docs/Web/JavaScript/Reference/Global_Objects/Math +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/E /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/E +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/LN10 /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/LN10 +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/LN2 /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/LN2 +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/LOG10E /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/LOG10E +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/LOG2E /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/LOG2E +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/PI /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/PI +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/SQRT1_2 /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/SQRT1_2 +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/SQRT2 /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/SQRT2 +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/abs /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/abs +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/acos /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/acos +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/asin /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/asin +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/atan /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/atan +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/atan2 /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/atan2 +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/ceil /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/ceil +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/cos /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/cos +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/exp /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/exp +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/floor /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/floor +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/log /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/log +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/max /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/max +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/min /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/min +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/pow /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/pow +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/random /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/random +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/round /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/round +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/sin /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/sin +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/sqrt /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/sqrt +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Math/tan /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/tan +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number /pl/docs/Web/JavaScript/Reference/Global_Objects/Number +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/MAX_VALUE /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_VALUE +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/MIN_VALUE /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/MIN_VALUE +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/NEGATIVE_INFINITY /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/NEGATIVE_INFINITY +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/NaN /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/NaN +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/POSITIVE_INFINITY /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/POSITIVE_INFINITY +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/constructor /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Number +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/toExponential /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/toExponential +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/toFixed /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/toFixed +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/toPrecision /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/toPrecision +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Number/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/toString +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object /pl/docs/Web/JavaScript/Reference/Global_Objects/Object +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/constructor /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/eval /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/eval -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/prototype /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/prototype -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/toLocaleString /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/toLocaleString -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/toSource /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/toSource -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/toString /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/toString +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Object +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/toLocaleString /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/toLocaleString +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/toSource +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/toString /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/unwatch /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/unwatch -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/valueOf /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/valueOf +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/valueOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/valueOf /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/watch /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/watch /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Packages /pl/docs/Web/JavaScript/Referencje/Obiekty/Packages /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Packages/java /pl/docs/Web/JavaScript/Referencje/Obiekty/Packages/java /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Packages/nazwaKlasy /pl/docs/Web/JavaScript/Referencje/Obiekty/Packages/nazwaKlasy /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Packages/netscape /pl/docs/Web/JavaScript/Referencje/Obiekty/Packages/netscape /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/Packages/sun /pl/docs/Web/JavaScript/Referencje/Obiekty/Packages/sun -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/exec /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/exec -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/global /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/global -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/ignoreCase /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/ignoreCase -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/prototype /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/prototype -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/source /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/source -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/test /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/test -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/toSource /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/toSource -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/toString /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/toString -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String /pl/docs/Web/JavaScript/Referencje/Obiekty/String -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/anchor /pl/docs/Web/JavaScript/Referencje/Obiekty/String/anchor -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/big /pl/docs/Web/JavaScript/Referencje/Obiekty/String/big -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/blink /pl/docs/Web/JavaScript/Referencje/Obiekty/String/blink -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/bold /pl/docs/Web/JavaScript/Referencje/Obiekty/String/bold -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/charAt /pl/docs/Web/JavaScript/Referencje/Obiekty/String/charAt -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/charCodeAt /pl/docs/Web/JavaScript/Referencje/Obiekty/String/charCodeAt -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/concat /pl/docs/Web/JavaScript/Referencje/Obiekty/String/concat -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/String -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/fontcolor /pl/docs/Web/JavaScript/Referencje/Obiekty/String/fontcolor -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/fontsize /pl/docs/Web/JavaScript/Referencje/Obiekty/String/fontsize -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/fromCharCode /pl/docs/Web/JavaScript/Referencje/Obiekty/String/fromCharCode -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/italics /pl/docs/Web/JavaScript/Referencje/Obiekty/String/italics -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/link /pl/docs/Web/JavaScript/Referencje/Obiekty/String/link -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/prototype /pl/docs/Web/JavaScript/Referencje/Obiekty/String/prototype -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/search /pl/docs/Web/JavaScript/Referencje/Obiekty/String/search -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/slice /pl/docs/Web/JavaScript/Referencje/Obiekty/String/slice -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/small /pl/docs/Web/JavaScript/Referencje/Obiekty/String/small -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/strike /pl/docs/Web/JavaScript/Referencje/Obiekty/String/strike -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/sub /pl/docs/Web/JavaScript/Referencje/Obiekty/String/sub -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/substr /pl/docs/Web/JavaScript/Referencje/Obiekty/String/substr -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/substring /pl/docs/Web/JavaScript/Referencje/Obiekty/String/substring -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/sup /pl/docs/Web/JavaScript/Referencje/Obiekty/String/sup -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/toLowerCase /pl/docs/Web/JavaScript/Referencje/Obiekty/String/toLowerCase -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/toSource /pl/docs/Web/JavaScript/Referencje/Obiekty/String/toSource -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/toString /pl/docs/Web/JavaScript/Referencje/Obiekty/String/toString -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/toUpperCase /pl/docs/Web/JavaScript/Referencje/Obiekty/String/toUpperCase -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/valueOf /pl/docs/Web/JavaScript/Referencje/Obiekty/String/valueOf +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/exec /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/exec +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/global /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/global +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/ignoreCase /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/ignoreCase +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/RegExp +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/source /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/source +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/test /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/test +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/toSource +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/RegExp/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/toString +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String /pl/docs/Web/JavaScript/Reference/Global_Objects/String +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/anchor /pl/docs/Web/JavaScript/Reference/Global_Objects/String/anchor +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/big /pl/docs/Web/JavaScript/Reference/Global_Objects/String/big +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/blink /pl/docs/Web/JavaScript/Reference/Global_Objects/String/blink +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/bold /pl/docs/Web/JavaScript/Reference/Global_Objects/String/bold +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/charAt /pl/docs/Web/JavaScript/Reference/Global_Objects/String/charAt +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/charCodeAt /pl/docs/Web/JavaScript/Reference/Global_Objects/String/charCodeAt +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/concat /pl/docs/Web/JavaScript/Reference/Global_Objects/String/concat +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/String +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/fontcolor /pl/docs/Web/JavaScript/Reference/Global_Objects/String/fontcolor +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/fontsize /pl/docs/Web/JavaScript/Reference/Global_Objects/String/fontsize +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/fromCharCode /pl/docs/Web/JavaScript/Reference/Global_Objects/String/fromCharCode +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/italics /pl/docs/Web/JavaScript/Reference/Global_Objects/String/italics +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/link /pl/docs/Web/JavaScript/Reference/Global_Objects/String/link +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/String +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/search /pl/docs/Web/JavaScript/Reference/Global_Objects/String/search +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/slice /pl/docs/Web/JavaScript/Reference/Global_Objects/String/slice +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/small /pl/docs/Web/JavaScript/Reference/Global_Objects/String/small +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/strike /pl/docs/Web/JavaScript/Reference/Global_Objects/String/strike +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/sub /pl/docs/Web/JavaScript/Reference/Global_Objects/String/sub +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/substr /pl/docs/Web/JavaScript/Reference/Global_Objects/String/substr +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/substring /pl/docs/Web/JavaScript/Reference/Global_Objects/String/substring +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/sup /pl/docs/Web/JavaScript/Reference/Global_Objects/String/sup +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/toLowerCase /pl/docs/Web/JavaScript/Reference/Global_Objects/String/toLowerCase +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/String/toSource +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/String/toString +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/toUpperCase /pl/docs/Web/JavaScript/Reference/Global_Objects/String/toUpperCase +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/String/valueOf /pl/docs/Web/JavaScript/Reference/Global_Objects/String/valueOf /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/java /pl/docs/Web/JavaScript/Referencje/Obiekty/java /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/netscape /pl/docs/Web/JavaScript/Referencje/Obiekty/netscape /pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Obiekty/sun /pl/docs/Web/JavaScript/Referencje/Obiekty/sun -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory /pl/docs/Web/JavaScript/Referencje/Operatory -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_arytmetyczne /pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_arytmetyczne -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_działające_na_ciągach_znaków /pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_działające_na_ciągach_znaków -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_pamięci /pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_pamięci -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_porównania /pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_porównania -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_przypisania /pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_przypisania -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne /pl/docs/Web/JavaScript/Referencje/Operatory -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_delete /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_delete -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_function /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_function -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_in /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_in -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_instanceof /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_instanceof -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_new /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_new -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_przecinkowy /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_przecinkowy -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_typeof /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_typeof -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_void /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_void -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_warunkowy /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_warunkowy -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Pierwszeństwo_operatorów /pl/docs/Web/JavaScript/Referencje/Operatory/Pierwszeństwo_operatorów -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia /pl/docs/Web/JavaScript/Referencje/Polecenia -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/block /pl/docs/Web/JavaScript/Referencje/Polecenia/block -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/break /pl/docs/Web/JavaScript/Referencje/Polecenia/break -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/const /pl/docs/Web/JavaScript/Referencje/Polecenia/const -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/do...while /pl/docs/Web/JavaScript/Referencje/Polecenia/do...while -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/etykieta /pl/docs/Web/JavaScript/Referencje/Polecenia/etykieta -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/export /pl/docs/Web/JavaScript/Referencje/Polecenia/export -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/for /pl/docs/Web/JavaScript/Referencje/Polecenia/for -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/function /pl/docs/Web/JavaScript/Referencje/Polecenia/function -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/if...else /pl/docs/Web/JavaScript/Referencje/Polecenia/if...else -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/import /pl/docs/Web/JavaScript/Referencje/Polecenia/import -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/return /pl/docs/Web/JavaScript/Referencje/Polecenia/return -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/switch /pl/docs/Web/JavaScript/Referencje/Polecenia/switch -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/throw /pl/docs/Web/JavaScript/Referencje/Polecenia/throw -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/var /pl/docs/Web/JavaScript/Referencje/Polecenia/var -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/while /pl/docs/Web/JavaScript/Referencje/Polecenia/while -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Przestarzałe_własności_i_metody /pl/docs/Web/JavaScript/Referencje/Przestarzałe_własności_i_metody -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Słowa_zarezerwowane /pl/docs/Web/JavaScript/Referencje/Słowa_zarezerwowane -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Wyrażenia /pl/docs/Web/JavaScript/Referencje/Polecenia -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Wyrażenia/const /pl/docs/Web/JavaScript/Referencje/Polecenia/const -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Własności /pl/docs/Web/JavaScript/Referencje/Obiekty -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Własności/Infinity /pl/docs/Web/JavaScript/Referencje/Obiekty/Infinity -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Własności/NaN /pl/docs/Web/JavaScript/Referencje/Obiekty/NaN -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Własności/undefined /pl/docs/Web/JavaScript/Referencje/Obiekty/undefined -/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Własnościundefined /pl/docs/Web/JavaScript/Referencje/Obiekty/undefined -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Czytanie_wyrażenia_regularnego /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcja_pętli /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcja_pętli/Instrukcja_do_...while /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continues /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Nazywanie_funkcji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wywołanie_funkcji -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_i_właściwości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_i_własności -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_logiczny /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_porównywania /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_porównania -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_string /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operacje_na_łańcuchach -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściowści /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściowści/Wartości_lokalne_vs._dziedziczone /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności/Wartości_lokalne_vs._dziedziczone -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściwości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściwości/Wartości_lokalne_vs._dziedziczone /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności/Wartości_lokalne_vs._dziedziczone -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Właściwości_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Właściwości_obiektu/Dodawanie_właściwości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Właściwości_obiektu/Dziedziczenie_właściwości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_właściowości_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_właściwości_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_właściowości_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_właściwości_obiektu /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_właściwości /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_'this'_do_obiektu_referencji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektów /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_konstruktorów_funkcji /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji -/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Używanie_argumentów_tablicy /pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments -/pl/docs/Web/JavaScript/Reference/Global_Objects/Error /pl/docs/Web/JavaScript/Referencje/Obiekty/Error -/pl/docs/Web/JavaScript/Reference/Global_Objects/Error/message /pl/docs/Web/JavaScript/Referencje/Obiekty/Error/message -/pl/docs/Web/JavaScript/Reference/Global_Objects/Error/name /pl/docs/Web/JavaScript/Referencje/Obiekty/Error/name -/pl/docs/Web/JavaScript/Referencje/Funkcje /pl/docs/Web/JavaScript/Referencje/Obiekty -/pl/docs/Web/JavaScript/Referencje/Funkcje/Boolean /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean -/pl/docs/Web/JavaScript/Referencje/Funkcje/Date /pl/docs/Web/JavaScript/Referencje/Obiekty/Date -/pl/docs/Web/JavaScript/Referencje/Funkcje/Number /pl/docs/Web/JavaScript/Referencje/Obiekty/Number -/pl/docs/Web/JavaScript/Referencje/Funkcje/Object /pl/docs/Web/JavaScript/Referencje/Obiekty/Object -/pl/docs/Web/JavaScript/Referencje/Funkcje/String /pl/docs/Web/JavaScript/Referencje/Obiekty/String -/pl/docs/Web/JavaScript/Referencje/Funkcje/decodeURI /pl/docs/Web/JavaScript/Referencje/Obiekty/decodeURI -/pl/docs/Web/JavaScript/Referencje/Funkcje/decodeURIComponent /pl/docs/Web/JavaScript/Referencje/Obiekty/decodeURIComponent -/pl/docs/Web/JavaScript/Referencje/Funkcje/encodeURI /pl/docs/Web/JavaScript/Referencje/Obiekty/encodeURI -/pl/docs/Web/JavaScript/Referencje/Funkcje/encodeURIComponent /pl/docs/Web/JavaScript/Referencje/Obiekty/encodeURIComponent +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory /pl/docs/Web/JavaScript/Reference/Operators +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_arytmetyczne /pl/docs/conflicting/Web/JavaScript/Reference/Operators_1f6634ff6e3ccef661281d6e50002147 +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_działające_na_ciągach_znaków /pl/docs/conflicting/Web/JavaScript/Reference/Operators_1d09774e621bf2431a4f5594a248dd21 +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_pamięci /pl/docs/Web/JavaScript/Reference/Operators/Property_Accessors +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_porównania /pl/docs/conflicting/Web/JavaScript/Reference/Operators_5ba63337c20d72b8f8747a954b9b6c94 +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_przypisania /pl/docs/conflicting/Web/JavaScript/Reference/Operators_de3666cd349851054926d5e52fced70d +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne /pl/docs/Web/JavaScript/Reference/Operators +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_delete /pl/docs/Web/JavaScript/Reference/Operators/delete +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_function /pl/docs/Web/JavaScript/Reference/Operators/function +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_in /pl/docs/Web/JavaScript/Reference/Operators/in +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_instanceof /pl/docs/Web/JavaScript/Reference/Operators/instanceof +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_new /pl/docs/Web/JavaScript/Reference/Operators/new +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_przecinkowy /pl/docs/Web/JavaScript/Reference/Operators/Comma_Operator +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_typeof /pl/docs/Web/JavaScript/Reference/Operators/typeof +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_void /pl/docs/Web/JavaScript/Reference/Operators/void +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Operatory_specjalne/Operator_warunkowy /pl/docs/Web/JavaScript/Reference/Operators/Conditional_Operator +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Operatory/Pierwszeństwo_operatorów /pl/docs/Web/JavaScript/Reference/Operators/Operator_Precedence +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia /pl/docs/Web/JavaScript/Reference/Statements +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/block /pl/docs/Web/JavaScript/Reference/Statements/block +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/break /pl/docs/Web/JavaScript/Reference/Statements/break +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/const /pl/docs/Web/JavaScript/Reference/Statements/const +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/do...while /pl/docs/Web/JavaScript/Reference/Statements/do...while +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/etykieta /pl/docs/Web/JavaScript/Reference/Statements/label +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/export /pl/docs/Web/JavaScript/Reference/Statements/export +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/for /pl/docs/Web/JavaScript/Reference/Statements/for +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/function /pl/docs/Web/JavaScript/Reference/Statements/function +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/if...else /pl/docs/Web/JavaScript/Reference/Statements/if...else +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/import /pl/docs/Web/JavaScript/Reference/Statements/import +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/return /pl/docs/Web/JavaScript/Reference/Statements/return +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/switch /pl/docs/Web/JavaScript/Reference/Statements/switch +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/throw /pl/docs/Web/JavaScript/Reference/Statements/throw +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/var /pl/docs/Web/JavaScript/Reference/Statements/var +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Polecenia/while /pl/docs/Web/JavaScript/Reference/Statements/while +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Przestarzałe_własności_i_metody /pl/docs/Web/JavaScript/Reference/Deprecated_and_obsolete_features +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Słowa_zarezerwowane /pl/docs/conflicting/Web/JavaScript/Reference/Lexical_grammar +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Wyrażenia /pl/docs/Web/JavaScript/Reference/Statements +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Wyrażenia/const /pl/docs/Web/JavaScript/Reference/Statements/const +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Własności /pl/docs/Web/JavaScript/Reference/Global_Objects +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Własności/Infinity /pl/docs/Web/JavaScript/Reference/Global_Objects/Infinity +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Własności/NaN /pl/docs/Web/JavaScript/Reference/Global_Objects/NaN +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Własności/undefined /pl/docs/Web/JavaScript/Reference/Global_Objects/undefined +/pl/docs/Web/JavaScript/Dokumentacja_języka_JavaScript_1.5/Własnościundefined /pl/docs/Web/JavaScript/Reference/Global_Objects/undefined +/pl/docs/Web/JavaScript/Domkniecia /pl/docs/Web/JavaScript/Closures +/pl/docs/Web/JavaScript/Guide/Funkcje /pl/docs/Web/JavaScript/Guide/Functions +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages /pl/docs/conflicting/Web/JavaScript/Guide +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5 /pl/docs/conflicting/Web/JavaScript/Guide_a026fc5d05de582c88d39cf9fd37870d +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Blok_instrukcji /pl/docs/conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Czytanie_wyrażenia_regularnego /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Definiowanie_funkcji /pl/docs/conflicting/Web/JavaScript/Guide/Functions +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Dodawanie_obiektom_nowej_funkcjonalności. /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Dodawanie_obiektom_nowej_funkcjonalności. +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane /pl/docs/conflicting/Web/JavaScript/Guide/Functions_b0ff3e89089de1f0a22029bbde807073 +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_eval /pl/docs/conflicting/Web/JavaScript/Guide/Functions_90ea47f6d07003af2efc0a1756da41e2 +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isFinite /pl/docs/conflicting/Web/JavaScript/Guide/Functions_2af756c37808c2f8e09add6cc9618178 +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isNaN /pl/docs/conflicting/Web/JavaScript/Guide/Functions_8b84da88e673c0774c4f504a9be67268 +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_Number_i_String /pl/docs/conflicting/Web/JavaScript/Guide/Functions_74f4afa40d626fed3cf9277e30d6d211 +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_escape_i_unescape /pl/docs/conflicting/Web/JavaScript/Guide/Functions_14ccabf533660cb9d0794a5a93287159 +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_parseInt_i_parseFloat /pl/docs/conflicting/Web/JavaScript/Guide/Functions_915be6bbaf2578afefb6927c899d5f3d +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcja_pętli /pl/docs/conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_1a7d2f7d8b159dce08254c88948bc74a +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcja_pętli/Instrukcja_do_...while /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_komentarzy /pl/docs/conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_b955d4d09ed7fa71268639ed589f8702 +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_manipulacji_obiektem /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_manipulacji_obiektem +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_throw /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_throw +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_try...catch /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_try...catch +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli /pl/docs/conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_1a7d2f7d8b159dce08254c88948bc74a +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_break /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_break +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continues /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_for /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_for +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_label /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_label +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_while /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_while +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_warunkowe /pl/docs/conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_8f58cc44e17308f295c610e8acad2d99 +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Literały /pl/docs/conflicting/Web/JavaScript/Guide/Grammar_and_types +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Nazywanie_funkcji /pl/docs/conflicting/Web/JavaScript/Guide/Functions_403e991db3105a03e0afc1a3cc821a01 +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_i_własności /pl/docs/Web/JavaScript/Guide/Working_with_Objects +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_i_właściwości /pl/docs/Web/JavaScript/Guide/Working_with_Objects +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane /pl/docs/conflicting/Web/JavaScript/Guide_1093f218406d2d64ec91bb7a6bda93ce +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Array /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Array +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Date /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Date +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Math /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Math +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Number /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Number +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_RegExp /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_RegExp +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_String /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_String +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_function /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_function +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_logiczny /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory /pl/docs/Web/JavaScript/Guide/Expressions_and_Operators +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operacje_na_łańcuchach /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_arytmetyczne /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_605f6491d97a62449200a9401cba82c7 +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_logiczne /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_173cc0f9e32f34b0483b45a29fa462e4 +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_porównania /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_510ae1f584cbdb5ca760b545f90c72ed +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_porównywania /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_510ae1f584cbdb5ca760b545f90c72ed +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_przypisania /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_przypisania +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_specjalne /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_a3ce80967ffc4f60314caa4b05ec9c47 +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_string /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności /pl/docs/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności/Wartości_lokalne_vs._dziedziczone /pl/docs/conflicting/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściowści /pl/docs/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściowści/Wartości_lokalne_vs._dziedziczone /pl/docs/conflicting/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściwości /pl/docs/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_właściwości/Wartości_lokalne_vs._dziedziczone /pl/docs/conflicting/Web/JavaScript/Guide/Details_of_the_Object_Model +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Tworzenie_hierarchii /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Tworzenie_hierarchii +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Właściwości_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Właściwości_obiektu/Dodawanie_właściwości /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Właściwości_obiektu/Dziedziczenie_właściwości /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Globalne_wyszukiwanie,_wielkość_znaków,_wieloliniowe_wejście /pl/docs/Web/JavaScript/Guide/Regular_Expressions +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Przykłady_wyrażeń_regularnych /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Przykłady_wyrażeń_regularnych +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_zamknięciami /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_zamknięciami +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Stałe /pl/docs/conflicting/Web/JavaScript/Guide/Grammar_and_types_d86447bbdab858af0abf9b17c9ec9dc9 +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_metod /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_metod +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_właściowości_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_właściwości_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_właściowości_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_właściwości_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_właściwości /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_'this'_do_obiektu_referencji /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektów /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_konstruktorów_funkcji /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_wyrażenia_regularnego /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_wyrażenia_regularnego +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Unicode /pl/docs/conflicting/Web/JavaScript/Guide/Grammar_and_types_0f7acbcd2fa8bfb327628638da4e5166 +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Używanie_argumentów_tablicy /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wartości /pl/docs/conflicting/Web/JavaScript/Guide/Grammar_and_types_1d6d13b355b9483ad46cf81082b7c261 +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wyrażenia /pl/docs/conflicting/Web/JavaScript/Guide/Expressions_and_Operators_c278b67ddd602343b8c21711abc1b17c +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wywołanie_funkcji /pl/docs/conflicting/Web/JavaScript/Guide/Functions_403e991db3105a03e0afc1a3cc821a01 +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments /pl/docs/orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments +/pl/docs/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zmienne /pl/docs/conflicting/Web/JavaScript/Guide/Grammar_and_types_14ae50e0032f9c0db4fe484288797da6 +/pl/docs/Web/JavaScript/Guide/Składnia_i_typy /pl/docs/Web/JavaScript/Guide/Grammar_and_types +/pl/docs/Web/JavaScript/Guide/o_tym_przewodniku /pl/docs/conflicting/Web/JavaScript/Guide/Introduction +/pl/docs/Web/JavaScript/Na_początek /pl/docs/orphaned/Web/JavaScript/Na_początek +/pl/docs/Web/JavaScript/O_JavaScript /pl/docs/Web/JavaScript/About_JavaScript +/pl/docs/Web/JavaScript/Ponowne_wprowadzenie_do_JavaScript /pl/docs/Web/JavaScript/A_re-introduction_to_JavaScript +/pl/docs/Web/JavaScript/Reference/Classes/Konstruktor /pl/docs/Web/JavaScript/Reference/Classes/constructor +/pl/docs/Web/JavaScript/Reference/Errors/Brakujący_średnik_po_własności_id /pl/docs/Web/JavaScript/Reference/Errors/Missing_colon_after_property_id +/pl/docs/Web/JavaScript/Reference/Functions/Funkcje_strzalkowe /pl/docs/Web/JavaScript/Reference/Functions/Arrow_functions +/pl/docs/Web/JavaScript/Reference/Functions/Parametry_domyślne /pl/docs/Web/JavaScript/Reference/Functions/Default_parameters +/pl/docs/Web/JavaScript/Referencje /pl/docs/Web/JavaScript/Reference +/pl/docs/Web/JavaScript/Referencje/Funkcje /pl/docs/Web/JavaScript/Reference/Global_Objects +/pl/docs/Web/JavaScript/Referencje/Funkcje/Boolean /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean +/pl/docs/Web/JavaScript/Referencje/Funkcje/Date /pl/docs/Web/JavaScript/Reference/Global_Objects/Date +/pl/docs/Web/JavaScript/Referencje/Funkcje/Number /pl/docs/Web/JavaScript/Reference/Global_Objects/Number +/pl/docs/Web/JavaScript/Referencje/Funkcje/Object /pl/docs/Web/JavaScript/Reference/Global_Objects/Object +/pl/docs/Web/JavaScript/Referencje/Funkcje/String /pl/docs/Web/JavaScript/Reference/Global_Objects/String +/pl/docs/Web/JavaScript/Referencje/Funkcje/arguments /pl/docs/Web/JavaScript/Reference/Functions/arguments +/pl/docs/Web/JavaScript/Referencje/Funkcje/arguments/callee /pl/docs/Web/JavaScript/Reference/Functions/arguments/callee +/pl/docs/Web/JavaScript/Referencje/Funkcje/arguments/length /pl/docs/Web/JavaScript/Reference/Functions/arguments/length +/pl/docs/Web/JavaScript/Referencje/Funkcje/decodeURI /pl/docs/Web/JavaScript/Reference/Global_Objects/decodeURI +/pl/docs/Web/JavaScript/Referencje/Funkcje/decodeURIComponent /pl/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent +/pl/docs/Web/JavaScript/Referencje/Funkcje/encodeURI /pl/docs/Web/JavaScript/Reference/Global_Objects/encodeURI +/pl/docs/Web/JavaScript/Referencje/Funkcje/encodeURIComponent /pl/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent /pl/docs/Web/JavaScript/Referencje/Funkcje/eval /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/eval -/pl/docs/Web/JavaScript/Referencje/Funkcje/isFinite /pl/docs/Web/JavaScript/Referencje/Obiekty/isFinite -/pl/docs/Web/JavaScript/Referencje/Funkcje/isNaN /pl/docs/Web/JavaScript/Referencje/Obiekty/isNaN -/pl/docs/Web/JavaScript/Referencje/Funkcje/parseFloat /pl/docs/Web/JavaScript/Referencje/Obiekty/parseFloat -/pl/docs/Web/JavaScript/Referencje/Funkcje/parseInt /pl/docs/Web/JavaScript/Referencje/Obiekty/parseInt -/pl/docs/Web/JavaScript/Referencje/Komentarze /pl/docs/Web/JavaScript/Referencje/Komentarz -/pl/docs/Web/JavaScript/Referencje/Komentarze/komentarz /pl/docs/Web/JavaScript/Referencje/Komentarz -/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/Array -/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/valueOf /pl/docs/Web/JavaScript/Referencje/Obiekty/Object/valueOf -/pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean/constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean -/pl/docs/Web/JavaScript/Referencje/Obiekty/Function/constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/Function -/pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp -/pl/docs/Web/JavaScript/Referencje/Obiekty/String/constructor /pl/docs/Web/JavaScript/Referencje/Obiekty/String -/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_specjalne /pl/docs/Web/JavaScript/Referencje/Operatory -/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_specjalne/Operator_delete /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_delete -/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_specjalne/Operator_function /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_function -/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_specjalne/Operator_in /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_in -/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_specjalne/Operator_instanceof /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_instanceof -/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_specjalne/Operator_new /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_new -/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_specjalne/Operator_przecinkowy /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_przecinkowy -/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_specjalne/Operator_typeof /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_typeof -/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_specjalne/Operator_void /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_void -/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_specjalne/Operator_warunkowy /pl/docs/Web/JavaScript/Referencje/Operatory/Operator_warunkowy -/pl/docs/Web/JavaScript/Referencje/Wyrażenia /pl/docs/Web/JavaScript/Referencje/Polecenia -/pl/docs/Web/JavaScript/Referencje/Wyrażenia/const /pl/docs/Web/JavaScript/Referencje/Polecenia/const -/pl/docs/Web/JavaScript/Referencje/Własności /pl/docs/Web/JavaScript/Referencje/Obiekty -/pl/docs/Web/JavaScript/Referencje/Własności/Infinity /pl/docs/Web/JavaScript/Referencje/Obiekty/Infinity -/pl/docs/Web/JavaScript/Referencje/Własności/NaN /pl/docs/Web/JavaScript/Referencje/Obiekty/NaN -/pl/docs/Web/JavaScript/Referencje/Własności/undefined /pl/docs/Web/JavaScript/Referencje/Obiekty/undefined -/pl/docs/Web/JavaScript/Referencje/Własnościundefined /pl/docs/Web/JavaScript/Referencje/Obiekty/undefined +/pl/docs/Web/JavaScript/Referencje/Funkcje/isFinite /pl/docs/Web/JavaScript/Reference/Global_Objects/isFinite +/pl/docs/Web/JavaScript/Referencje/Funkcje/isNaN /pl/docs/Web/JavaScript/Reference/Global_Objects/isNaN +/pl/docs/Web/JavaScript/Referencje/Funkcje/parseFloat /pl/docs/Web/JavaScript/Reference/Global_Objects/parseFloat +/pl/docs/Web/JavaScript/Referencje/Funkcje/parseInt /pl/docs/Web/JavaScript/Reference/Global_Objects/parseInt +/pl/docs/Web/JavaScript/Referencje/Komentarz /pl/docs/Web/JavaScript/Reference/Lexical_grammar +/pl/docs/Web/JavaScript/Referencje/Komentarze /pl/docs/Web/JavaScript/Reference/Lexical_grammar +/pl/docs/Web/JavaScript/Referencje/Komentarze/komentarz /pl/docs/Web/JavaScript/Reference/Lexical_grammar +/pl/docs/Web/JavaScript/Referencje/O_tym_dokumencie /pl/docs/Web/JavaScript/Reference/About +/pl/docs/Web/JavaScript/Referencje/O_tym_dokumencie/Konwencje_formatowania_tekstu /pl/docs/orphaned/Web/JavaScript/Referencje/O_tym_dokumencie/Konwencje_formatowania_tekstu +/pl/docs/Web/JavaScript/Referencje/Obiekty /pl/docs/Web/JavaScript/Reference/Global_Objects +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array /pl/docs/Web/JavaScript/Reference/Global_Objects/Array +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/Reduce /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/Reduce +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/ReduceRight /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/ReduceRight +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/concat /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/concat +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/Array +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/copyWithin /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/copyWithin +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/entries /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/entries +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/every /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/every +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/fill /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/fill +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/filter /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/filter +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/find /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/find +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/findIndex /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/findIndex +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/flat /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/flat +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/forEach /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/from /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/from +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/includes /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/includes +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/indexOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/isArray /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/join /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/join +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/keys /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/keys +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/lastIndexOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/length /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/length +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/map /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/map +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/of /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/of +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/pop /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/pop +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/prototype /pl/docs/orphaned/Web/JavaScript/Reference/Global_Objects/Array/prototype +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/push /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/push +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/reverse /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/reverse +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/shift /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/shift +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/slice /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/slice +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/some /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/some +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/sort /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/sort +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/splice /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/splice +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/toLocaleString /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/toLocaleString +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/toSource +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/toString +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/unshift /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/unshift +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/valueOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/valueOf +/pl/docs/Web/JavaScript/Referencje/Obiekty/Array/values /pl/docs/Web/JavaScript/Reference/Global_Objects/Array/values +/pl/docs/Web/JavaScript/Referencje/Obiekty/ArrayBuffer /pl/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer +/pl/docs/Web/JavaScript/Referencje/Obiekty/BigInt /pl/docs/Web/JavaScript/Reference/Global_Objects/BigInt +/pl/docs/Web/JavaScript/Referencje/Obiekty/BigInt/asIntN /pl/docs/Web/JavaScript/Reference/Global_Objects/BigInt/asIntN +/pl/docs/Web/JavaScript/Referencje/Obiekty/BigInt/asUintN /pl/docs/Web/JavaScript/Reference/Global_Objects/BigInt/asUintN +/pl/docs/Web/JavaScript/Referencje/Obiekty/BigInt/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/BigInt/toString +/pl/docs/Web/JavaScript/Referencje/Obiekty/BigInt/valueOf /pl/docs/Web/JavaScript/Reference/Global_Objects/BigInt/valueOf +/pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean +/pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean/constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean +/pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean/prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Boolean +/pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean/toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean/toSource +/pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean/toString +/pl/docs/Web/JavaScript/Referencje/Obiekty/Boolean/valueOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Boolean/valueOf +/pl/docs/Web/JavaScript/Referencje/Obiekty/DataView /pl/docs/Web/JavaScript/Reference/Global_Objects/DataView +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date /pl/docs/Web/JavaScript/Reference/Global_Objects/Date +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/UTC /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/UTC +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/constructor /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Date +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getDate /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getDate +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getDay /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getDay +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getFullYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getFullYear +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getHours /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getHours +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getMilliseconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getMilliseconds +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getMinutes /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getMinutes +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getMonth /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getMonth +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getSeconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getSeconds +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getTime /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getTime +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getTimezoneOffset /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getTimezoneOffset +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCDate /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCDate +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCDay /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCDay +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCFullYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCFullYear +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCHours /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCHours +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCMilliseconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCMilliseconds +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCMinutes /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCMinutes +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCMonth /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCMonth +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getUTCSeconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCSeconds +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/getYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/getYear +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/now /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/now +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/parse /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/parse +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Date_73c046d653c590f4914731d078f3b2c5 +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setDate /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setDate +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setFullYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setFullYear +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setHours /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setHours +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setMilliseconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setMilliseconds +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setMinutes /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setMinutes +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setMonth /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setMonth +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setSeconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setSeconds +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setTime /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setTime +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCDate /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCDate +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCFullYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCFullYear +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCHours /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCHours +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCMilliseconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCMilliseconds +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCMinutes /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCMinutes +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCMonth /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCMonth +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setUTCSeconds /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCSeconds +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/setYear /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/setYear +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toGMTString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toGMTString +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toJSON /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toJSON +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toLocaleDateString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleDateString +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toLocaleString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleString +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toLocaleTimeString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleTimeString +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toSource +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toString +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/toUTCString /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/toUTCString +/pl/docs/Web/JavaScript/Referencje/Obiekty/Date/valueOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Date/valueOf +/pl/docs/Web/JavaScript/Referencje/Obiekty/Error /pl/docs/Web/JavaScript/Reference/Global_Objects/Error +/pl/docs/Web/JavaScript/Referencje/Obiekty/Error/Stack /pl/docs/Web/JavaScript/Reference/Global_Objects/Error/Stack +/pl/docs/Web/JavaScript/Referencje/Obiekty/Error/columnNumber /pl/docs/Web/JavaScript/Reference/Global_Objects/Error/columnNumber +/pl/docs/Web/JavaScript/Referencje/Obiekty/Error/fileName /pl/docs/Web/JavaScript/Reference/Global_Objects/Error/fileName +/pl/docs/Web/JavaScript/Referencje/Obiekty/Error/lineNumber /pl/docs/Web/JavaScript/Reference/Global_Objects/Error/lineNumber +/pl/docs/Web/JavaScript/Referencje/Obiekty/Error/message /pl/docs/Web/JavaScript/Reference/Global_Objects/Error/message +/pl/docs/Web/JavaScript/Referencje/Obiekty/Error/name /pl/docs/Web/JavaScript/Reference/Global_Objects/Error/name +/pl/docs/Web/JavaScript/Referencje/Obiekty/Error/prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Error +/pl/docs/Web/JavaScript/Referencje/Obiekty/Error/toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/Error/toSource +/pl/docs/Web/JavaScript/Referencje/Obiekty/Error/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Error/toString +/pl/docs/Web/JavaScript/Referencje/Obiekty/EvalError /pl/docs/Web/JavaScript/Reference/Global_Objects/EvalError +/pl/docs/Web/JavaScript/Referencje/Obiekty/Function /pl/docs/Web/JavaScript/Reference/Global_Objects/Function +/pl/docs/Web/JavaScript/Referencje/Obiekty/Function/apply /pl/docs/Web/JavaScript/Reference/Global_Objects/Function/apply +/pl/docs/Web/JavaScript/Referencje/Obiekty/Function/arguments /pl/docs/Web/JavaScript/Reference/Global_Objects/Function/arguments +/pl/docs/Web/JavaScript/Referencje/Obiekty/Function/bind /pl/docs/Web/JavaScript/Reference/Global_Objects/Function/bind +/pl/docs/Web/JavaScript/Referencje/Obiekty/Function/caller /pl/docs/Web/JavaScript/Reference/Global_Objects/Function/caller +/pl/docs/Web/JavaScript/Referencje/Obiekty/Function/constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/Function +/pl/docs/Web/JavaScript/Referencje/Obiekty/Function/displayName /pl/docs/Web/JavaScript/Reference/Global_Objects/Function/displayName +/pl/docs/Web/JavaScript/Referencje/Obiekty/Function/length /pl/docs/Web/JavaScript/Reference/Global_Objects/Function/length +/pl/docs/Web/JavaScript/Referencje/Obiekty/Function/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Function/toString +/pl/docs/Web/JavaScript/Referencje/Obiekty/Generator /pl/docs/Web/JavaScript/Reference/Global_Objects/Generator +/pl/docs/Web/JavaScript/Referencje/Obiekty/Infinity /pl/docs/Web/JavaScript/Reference/Global_Objects/Infinity +/pl/docs/Web/JavaScript/Referencje/Obiekty/JSON /pl/docs/Web/JavaScript/Reference/Global_Objects/JSON +/pl/docs/Web/JavaScript/Referencje/Obiekty/Map /pl/docs/Web/JavaScript/Reference/Global_Objects/Map +/pl/docs/Web/JavaScript/Referencje/Obiekty/Map/clear /pl/docs/Web/JavaScript/Reference/Global_Objects/Map/clear +/pl/docs/Web/JavaScript/Referencje/Obiekty/Map/delete /pl/docs/Web/JavaScript/Reference/Global_Objects/Map/delete +/pl/docs/Web/JavaScript/Referencje/Obiekty/Map/entries /pl/docs/Web/JavaScript/Reference/Global_Objects/Map/entries +/pl/docs/Web/JavaScript/Referencje/Obiekty/Map/forEach /pl/docs/Web/JavaScript/Reference/Global_Objects/Map/forEach +/pl/docs/Web/JavaScript/Referencje/Obiekty/Map/get /pl/docs/Web/JavaScript/Reference/Global_Objects/Map/get +/pl/docs/Web/JavaScript/Referencje/Obiekty/Map/has /pl/docs/Web/JavaScript/Reference/Global_Objects/Map/has +/pl/docs/Web/JavaScript/Referencje/Obiekty/Map/keys /pl/docs/Web/JavaScript/Reference/Global_Objects/Map/keys +/pl/docs/Web/JavaScript/Referencje/Obiekty/Map/set /pl/docs/Web/JavaScript/Reference/Global_Objects/Map/set +/pl/docs/Web/JavaScript/Referencje/Obiekty/Map/size /pl/docs/Web/JavaScript/Reference/Global_Objects/Map/size +/pl/docs/Web/JavaScript/Referencje/Obiekty/Map/values /pl/docs/Web/JavaScript/Reference/Global_Objects/Map/values +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math /pl/docs/Web/JavaScript/Reference/Global_Objects/Math +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/E /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/E +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/LN10 /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/LN10 +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/LN2 /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/LN2 +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/LOG10E /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/LOG10E +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/LOG2E /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/LOG2E +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/PI /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/PI +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/SQRT1_2 /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/SQRT1_2 +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/SQRT2 /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/SQRT2 +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/abs /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/abs +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/acos /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/acos +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/asin /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/asin +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/atan /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/atan +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/atan2 /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/atan2 +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/ceil /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/ceil +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/cos /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/cos +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/exp /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/exp +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/floor /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/floor +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/log /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/log +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/max /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/max +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/min /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/min +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/pow /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/pow +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/random /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/random +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/round /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/round +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/sign /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/sign +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/sin /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/sin +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/sqrt /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/sqrt +/pl/docs/Web/JavaScript/Referencje/Obiekty/Math/tan /pl/docs/Web/JavaScript/Reference/Global_Objects/Math/tan +/pl/docs/Web/JavaScript/Referencje/Obiekty/NaN /pl/docs/Web/JavaScript/Reference/Global_Objects/NaN +/pl/docs/Web/JavaScript/Referencje/Obiekty/Number /pl/docs/Web/JavaScript/Reference/Global_Objects/Number +/pl/docs/Web/JavaScript/Referencje/Obiekty/Number/EPSILON /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/EPSILON +/pl/docs/Web/JavaScript/Referencje/Obiekty/Number/MAX_VALUE /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_VALUE +/pl/docs/Web/JavaScript/Referencje/Obiekty/Number/MIN_VALUE /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/MIN_VALUE +/pl/docs/Web/JavaScript/Referencje/Obiekty/Number/NEGATIVE_INFINITY /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/NEGATIVE_INFINITY +/pl/docs/Web/JavaScript/Referencje/Obiekty/Number/NaN /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/NaN +/pl/docs/Web/JavaScript/Referencje/Obiekty/Number/POSITIVE_INFINITY /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/POSITIVE_INFINITY +/pl/docs/Web/JavaScript/Referencje/Obiekty/Number/constructor /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Number +/pl/docs/Web/JavaScript/Referencje/Obiekty/Number/isInteger /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/isInteger +/pl/docs/Web/JavaScript/Referencje/Obiekty/Number/isNaN /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/isNaN +/pl/docs/Web/JavaScript/Referencje/Obiekty/Number/toExponential /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/toExponential +/pl/docs/Web/JavaScript/Referencje/Obiekty/Number/toFixed /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/toFixed +/pl/docs/Web/JavaScript/Referencje/Obiekty/Number/toLocaleString /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/toLocaleString +/pl/docs/Web/JavaScript/Referencje/Obiekty/Number/toPrecision /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/toPrecision +/pl/docs/Web/JavaScript/Referencje/Obiekty/Number/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Number/toString +/pl/docs/Web/JavaScript/Referencje/Obiekty/Object /pl/docs/Web/JavaScript/Reference/Global_Objects/Object +/pl/docs/Web/JavaScript/Referencje/Obiekty/Object/assign /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/assign +/pl/docs/Web/JavaScript/Referencje/Obiekty/Object/constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/constructor +/pl/docs/Web/JavaScript/Referencje/Obiekty/Object/freeze /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/freeze +/pl/docs/Web/JavaScript/Referencje/Obiekty/Object/getOwnPropertyDescriptor /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/getOwnPropertyDescriptor +/pl/docs/Web/JavaScript/Referencje/Obiekty/Object/hasOwnProperty /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/hasOwnProperty +/pl/docs/Web/JavaScript/Referencje/Obiekty/Object/proto /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/proto +/pl/docs/Web/JavaScript/Referencje/Obiekty/Object/prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Object +/pl/docs/Web/JavaScript/Referencje/Obiekty/Object/seal /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/seal +/pl/docs/Web/JavaScript/Referencje/Obiekty/Object/toLocaleString /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/toLocaleString +/pl/docs/Web/JavaScript/Referencje/Obiekty/Object/toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/toSource +/pl/docs/Web/JavaScript/Referencje/Obiekty/Object/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/toString +/pl/docs/Web/JavaScript/Referencje/Obiekty/Object/valueOf /pl/docs/Web/JavaScript/Reference/Global_Objects/Object/valueOf +/pl/docs/Web/JavaScript/Referencje/Obiekty/Promise /pl/docs/Web/JavaScript/Reference/Global_Objects/Promise +/pl/docs/Web/JavaScript/Referencje/Obiekty/Proxy /pl/docs/Web/JavaScript/Reference/Global_Objects/Proxy +/pl/docs/Web/JavaScript/Referencje/Obiekty/Proxy/handler /pl/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy +/pl/docs/Web/JavaScript/Referencje/Obiekty/Proxy/handler/apply /pl/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/apply +/pl/docs/Web/JavaScript/Referencje/Obiekty/RangeError /pl/docs/Web/JavaScript/Reference/Global_Objects/RangeError +/pl/docs/Web/JavaScript/Referencje/Obiekty/RangeError/prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/RangeError +/pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp +/pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp +/pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/exec /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/exec +/pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/global /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/global +/pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/ignoreCase /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/ignoreCase +/pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/lastMatch /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/lastMatch +/pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/RegExp +/pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/source /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/source +/pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/test /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/test +/pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/toSource +/pl/docs/Web/JavaScript/Referencje/Obiekty/RegExp/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/RegExp/toString +/pl/docs/Web/JavaScript/Referencje/Obiekty/Set /pl/docs/Web/JavaScript/Reference/Global_Objects/Set +/pl/docs/Web/JavaScript/Referencje/Obiekty/Set/Set.prototype.add() /pl/docs/Web/JavaScript/Reference/Global_Objects/Set/add +/pl/docs/Web/JavaScript/Referencje/Obiekty/Set/Set.prototype.clear() /pl/docs/Web/JavaScript/Reference/Global_Objects/Set/clear +/pl/docs/Web/JavaScript/Referencje/Obiekty/Set/Set.prototype.delete() /pl/docs/Web/JavaScript/Reference/Global_Objects/Set/delete +/pl/docs/Web/JavaScript/Referencje/Obiekty/String /pl/docs/Web/JavaScript/Reference/Global_Objects/String +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/anchor /pl/docs/Web/JavaScript/Reference/Global_Objects/String/anchor +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/big /pl/docs/Web/JavaScript/Reference/Global_Objects/String/big +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/blink /pl/docs/Web/JavaScript/Reference/Global_Objects/String/blink +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/bold /pl/docs/Web/JavaScript/Reference/Global_Objects/String/bold +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/charAt /pl/docs/Web/JavaScript/Reference/Global_Objects/String/charAt +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/charCodeAt /pl/docs/Web/JavaScript/Reference/Global_Objects/String/charCodeAt +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/concat /pl/docs/Web/JavaScript/Reference/Global_Objects/String/concat +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/constructor /pl/docs/Web/JavaScript/Reference/Global_Objects/String +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/fontcolor /pl/docs/Web/JavaScript/Reference/Global_Objects/String/fontcolor +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/fontsize /pl/docs/Web/JavaScript/Reference/Global_Objects/String/fontsize +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/fromCharCode /pl/docs/Web/JavaScript/Reference/Global_Objects/String/fromCharCode +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/fromCodePoint /pl/docs/Web/JavaScript/Reference/Global_Objects/String/fromCodePoint +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/italics /pl/docs/Web/JavaScript/Reference/Global_Objects/String/italics +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/link /pl/docs/Web/JavaScript/Reference/Global_Objects/String/link +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/prototype /pl/docs/conflicting/Web/JavaScript/Reference/Global_Objects/String +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/repeat /pl/docs/Web/JavaScript/Reference/Global_Objects/String/repeat +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/search /pl/docs/Web/JavaScript/Reference/Global_Objects/String/search +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/slice /pl/docs/Web/JavaScript/Reference/Global_Objects/String/slice +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/small /pl/docs/Web/JavaScript/Reference/Global_Objects/String/small +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/strike /pl/docs/Web/JavaScript/Reference/Global_Objects/String/strike +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/sub /pl/docs/Web/JavaScript/Reference/Global_Objects/String/sub +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/substr /pl/docs/Web/JavaScript/Reference/Global_Objects/String/substr +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/substring /pl/docs/Web/JavaScript/Reference/Global_Objects/String/substring +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/sup /pl/docs/Web/JavaScript/Reference/Global_Objects/String/sup +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/toLowerCase /pl/docs/Web/JavaScript/Reference/Global_Objects/String/toLowerCase +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/toSource /pl/docs/Web/JavaScript/Reference/Global_Objects/String/toSource +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/toString /pl/docs/Web/JavaScript/Reference/Global_Objects/String/toString +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/toUpperCase /pl/docs/Web/JavaScript/Reference/Global_Objects/String/toUpperCase +/pl/docs/Web/JavaScript/Referencje/Obiekty/String/valueOf /pl/docs/Web/JavaScript/Reference/Global_Objects/String/valueOf +/pl/docs/Web/JavaScript/Referencje/Obiekty/Symbol /pl/docs/Web/JavaScript/Reference/Global_Objects/Symbol +/pl/docs/Web/JavaScript/Referencje/Obiekty/SyntaxError /pl/docs/Web/JavaScript/Reference/Global_Objects/SyntaxError +/pl/docs/Web/JavaScript/Referencje/Obiekty/Uint16Array /pl/docs/Web/JavaScript/Reference/Global_Objects/Uint16Array +/pl/docs/Web/JavaScript/Referencje/Obiekty/decodeURI /pl/docs/Web/JavaScript/Reference/Global_Objects/decodeURI +/pl/docs/Web/JavaScript/Referencje/Obiekty/decodeURIComponent /pl/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent +/pl/docs/Web/JavaScript/Referencje/Obiekty/encodeURI /pl/docs/Web/JavaScript/Reference/Global_Objects/encodeURI +/pl/docs/Web/JavaScript/Referencje/Obiekty/encodeURIComponent /pl/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent +/pl/docs/Web/JavaScript/Referencje/Obiekty/escape /pl/docs/Web/JavaScript/Reference/Global_Objects/escape +/pl/docs/Web/JavaScript/Referencje/Obiekty/isFinite /pl/docs/Web/JavaScript/Reference/Global_Objects/isFinite +/pl/docs/Web/JavaScript/Referencje/Obiekty/isNaN /pl/docs/Web/JavaScript/Reference/Global_Objects/isNaN +/pl/docs/Web/JavaScript/Referencje/Obiekty/null /pl/docs/Web/JavaScript/Reference/Global_Objects/null +/pl/docs/Web/JavaScript/Referencje/Obiekty/parseFloat /pl/docs/Web/JavaScript/Reference/Global_Objects/parseFloat +/pl/docs/Web/JavaScript/Referencje/Obiekty/parseInt /pl/docs/Web/JavaScript/Reference/Global_Objects/parseInt +/pl/docs/Web/JavaScript/Referencje/Obiekty/undefined /pl/docs/Web/JavaScript/Reference/Global_Objects/undefined +/pl/docs/Web/JavaScript/Referencje/Operatory /pl/docs/Web/JavaScript/Reference/Operators +/pl/docs/Web/JavaScript/Referencje/Operatory/Bitwise_Operators /pl/docs/conflicting/Web/JavaScript/Reference/Operators +/pl/docs/Web/JavaScript/Referencje/Operatory/Destructuring_assignment /pl/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment +/pl/docs/Web/JavaScript/Referencje/Operatory/Grouping /pl/docs/Web/JavaScript/Reference/Operators/Grouping +/pl/docs/Web/JavaScript/Referencje/Operatory/Logical_Operators /pl/docs/conflicting/Web/JavaScript/Reference/Operators_8afb1abf2138289c890ee09e799ff26e +/pl/docs/Web/JavaScript/Referencje/Operatory/Nullish_coalescing_operator /pl/docs/Web/JavaScript/Reference/Operators/Nullish_coalescing_operator +/pl/docs/Web/JavaScript/Referencje/Operatory/Object_initializer /pl/docs/Web/JavaScript/Reference/Operators/Object_initializer +/pl/docs/Web/JavaScript/Referencje/Operatory/Operator_delete /pl/docs/Web/JavaScript/Reference/Operators/delete +/pl/docs/Web/JavaScript/Referencje/Operatory/Operator_function /pl/docs/Web/JavaScript/Reference/Operators/function +/pl/docs/Web/JavaScript/Referencje/Operatory/Operator_in /pl/docs/Web/JavaScript/Reference/Operators/in +/pl/docs/Web/JavaScript/Referencje/Operatory/Operator_instanceof /pl/docs/Web/JavaScript/Reference/Operators/instanceof +/pl/docs/Web/JavaScript/Referencje/Operatory/Operator_new /pl/docs/Web/JavaScript/Reference/Operators/new +/pl/docs/Web/JavaScript/Referencje/Operatory/Operator_potoku /pl/docs/Web/JavaScript/Reference/Operators/Pipeline_operator +/pl/docs/Web/JavaScript/Referencje/Operatory/Operator_przecinkowy /pl/docs/Web/JavaScript/Reference/Operators/Comma_Operator +/pl/docs/Web/JavaScript/Referencje/Operatory/Operator_typeof /pl/docs/Web/JavaScript/Reference/Operators/typeof +/pl/docs/Web/JavaScript/Referencje/Operatory/Operator_void /pl/docs/Web/JavaScript/Reference/Operators/void +/pl/docs/Web/JavaScript/Referencje/Operatory/Operator_warunkowy /pl/docs/Web/JavaScript/Reference/Operators/Conditional_Operator +/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_arytmetyczne /pl/docs/conflicting/Web/JavaScript/Reference/Operators_1f6634ff6e3ccef661281d6e50002147 +/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_działające_na_ciągach_znaków /pl/docs/conflicting/Web/JavaScript/Reference/Operators_1d09774e621bf2431a4f5594a248dd21 +/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_pamięci /pl/docs/Web/JavaScript/Reference/Operators/Property_Accessors +/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_porównania /pl/docs/conflicting/Web/JavaScript/Reference/Operators_5ba63337c20d72b8f8747a954b9b6c94 +/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_przypisania /pl/docs/conflicting/Web/JavaScript/Reference/Operators_de3666cd349851054926d5e52fced70d +/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_specjalne /pl/docs/Web/JavaScript/Reference/Operators +/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_specjalne/Operator_delete /pl/docs/Web/JavaScript/Reference/Operators/delete +/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_specjalne/Operator_function /pl/docs/Web/JavaScript/Reference/Operators/function +/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_specjalne/Operator_in /pl/docs/Web/JavaScript/Reference/Operators/in +/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_specjalne/Operator_instanceof /pl/docs/Web/JavaScript/Reference/Operators/instanceof +/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_specjalne/Operator_new /pl/docs/Web/JavaScript/Reference/Operators/new +/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_specjalne/Operator_przecinkowy /pl/docs/Web/JavaScript/Reference/Operators/Comma_Operator +/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_specjalne/Operator_typeof /pl/docs/Web/JavaScript/Reference/Operators/typeof +/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_specjalne/Operator_void /pl/docs/Web/JavaScript/Reference/Operators/void +/pl/docs/Web/JavaScript/Referencje/Operatory/Operatory_specjalne/Operator_warunkowy /pl/docs/Web/JavaScript/Reference/Operators/Conditional_Operator +/pl/docs/Web/JavaScript/Referencje/Operatory/Pierwszeństwo_operatorów /pl/docs/Web/JavaScript/Reference/Operators/Operator_Precedence +/pl/docs/Web/JavaScript/Referencje/Operatory/Składnia_rozwinięcia /pl/docs/Web/JavaScript/Reference/Operators/Spread_syntax +/pl/docs/Web/JavaScript/Referencje/Operatory/Spread_operator /pl/docs/conflicting/Web/JavaScript/Reference/Operators/Spread_syntax +/pl/docs/Web/JavaScript/Referencje/Operatory/function* /pl/docs/Web/JavaScript/Reference/Operators/function* +/pl/docs/Web/JavaScript/Referencje/Operatory/new.target /pl/docs/Web/JavaScript/Reference/Operators/new.target +/pl/docs/Web/JavaScript/Referencje/Operatory/super /pl/docs/Web/JavaScript/Reference/Operators/super +/pl/docs/Web/JavaScript/Referencje/Operatory/this /pl/docs/Web/JavaScript/Reference/Operators/this +/pl/docs/Web/JavaScript/Referencje/Operatory/yield /pl/docs/Web/JavaScript/Reference/Operators/yield +/pl/docs/Web/JavaScript/Referencje/Operatory/yield* /pl/docs/Web/JavaScript/Reference/Operators/yield* +/pl/docs/Web/JavaScript/Referencje/Polecenia /pl/docs/Web/JavaScript/Reference/Statements +/pl/docs/Web/JavaScript/Referencje/Polecenia/Empty /pl/docs/Web/JavaScript/Reference/Statements/Empty +/pl/docs/Web/JavaScript/Referencje/Polecenia/block /pl/docs/Web/JavaScript/Reference/Statements/block +/pl/docs/Web/JavaScript/Referencje/Polecenia/break /pl/docs/Web/JavaScript/Reference/Statements/break +/pl/docs/Web/JavaScript/Referencje/Polecenia/class /pl/docs/Web/JavaScript/Reference/Statements/class +/pl/docs/Web/JavaScript/Referencje/Polecenia/const /pl/docs/Web/JavaScript/Reference/Statements/const +/pl/docs/Web/JavaScript/Referencje/Polecenia/continue /pl/docs/Web/JavaScript/Reference/Statements/continue +/pl/docs/Web/JavaScript/Referencje/Polecenia/debugger /pl/docs/Web/JavaScript/Reference/Statements/debugger +/pl/docs/Web/JavaScript/Referencje/Polecenia/default /pl/docs/conflicting/Web/JavaScript/Reference/Statements/switch +/pl/docs/Web/JavaScript/Referencje/Polecenia/do...while /pl/docs/Web/JavaScript/Reference/Statements/do...while +/pl/docs/Web/JavaScript/Referencje/Polecenia/etykieta /pl/docs/Web/JavaScript/Reference/Statements/label +/pl/docs/Web/JavaScript/Referencje/Polecenia/export /pl/docs/Web/JavaScript/Reference/Statements/export +/pl/docs/Web/JavaScript/Referencje/Polecenia/for /pl/docs/Web/JavaScript/Reference/Statements/for +/pl/docs/Web/JavaScript/Referencje/Polecenia/for...in /pl/docs/Web/JavaScript/Reference/Statements/for...in +/pl/docs/Web/JavaScript/Referencje/Polecenia/function /pl/docs/Web/JavaScript/Reference/Statements/function +/pl/docs/Web/JavaScript/Referencje/Polecenia/function* /pl/docs/Web/JavaScript/Reference/Statements/function* +/pl/docs/Web/JavaScript/Referencje/Polecenia/funkcja_async /pl/docs/Web/JavaScript/Reference/Statements/async_function +/pl/docs/Web/JavaScript/Referencje/Polecenia/if...else /pl/docs/Web/JavaScript/Reference/Statements/if...else +/pl/docs/Web/JavaScript/Referencje/Polecenia/import /pl/docs/Web/JavaScript/Reference/Statements/import +/pl/docs/Web/JavaScript/Referencje/Polecenia/return /pl/docs/Web/JavaScript/Reference/Statements/return +/pl/docs/Web/JavaScript/Referencje/Polecenia/switch /pl/docs/Web/JavaScript/Reference/Statements/switch +/pl/docs/Web/JavaScript/Referencje/Polecenia/throw /pl/docs/Web/JavaScript/Reference/Statements/throw +/pl/docs/Web/JavaScript/Referencje/Polecenia/var /pl/docs/Web/JavaScript/Reference/Statements/var +/pl/docs/Web/JavaScript/Referencje/Polecenia/while /pl/docs/Web/JavaScript/Reference/Statements/while +/pl/docs/Web/JavaScript/Referencje/Przestarzałe_własności_i_metody /pl/docs/Web/JavaScript/Reference/Deprecated_and_obsolete_features +/pl/docs/Web/JavaScript/Referencje/Słowa_zarezerwowane /pl/docs/conflicting/Web/JavaScript/Reference/Lexical_grammar +/pl/docs/Web/JavaScript/Referencje/Wyrażenia /pl/docs/Web/JavaScript/Reference/Statements +/pl/docs/Web/JavaScript/Referencje/Wyrażenia/const /pl/docs/Web/JavaScript/Reference/Statements/const +/pl/docs/Web/JavaScript/Referencje/Własności /pl/docs/Web/JavaScript/Reference/Global_Objects +/pl/docs/Web/JavaScript/Referencje/Własności/Infinity /pl/docs/Web/JavaScript/Reference/Global_Objects/Infinity +/pl/docs/Web/JavaScript/Referencje/Własności/NaN /pl/docs/Web/JavaScript/Reference/Global_Objects/NaN +/pl/docs/Web/JavaScript/Referencje/Własności/undefined /pl/docs/Web/JavaScript/Reference/Global_Objects/undefined +/pl/docs/Web/JavaScript/Referencje/Własnościundefined /pl/docs/Web/JavaScript/Reference/Global_Objects/undefined +/pl/docs/Web/JavaScript/Wprowadzenie_do_programowania_obiektowego_w_jezyku_JavaScript /pl/docs/conflicting/Learn/JavaScript/Objects +/pl/docs/Web/JavaScript/Zasoby_języka_JavaScript /pl/docs/Web/JavaScript/Language_Resources +/pl/docs/Web/JavaScript/dziedziczenie_lancuch_prototypow /pl/docs/Web/JavaScript/Inheritance_and_the_prototype_chain +/pl/docs/Web/JavaScript/typy_oraz_struktury_danych /pl/docs/Web/JavaScript/Data_structures +/pl/docs/Web/SVG/Element/okrąg /pl/docs/Web/SVG/Element/circle +/pl/docs/Web/SVG/Inne_zasoby /pl/docs/Web/SVG/Other_Resources +/pl/docs/Web/SVG/Przewodnik /pl/docs/Web/SVG/Tutorial +/pl/docs/Web/SVG/Przewodnik/SVG_w_XHTML_-_Wprowadzenie /pl/docs/Web/SVG/Tutorial/SVG_In_HTML_Introduction +/pl/docs/Web/Security/Securing_your_site/Konfiguracja_MIME_na_serwerze /pl/docs/Learn/Server-side/Configuring_server_MIME_types /pl/docs/Web/WebGL /pl/docs/Web/API/WebGL_API +/pl/docs/Web/XML/Wprowadzenie_do_XML-a /pl/docs/Web/XML/XML_introduction +/pl/docs/Web/XPath/Funkcje /pl/docs/Web/XPath/Functions +/pl/docs/Web/XPath/Funkcje/boolean /pl/docs/Web/XPath/Functions/boolean +/pl/docs/Web/XPath/Funkcje/ceiling /pl/docs/Web/XPath/Functions/ceiling +/pl/docs/Web/XPath/Funkcje/concat /pl/docs/Web/XPath/Functions/concat +/pl/docs/Web/XPath/Funkcje/contains /pl/docs/Web/XPath/Functions/contains +/pl/docs/Web/XPath/Funkcje/count /pl/docs/Web/XPath/Functions/count +/pl/docs/Web/XPath/Funkcje/current /pl/docs/Web/XPath/Functions/current +/pl/docs/Web/XPath/Funkcje/document /pl/docs/Web/XPath/Functions/document +/pl/docs/Web/XPath/Funkcje/element-available /pl/docs/Web/XPath/Functions/element-available +/pl/docs/Web/XPath/Funkcje/false /pl/docs/Web/XPath/Functions/false +/pl/docs/Web/XPath/Funkcje/floor /pl/docs/Web/XPath/Functions/floor +/pl/docs/Web/XPath/Funkcje/format-number /pl/docs/Web/XPath/Functions/format-number +/pl/docs/Web/XPath/Funkcje/function-available /pl/docs/Web/XPath/Functions/function-available +/pl/docs/Web/XPath/Funkcje/generate-id /pl/docs/Web/XPath/Functions/generate-id +/pl/docs/Web/XPath/Funkcje/id /pl/docs/Web/XPath/Functions/id +/pl/docs/Web/XPath/Funkcje/key /pl/docs/Web/XPath/Functions/key +/pl/docs/Web/XPath/Funkcje/lang /pl/docs/Web/XPath/Functions/lang +/pl/docs/Web/XPath/Funkcje/last /pl/docs/Web/XPath/Functions/last +/pl/docs/Web/XPath/Funkcje/local-name /pl/docs/Web/XPath/Functions/local-name +/pl/docs/Web/XPath/Funkcje/name /pl/docs/Web/XPath/Functions/name +/pl/docs/Web/XPath/Funkcje/namespace-uri /pl/docs/Web/XPath/Functions/namespace-uri +/pl/docs/Web/XPath/Funkcje/normalize-space /pl/docs/Web/XPath/Functions/normalize-space +/pl/docs/Web/XPath/Funkcje/not /pl/docs/Web/XPath/Functions/not +/pl/docs/Web/XPath/Funkcje/number /pl/docs/Web/XPath/Functions/number +/pl/docs/Web/XPath/Funkcje/position /pl/docs/Web/XPath/Functions/position +/pl/docs/Web/XPath/Funkcje/round /pl/docs/Web/XPath/Functions/round +/pl/docs/Web/XPath/Funkcje/starts-with /pl/docs/Web/XPath/Functions/starts-with +/pl/docs/Web/XPath/Funkcje/string /pl/docs/Web/XPath/Functions/string +/pl/docs/Web/XPath/Funkcje/string-length /pl/docs/Web/XPath/Functions/string-length +/pl/docs/Web/XPath/Funkcje/substring /pl/docs/Web/XPath/Functions/substring +/pl/docs/Web/XPath/Funkcje/substring-after /pl/docs/Web/XPath/Functions/substring-after +/pl/docs/Web/XPath/Funkcje/substring-before /pl/docs/Web/XPath/Functions/substring-before +/pl/docs/Web/XPath/Funkcje/sum /pl/docs/Web/XPath/Functions/sum +/pl/docs/Web/XPath/Funkcje/system-property /pl/docs/Web/XPath/Functions/system-property +/pl/docs/Web/XPath/Funkcje/translate /pl/docs/Web/XPath/Functions/translate +/pl/docs/Web/XPath/Funkcje/true /pl/docs/Web/XPath/Functions/true +/pl/docs/Web/XPath/Funkcje/unparsed-entity-url /pl/docs/Web/XPath/Functions/unparsed-entity-url +/pl/docs/Web/XPath/Osie /pl/docs/Web/XPath/Axes /pl/docs/Web/XSLT/Elementy /pl/docs/Web/XSLT/Element /pl/docs/Web/XSLT/Elementy/element /pl/docs/Web/XSLT/Element/element +/pl/docs/Web/XSLT/Transformacje_XML_z_XSLT /pl/docs/Web/XSLT/Transforming_XML_with_XSLT +/pl/docs/Web/XSLT/Transformacje_XML_z_XSLT/Dokumentacja_XSLT_XPath /pl/docs/Web/XSLT/Transforming_XML_with_XSLT/The_Netscape_XSLT_XPath_Reference +/pl/docs/Web/XSLT/Transformacje_XML_z_XSLT/Przeczytaj_więcej /pl/docs/Web/XSLT/Transforming_XML_with_XSLT/For_Further_Reading +/pl/docs/Web/XSLT/apply-imports /pl/docs/Web/XSLT/Element/apply-imports +/pl/docs/Web/XSLT/apply-templates /pl/docs/Web/XSLT/Element/apply-templates +/pl/docs/Web/XSLT/attribute /pl/docs/Web/XSLT/Element/attribute +/pl/docs/Web/XSLT/attribute-set /pl/docs/Web/XSLT/Element/attribute-set +/pl/docs/Web/XSLT/call-template /pl/docs/Web/XSLT/Element/call-template +/pl/docs/Web/XSLT/choose /pl/docs/Web/XSLT/Element/choose +/pl/docs/Web/XSLT/comment /pl/docs/Web/XSLT/Element/comment +/pl/docs/Web/XSLT/copy /pl/docs/Web/XSLT/Element/copy +/pl/docs/Web/XSLT/copy-of /pl/docs/Web/XSLT/Element/copy-of +/pl/docs/Web/XSLT/decimal-format /pl/docs/Web/XSLT/Element/decimal-format +/pl/docs/Web/XSLT/fallback /pl/docs/Web/XSLT/Element/fallback +/pl/docs/Web/XSLT/for-each /pl/docs/Web/XSLT/Element/for-each +/pl/docs/Web/XSLT/if /pl/docs/Web/XSLT/Element/if +/pl/docs/Web/XSLT/import /pl/docs/Web/XSLT/Element/import +/pl/docs/Web/XSLT/include /pl/docs/Web/XSLT/Element/include +/pl/docs/Web/XSLT/key /pl/docs/Web/XSLT/Element/key +/pl/docs/Web/XSLT/message /pl/docs/Web/XSLT/Element/message +/pl/docs/Web/XSLT/namespace-alias /pl/docs/Web/XSLT/Element/namespace-alias +/pl/docs/Web/XSLT/number /pl/docs/Web/XSLT/Element/number +/pl/docs/Web/XSLT/otherwise /pl/docs/Web/XSLT/Element/otherwise +/pl/docs/Web/XSLT/output /pl/docs/Web/XSLT/Element/output +/pl/docs/Web/XSLT/param /pl/docs/Web/XSLT/Element/param +/pl/docs/Web/XSLT/preserve-space /pl/docs/Web/XSLT/Element/preserve-space +/pl/docs/Web/XSLT/processing-instruction /pl/docs/Web/XSLT/Element/processing-instruction +/pl/docs/Web/XSLT/sort /pl/docs/Web/XSLT/Element/sort +/pl/docs/Web/XSLT/strip-space /pl/docs/Web/XSLT/Element/strip-space +/pl/docs/Web/XSLT/stylesheet /pl/docs/Web/XSLT/Element/stylesheet +/pl/docs/Web/XSLT/template /pl/docs/Web/XSLT/Element/template +/pl/docs/Web/XSLT/text /pl/docs/Web/XSLT/Element/text +/pl/docs/Web/XSLT/transform /pl/docs/Web/XSLT/Element/transform +/pl/docs/Web/XSLT/value-of /pl/docs/Web/XSLT/Element/value-of +/pl/docs/Web/XSLT/variable /pl/docs/Web/XSLT/Element/variable +/pl/docs/Web/XSLT/when /pl/docs/Web/XSLT/Element/when +/pl/docs/Web/XSLT/with-param /pl/docs/Web/XSLT/Element/with-param +/pl/docs/WebSockets /pl/docs/Web/API/WebSockets_API /pl/docs/Web_Developer_-_rozszerzenie_Firefoksa_(link) https://addons.mozilla.org/extensions/moreinfo.php?id=60&application=firefox -/pl/docs/Wprowadzenie_do_XML-a /pl/docs/Web/XML/Wprowadzenie_do_XML-a -/pl/docs/Wprowadzenie_do_XMLa /pl/docs/Web/XML/Wprowadzenie_do_XML-a -/pl/docs/Wspracie_przeglądarek_dla_elementów_HTML /pl/docs/Wsparcie_przeglądarek_dla_elementów_HTML -/pl/docs/XML_Introduction /pl/docs/Web/XML/Wprowadzenie_do_XML-a +/pl/docs/Wprowadzenie_do_XML-a /pl/docs/Web/XML/XML_introduction +/pl/docs/Wprowadzenie_do_XMLa /pl/docs/Web/XML/XML_introduction +/pl/docs/Wsparcie_przeglądarek_dla_elementów_HTML /pl/docs/orphaned/Wsparcie_przeglądarek_dla_elementów_HTML +/pl/docs/Wspracie_przeglądarek_dla_elementów_HTML /pl/docs/orphaned/Wsparcie_przeglądarek_dla_elementów_HTML +/pl/docs/XHTML /pl/docs/Glossary/XHTML +/pl/docs/XMLHttpRequest /pl/docs/Web/API/XMLHttpRequest +/pl/docs/XMLHttpRequest/Using_XMLHttpRequest /pl/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest +/pl/docs/XML_Introduction /pl/docs/Web/XML/XML_introduction /pl/docs/XPConnect:Podstawy_architektury /pl/docs/XPConnect/Podstawy_architektury /pl/docs/XPath /pl/docs/Web/XPath -/pl/docs/XPath/Funkcje /pl/docs/Web/XPath/Funkcje -/pl/docs/XPath/Funkcje/boolean /pl/docs/Web/XPath/Funkcje/boolean -/pl/docs/XPath/Funkcje/ceiling /pl/docs/Web/XPath/Funkcje/ceiling -/pl/docs/XPath/Funkcje/concat /pl/docs/Web/XPath/Funkcje/concat -/pl/docs/XPath/Funkcje/contains /pl/docs/Web/XPath/Funkcje/contains -/pl/docs/XPath/Funkcje/count /pl/docs/Web/XPath/Funkcje/count -/pl/docs/XPath/Funkcje/current /pl/docs/Web/XPath/Funkcje/current -/pl/docs/XPath/Funkcje/document /pl/docs/Web/XPath/Funkcje/document -/pl/docs/XPath/Funkcje/element-available /pl/docs/Web/XPath/Funkcje/element-available -/pl/docs/XPath/Funkcje/false /pl/docs/Web/XPath/Funkcje/false -/pl/docs/XPath/Funkcje/floor /pl/docs/Web/XPath/Funkcje/floor -/pl/docs/XPath/Funkcje/format-number /pl/docs/Web/XPath/Funkcje/format-number -/pl/docs/XPath/Funkcje/function-available /pl/docs/Web/XPath/Funkcje/function-available -/pl/docs/XPath/Funkcje/generate-id /pl/docs/Web/XPath/Funkcje/generate-id -/pl/docs/XPath/Funkcje/id /pl/docs/Web/XPath/Funkcje/id -/pl/docs/XPath/Funkcje/key /pl/docs/Web/XPath/Funkcje/key -/pl/docs/XPath/Funkcje/lang /pl/docs/Web/XPath/Funkcje/lang -/pl/docs/XPath/Funkcje/last /pl/docs/Web/XPath/Funkcje/last -/pl/docs/XPath/Funkcje/local-name /pl/docs/Web/XPath/Funkcje/local-name -/pl/docs/XPath/Funkcje/name /pl/docs/Web/XPath/Funkcje/name -/pl/docs/XPath/Funkcje/namespace-uri /pl/docs/Web/XPath/Funkcje/namespace-uri -/pl/docs/XPath/Funkcje/normalize-space /pl/docs/Web/XPath/Funkcje/normalize-space -/pl/docs/XPath/Funkcje/not /pl/docs/Web/XPath/Funkcje/not -/pl/docs/XPath/Funkcje/number /pl/docs/Web/XPath/Funkcje/number -/pl/docs/XPath/Funkcje/position /pl/docs/Web/XPath/Funkcje/position -/pl/docs/XPath/Funkcje/round /pl/docs/Web/XPath/Funkcje/round -/pl/docs/XPath/Funkcje/starts-with /pl/docs/Web/XPath/Funkcje/starts-with -/pl/docs/XPath/Funkcje/string /pl/docs/Web/XPath/Funkcje/string -/pl/docs/XPath/Funkcje/string-length /pl/docs/Web/XPath/Funkcje/string-length -/pl/docs/XPath/Funkcje/substring /pl/docs/Web/XPath/Funkcje/substring -/pl/docs/XPath/Funkcje/substring-after /pl/docs/Web/XPath/Funkcje/substring-after -/pl/docs/XPath/Funkcje/substring-before /pl/docs/Web/XPath/Funkcje/substring-before -/pl/docs/XPath/Funkcje/sum /pl/docs/Web/XPath/Funkcje/sum -/pl/docs/XPath/Funkcje/system-property /pl/docs/Web/XPath/Funkcje/system-property -/pl/docs/XPath/Funkcje/translate /pl/docs/Web/XPath/Funkcje/translate -/pl/docs/XPath/Funkcje/true /pl/docs/Web/XPath/Funkcje/true -/pl/docs/XPath/Funkcje/unparsed-entity-url /pl/docs/Web/XPath/Funkcje/unparsed-entity-url -/pl/docs/XPath/Osie /pl/docs/Web/XPath/Osie -/pl/docs/XPath/Wyrażenia /pl/docs/Web/XPath/Osie -/pl/docs/XPath:Funkcje /pl/docs/Web/XPath/Funkcje -/pl/docs/XPath:Funkcje:boolean /pl/docs/Web/XPath/Funkcje/boolean -/pl/docs/XPath:Funkcje:ceiling /pl/docs/Web/XPath/Funkcje/ceiling -/pl/docs/XPath:Funkcje:concat /pl/docs/Web/XPath/Funkcje/concat -/pl/docs/XPath:Funkcje:contains /pl/docs/Web/XPath/Funkcje/contains -/pl/docs/XPath:Funkcje:count /pl/docs/Web/XPath/Funkcje/count -/pl/docs/XPath:Funkcje:current /pl/docs/Web/XPath/Funkcje/current -/pl/docs/XPath:Funkcje:document /pl/docs/Web/XPath/Funkcje/document -/pl/docs/XPath:Funkcje:element-available /pl/docs/Web/XPath/Funkcje/element-available -/pl/docs/XPath:Funkcje:false /pl/docs/Web/XPath/Funkcje/false -/pl/docs/XPath:Funkcje:floor /pl/docs/Web/XPath/Funkcje/floor -/pl/docs/XPath:Funkcje:format-number /pl/docs/Web/XPath/Funkcje/format-number -/pl/docs/XPath:Funkcje:function-available /pl/docs/Web/XPath/Funkcje/function-available -/pl/docs/XPath:Funkcje:generate-id /pl/docs/Web/XPath/Funkcje/generate-id -/pl/docs/XPath:Funkcje:id /pl/docs/Web/XPath/Funkcje/id -/pl/docs/XPath:Funkcje:key /pl/docs/Web/XPath/Funkcje/key -/pl/docs/XPath:Funkcje:lang /pl/docs/Web/XPath/Funkcje/lang -/pl/docs/XPath:Funkcje:last /pl/docs/Web/XPath/Funkcje/last -/pl/docs/XPath:Funkcje:local-name /pl/docs/Web/XPath/Funkcje/local-name -/pl/docs/XPath:Funkcje:name /pl/docs/Web/XPath/Funkcje/name -/pl/docs/XPath:Funkcje:namespace-uri /pl/docs/Web/XPath/Funkcje/namespace-uri -/pl/docs/XPath:Funkcje:normalize-space /pl/docs/Web/XPath/Funkcje/normalize-space -/pl/docs/XPath:Funkcje:not /pl/docs/Web/XPath/Funkcje/not -/pl/docs/XPath:Funkcje:number /pl/docs/Web/XPath/Funkcje/number -/pl/docs/XPath:Funkcje:position /pl/docs/Web/XPath/Funkcje/position -/pl/docs/XPath:Funkcje:round /pl/docs/Web/XPath/Funkcje/round -/pl/docs/XPath:Funkcje:starts-with /pl/docs/Web/XPath/Funkcje/starts-with -/pl/docs/XPath:Funkcje:string /pl/docs/Web/XPath/Funkcje/string -/pl/docs/XPath:Funkcje:string-length /pl/docs/Web/XPath/Funkcje/string-length -/pl/docs/XPath:Funkcje:substring /pl/docs/Web/XPath/Funkcje/substring -/pl/docs/XPath:Funkcje:substring-after /pl/docs/Web/XPath/Funkcje/substring-after -/pl/docs/XPath:Funkcje:substring-before /pl/docs/Web/XPath/Funkcje/substring-before -/pl/docs/XPath:Funkcje:sum /pl/docs/Web/XPath/Funkcje/sum -/pl/docs/XPath:Funkcje:system-property /pl/docs/Web/XPath/Funkcje/system-property -/pl/docs/XPath:Funkcje:translate /pl/docs/Web/XPath/Funkcje/translate -/pl/docs/XPath:Funkcje:true /pl/docs/Web/XPath/Funkcje/true -/pl/docs/XPath:Funkcje:unparsed-entity-url /pl/docs/Web/XPath/Funkcje/unparsed-entity-url -/pl/docs/XPath:Osie /pl/docs/Web/XPath/Osie -/pl/docs/XPath:Wyrażenia /pl/docs/Web/XPath/Osie +/pl/docs/XPath/Funkcje /pl/docs/Web/XPath/Functions +/pl/docs/XPath/Funkcje/boolean /pl/docs/Web/XPath/Functions/boolean +/pl/docs/XPath/Funkcje/ceiling /pl/docs/Web/XPath/Functions/ceiling +/pl/docs/XPath/Funkcje/concat /pl/docs/Web/XPath/Functions/concat +/pl/docs/XPath/Funkcje/contains /pl/docs/Web/XPath/Functions/contains +/pl/docs/XPath/Funkcje/count /pl/docs/Web/XPath/Functions/count +/pl/docs/XPath/Funkcje/current /pl/docs/Web/XPath/Functions/current +/pl/docs/XPath/Funkcje/document /pl/docs/Web/XPath/Functions/document +/pl/docs/XPath/Funkcje/element-available /pl/docs/Web/XPath/Functions/element-available +/pl/docs/XPath/Funkcje/false /pl/docs/Web/XPath/Functions/false +/pl/docs/XPath/Funkcje/floor /pl/docs/Web/XPath/Functions/floor +/pl/docs/XPath/Funkcje/format-number /pl/docs/Web/XPath/Functions/format-number +/pl/docs/XPath/Funkcje/function-available /pl/docs/Web/XPath/Functions/function-available +/pl/docs/XPath/Funkcje/generate-id /pl/docs/Web/XPath/Functions/generate-id +/pl/docs/XPath/Funkcje/id /pl/docs/Web/XPath/Functions/id +/pl/docs/XPath/Funkcje/key /pl/docs/Web/XPath/Functions/key +/pl/docs/XPath/Funkcje/lang /pl/docs/Web/XPath/Functions/lang +/pl/docs/XPath/Funkcje/last /pl/docs/Web/XPath/Functions/last +/pl/docs/XPath/Funkcje/local-name /pl/docs/Web/XPath/Functions/local-name +/pl/docs/XPath/Funkcje/name /pl/docs/Web/XPath/Functions/name +/pl/docs/XPath/Funkcje/namespace-uri /pl/docs/Web/XPath/Functions/namespace-uri +/pl/docs/XPath/Funkcje/normalize-space /pl/docs/Web/XPath/Functions/normalize-space +/pl/docs/XPath/Funkcje/not /pl/docs/Web/XPath/Functions/not +/pl/docs/XPath/Funkcje/number /pl/docs/Web/XPath/Functions/number +/pl/docs/XPath/Funkcje/position /pl/docs/Web/XPath/Functions/position +/pl/docs/XPath/Funkcje/round /pl/docs/Web/XPath/Functions/round +/pl/docs/XPath/Funkcje/starts-with /pl/docs/Web/XPath/Functions/starts-with +/pl/docs/XPath/Funkcje/string /pl/docs/Web/XPath/Functions/string +/pl/docs/XPath/Funkcje/string-length /pl/docs/Web/XPath/Functions/string-length +/pl/docs/XPath/Funkcje/substring /pl/docs/Web/XPath/Functions/substring +/pl/docs/XPath/Funkcje/substring-after /pl/docs/Web/XPath/Functions/substring-after +/pl/docs/XPath/Funkcje/substring-before /pl/docs/Web/XPath/Functions/substring-before +/pl/docs/XPath/Funkcje/sum /pl/docs/Web/XPath/Functions/sum +/pl/docs/XPath/Funkcje/system-property /pl/docs/Web/XPath/Functions/system-property +/pl/docs/XPath/Funkcje/translate /pl/docs/Web/XPath/Functions/translate +/pl/docs/XPath/Funkcje/true /pl/docs/Web/XPath/Functions/true +/pl/docs/XPath/Funkcje/unparsed-entity-url /pl/docs/Web/XPath/Functions/unparsed-entity-url +/pl/docs/XPath/Osie /pl/docs/Web/XPath/Axes +/pl/docs/XPath/Wyrażenia /pl/docs/Web/XPath/Axes +/pl/docs/XPath:Funkcje /pl/docs/Web/XPath/Functions +/pl/docs/XPath:Funkcje:boolean /pl/docs/Web/XPath/Functions/boolean +/pl/docs/XPath:Funkcje:ceiling /pl/docs/Web/XPath/Functions/ceiling +/pl/docs/XPath:Funkcje:concat /pl/docs/Web/XPath/Functions/concat +/pl/docs/XPath:Funkcje:contains /pl/docs/Web/XPath/Functions/contains +/pl/docs/XPath:Funkcje:count /pl/docs/Web/XPath/Functions/count +/pl/docs/XPath:Funkcje:current /pl/docs/Web/XPath/Functions/current +/pl/docs/XPath:Funkcje:document /pl/docs/Web/XPath/Functions/document +/pl/docs/XPath:Funkcje:element-available /pl/docs/Web/XPath/Functions/element-available +/pl/docs/XPath:Funkcje:false /pl/docs/Web/XPath/Functions/false +/pl/docs/XPath:Funkcje:floor /pl/docs/Web/XPath/Functions/floor +/pl/docs/XPath:Funkcje:format-number /pl/docs/Web/XPath/Functions/format-number +/pl/docs/XPath:Funkcje:function-available /pl/docs/Web/XPath/Functions/function-available +/pl/docs/XPath:Funkcje:generate-id /pl/docs/Web/XPath/Functions/generate-id +/pl/docs/XPath:Funkcje:id /pl/docs/Web/XPath/Functions/id +/pl/docs/XPath:Funkcje:key /pl/docs/Web/XPath/Functions/key +/pl/docs/XPath:Funkcje:lang /pl/docs/Web/XPath/Functions/lang +/pl/docs/XPath:Funkcje:last /pl/docs/Web/XPath/Functions/last +/pl/docs/XPath:Funkcje:local-name /pl/docs/Web/XPath/Functions/local-name +/pl/docs/XPath:Funkcje:name /pl/docs/Web/XPath/Functions/name +/pl/docs/XPath:Funkcje:namespace-uri /pl/docs/Web/XPath/Functions/namespace-uri +/pl/docs/XPath:Funkcje:normalize-space /pl/docs/Web/XPath/Functions/normalize-space +/pl/docs/XPath:Funkcje:not /pl/docs/Web/XPath/Functions/not +/pl/docs/XPath:Funkcje:number /pl/docs/Web/XPath/Functions/number +/pl/docs/XPath:Funkcje:position /pl/docs/Web/XPath/Functions/position +/pl/docs/XPath:Funkcje:round /pl/docs/Web/XPath/Functions/round +/pl/docs/XPath:Funkcje:starts-with /pl/docs/Web/XPath/Functions/starts-with +/pl/docs/XPath:Funkcje:string /pl/docs/Web/XPath/Functions/string +/pl/docs/XPath:Funkcje:string-length /pl/docs/Web/XPath/Functions/string-length +/pl/docs/XPath:Funkcje:substring /pl/docs/Web/XPath/Functions/substring +/pl/docs/XPath:Funkcje:substring-after /pl/docs/Web/XPath/Functions/substring-after +/pl/docs/XPath:Funkcje:substring-before /pl/docs/Web/XPath/Functions/substring-before +/pl/docs/XPath:Funkcje:sum /pl/docs/Web/XPath/Functions/sum +/pl/docs/XPath:Funkcje:system-property /pl/docs/Web/XPath/Functions/system-property +/pl/docs/XPath:Funkcje:translate /pl/docs/Web/XPath/Functions/translate +/pl/docs/XPath:Funkcje:true /pl/docs/Web/XPath/Functions/true +/pl/docs/XPath:Funkcje:unparsed-entity-url /pl/docs/Web/XPath/Functions/unparsed-entity-url +/pl/docs/XPath:Osie /pl/docs/Web/XPath/Axes +/pl/docs/XPath:Wyrażenia /pl/docs/Web/XPath/Axes /pl/docs/XSLT /pl/docs/Web/XSLT /pl/docs/XSLT/Elementy /pl/docs/Web/XSLT/Element -/pl/docs/XSLT/apply-imports /pl/docs/Web/XSLT/apply-imports -/pl/docs/XSLT/apply-templates /pl/docs/Web/XSLT/apply-templates -/pl/docs/XSLT/attribute /pl/docs/Web/XSLT/attribute -/pl/docs/XSLT/attribute-set /pl/docs/Web/XSLT/attribute-set -/pl/docs/XSLT/call-template /pl/docs/Web/XSLT/call-template -/pl/docs/XSLT/choose /pl/docs/Web/XSLT/choose -/pl/docs/XSLT/comment /pl/docs/Web/XSLT/comment -/pl/docs/XSLT/copy /pl/docs/Web/XSLT/copy -/pl/docs/XSLT/copy-of /pl/docs/Web/XSLT/copy-of -/pl/docs/XSLT/decimal-format /pl/docs/Web/XSLT/decimal-format +/pl/docs/XSLT/apply-imports /pl/docs/Web/XSLT/Element/apply-imports +/pl/docs/XSLT/apply-templates /pl/docs/Web/XSLT/Element/apply-templates +/pl/docs/XSLT/attribute /pl/docs/Web/XSLT/Element/attribute +/pl/docs/XSLT/attribute-set /pl/docs/Web/XSLT/Element/attribute-set +/pl/docs/XSLT/call-template /pl/docs/Web/XSLT/Element/call-template +/pl/docs/XSLT/choose /pl/docs/Web/XSLT/Element/choose +/pl/docs/XSLT/comment /pl/docs/Web/XSLT/Element/comment +/pl/docs/XSLT/copy /pl/docs/Web/XSLT/Element/copy +/pl/docs/XSLT/copy-of /pl/docs/Web/XSLT/Element/copy-of +/pl/docs/XSLT/decimal-format /pl/docs/Web/XSLT/Element/decimal-format /pl/docs/XSLT/element /pl/docs/Web/XSLT/Element/element -/pl/docs/XSLT/fallback /pl/docs/Web/XSLT/fallback -/pl/docs/XSLT/for-each /pl/docs/Web/XSLT/for-each -/pl/docs/XSLT/if /pl/docs/Web/XSLT/if -/pl/docs/XSLT/import /pl/docs/Web/XSLT/import -/pl/docs/XSLT/include /pl/docs/Web/XSLT/include -/pl/docs/XSLT/key /pl/docs/Web/XSLT/key -/pl/docs/XSLT/message /pl/docs/Web/XSLT/message -/pl/docs/XSLT/namespace-alias /pl/docs/Web/XSLT/namespace-alias -/pl/docs/XSLT/number /pl/docs/Web/XSLT/number -/pl/docs/XSLT/otherwise /pl/docs/Web/XSLT/otherwise -/pl/docs/XSLT/output /pl/docs/Web/XSLT/output -/pl/docs/XSLT/param /pl/docs/Web/XSLT/param -/pl/docs/XSLT/preserve-space /pl/docs/Web/XSLT/preserve-space -/pl/docs/XSLT/processing-instruction /pl/docs/Web/XSLT/processing-instruction -/pl/docs/XSLT/sort /pl/docs/Web/XSLT/sort -/pl/docs/XSLT/strip-space /pl/docs/Web/XSLT/strip-space -/pl/docs/XSLT/stylesheet /pl/docs/Web/XSLT/stylesheet -/pl/docs/XSLT/template /pl/docs/Web/XSLT/template -/pl/docs/XSLT/text /pl/docs/Web/XSLT/text -/pl/docs/XSLT/transform /pl/docs/Web/XSLT/transform -/pl/docs/XSLT/value-of /pl/docs/Web/XSLT/value-of -/pl/docs/XSLT/variable /pl/docs/Web/XSLT/variable -/pl/docs/XSLT/when /pl/docs/Web/XSLT/when -/pl/docs/XSLT/with-param /pl/docs/Web/XSLT/with-param +/pl/docs/XSLT/fallback /pl/docs/Web/XSLT/Element/fallback +/pl/docs/XSLT/for-each /pl/docs/Web/XSLT/Element/for-each +/pl/docs/XSLT/if /pl/docs/Web/XSLT/Element/if +/pl/docs/XSLT/import /pl/docs/Web/XSLT/Element/import +/pl/docs/XSLT/include /pl/docs/Web/XSLT/Element/include +/pl/docs/XSLT/key /pl/docs/Web/XSLT/Element/key +/pl/docs/XSLT/message /pl/docs/Web/XSLT/Element/message +/pl/docs/XSLT/namespace-alias /pl/docs/Web/XSLT/Element/namespace-alias +/pl/docs/XSLT/number /pl/docs/Web/XSLT/Element/number +/pl/docs/XSLT/otherwise /pl/docs/Web/XSLT/Element/otherwise +/pl/docs/XSLT/output /pl/docs/Web/XSLT/Element/output +/pl/docs/XSLT/param /pl/docs/Web/XSLT/Element/param +/pl/docs/XSLT/preserve-space /pl/docs/Web/XSLT/Element/preserve-space +/pl/docs/XSLT/processing-instruction /pl/docs/Web/XSLT/Element/processing-instruction +/pl/docs/XSLT/sort /pl/docs/Web/XSLT/Element/sort +/pl/docs/XSLT/strip-space /pl/docs/Web/XSLT/Element/strip-space +/pl/docs/XSLT/stylesheet /pl/docs/Web/XSLT/Element/stylesheet +/pl/docs/XSLT/template /pl/docs/Web/XSLT/Element/template +/pl/docs/XSLT/text /pl/docs/Web/XSLT/Element/text +/pl/docs/XSLT/transform /pl/docs/Web/XSLT/Element/transform +/pl/docs/XSLT/value-of /pl/docs/Web/XSLT/Element/value-of +/pl/docs/XSLT/variable /pl/docs/Web/XSLT/Element/variable +/pl/docs/XSLT/when /pl/docs/Web/XSLT/Element/when +/pl/docs/XSLT/with-param /pl/docs/Web/XSLT/Element/with-param /pl/docs/XSLT:Elementy /pl/docs/Web/XSLT/Element -/pl/docs/XSLT:apply-imports /pl/docs/Web/XSLT/apply-imports -/pl/docs/XSLT:apply-templates /pl/docs/Web/XSLT/apply-templates -/pl/docs/XSLT:attribute /pl/docs/Web/XSLT/attribute -/pl/docs/XSLT:attribute-set /pl/docs/Web/XSLT/attribute-set -/pl/docs/XSLT:call-template /pl/docs/Web/XSLT/call-template -/pl/docs/XSLT:choose /pl/docs/Web/XSLT/choose -/pl/docs/XSLT:comment /pl/docs/Web/XSLT/comment -/pl/docs/XSLT:copy /pl/docs/Web/XSLT/copy -/pl/docs/XSLT:copy-of /pl/docs/Web/XSLT/copy-of -/pl/docs/XSLT:decimal-format /pl/docs/Web/XSLT/decimal-format +/pl/docs/XSLT:apply-imports /pl/docs/Web/XSLT/Element/apply-imports +/pl/docs/XSLT:apply-templates /pl/docs/Web/XSLT/Element/apply-templates +/pl/docs/XSLT:attribute /pl/docs/Web/XSLT/Element/attribute +/pl/docs/XSLT:attribute-set /pl/docs/Web/XSLT/Element/attribute-set +/pl/docs/XSLT:call-template /pl/docs/Web/XSLT/Element/call-template +/pl/docs/XSLT:choose /pl/docs/Web/XSLT/Element/choose +/pl/docs/XSLT:comment /pl/docs/Web/XSLT/Element/comment +/pl/docs/XSLT:copy /pl/docs/Web/XSLT/Element/copy +/pl/docs/XSLT:copy-of /pl/docs/Web/XSLT/Element/copy-of +/pl/docs/XSLT:decimal-format /pl/docs/Web/XSLT/Element/decimal-format /pl/docs/XSLT:element /pl/docs/Web/XSLT/Element/element -/pl/docs/XSLT:fallback /pl/docs/Web/XSLT/fallback -/pl/docs/XSLT:for-each /pl/docs/Web/XSLT/for-each -/pl/docs/XSLT:if /pl/docs/Web/XSLT/if -/pl/docs/XSLT:import /pl/docs/Web/XSLT/import -/pl/docs/XSLT:include /pl/docs/Web/XSLT/include -/pl/docs/XSLT:key /pl/docs/Web/XSLT/key -/pl/docs/XSLT:message /pl/docs/Web/XSLT/message -/pl/docs/XSLT:namespace-alias /pl/docs/Web/XSLT/namespace-alias -/pl/docs/XSLT:number /pl/docs/Web/XSLT/number -/pl/docs/XSLT:otherwise /pl/docs/Web/XSLT/otherwise -/pl/docs/XSLT:output /pl/docs/Web/XSLT/output -/pl/docs/XSLT:param /pl/docs/Web/XSLT/param -/pl/docs/XSLT:preserve-space /pl/docs/Web/XSLT/preserve-space -/pl/docs/XSLT:processing-instruction /pl/docs/Web/XSLT/processing-instruction -/pl/docs/XSLT:sort /pl/docs/Web/XSLT/sort -/pl/docs/XSLT:strip-space /pl/docs/Web/XSLT/strip-space -/pl/docs/XSLT:stylesheet /pl/docs/Web/XSLT/stylesheet -/pl/docs/XSLT:template /pl/docs/Web/XSLT/template -/pl/docs/XSLT:text /pl/docs/Web/XSLT/text -/pl/docs/XSLT:transform /pl/docs/Web/XSLT/transform -/pl/docs/XSLT:value-of /pl/docs/Web/XSLT/value-of -/pl/docs/XSLT:variable /pl/docs/Web/XSLT/variable -/pl/docs/XSLT:when /pl/docs/Web/XSLT/when -/pl/docs/XSLT:with-param /pl/docs/Web/XSLT/with-param -/pl/docs/Zarządzanie_fokusem_w_HTML /pl/docs/Web/HTML/Zarządzanie_fokusem_w_HTML -/pl/docs/Zasoby_języka_JavaScript /pl/docs/Web/JavaScript/Zasoby_języka_JavaScript -/pl/docs/Zdarzenia_online_i_offline /pl/docs/Web/API/NavigatorOnLine/Zdarzenia_online_i_offline +/pl/docs/XSLT:fallback /pl/docs/Web/XSLT/Element/fallback +/pl/docs/XSLT:for-each /pl/docs/Web/XSLT/Element/for-each +/pl/docs/XSLT:if /pl/docs/Web/XSLT/Element/if +/pl/docs/XSLT:import /pl/docs/Web/XSLT/Element/import +/pl/docs/XSLT:include /pl/docs/Web/XSLT/Element/include +/pl/docs/XSLT:key /pl/docs/Web/XSLT/Element/key +/pl/docs/XSLT:message /pl/docs/Web/XSLT/Element/message +/pl/docs/XSLT:namespace-alias /pl/docs/Web/XSLT/Element/namespace-alias +/pl/docs/XSLT:number /pl/docs/Web/XSLT/Element/number +/pl/docs/XSLT:otherwise /pl/docs/Web/XSLT/Element/otherwise +/pl/docs/XSLT:output /pl/docs/Web/XSLT/Element/output +/pl/docs/XSLT:param /pl/docs/Web/XSLT/Element/param +/pl/docs/XSLT:preserve-space /pl/docs/Web/XSLT/Element/preserve-space +/pl/docs/XSLT:processing-instruction /pl/docs/Web/XSLT/Element/processing-instruction +/pl/docs/XSLT:sort /pl/docs/Web/XSLT/Element/sort +/pl/docs/XSLT:strip-space /pl/docs/Web/XSLT/Element/strip-space +/pl/docs/XSLT:stylesheet /pl/docs/Web/XSLT/Element/stylesheet +/pl/docs/XSLT:template /pl/docs/Web/XSLT/Element/template +/pl/docs/XSLT:text /pl/docs/Web/XSLT/Element/text +/pl/docs/XSLT:transform /pl/docs/Web/XSLT/Element/transform +/pl/docs/XSLT:value-of /pl/docs/Web/XSLT/Element/value-of +/pl/docs/XSLT:variable /pl/docs/Web/XSLT/Element/variable +/pl/docs/XSLT:when /pl/docs/Web/XSLT/Element/when +/pl/docs/XSLT:with-param /pl/docs/Web/XSLT/Element/with-param +/pl/docs/Zarządzanie_fokusem_w_HTML /pl/docs/conflicting/Web/API/Document/hasFocus +/pl/docs/Zasoby_języka_JavaScript /pl/docs/Web/JavaScript/Language_Resources +/pl/docs/Zdarzenia_online_i_offline /pl/docs/Web/API/NavigatorOnLine/Online_and_offline_events /pl/docs/Zmiany_XMLHttpRequest_dla_Gecko_1.8 /pl/docs/Zmiany_w_obiekcie_XMLHttpRequest_w_Gecko_1.8 -/pl/docs/appendChild /pl/docs/Web/API/Element/appendChild -/pl/docs/blur /pl/docs/Web/API/Element/blur -/pl/docs/cloneNode /pl/docs/Web/API/Element/clientNode +/pl/docs/appendChild /pl/docs/Web/API/Node/appendChild +/pl/docs/blur /pl/docs/Web/API/HTMLOrForeignElement/blur +/pl/docs/cloneNode /pl/docs/Web/API/Node/cloneNode +/pl/docs/dziesiec_lat_mdn /pl/docs/MDN/At_ten /pl/docs/en /en-US/ -/pl/docs/focus /pl/docs/Web/API/Element/focus +/pl/docs/focus /pl/docs/Web/API/HTMLOrForeignElement/focus /pl/docs/getAttribute /pl/docs/Web/API/Element/getAttribute /pl/docs/install.rdf /pl/docs/Manifesty_Instalacji /pl/docs/mozilla-central /pl/docs/Mozilla/Developer_guide/mozilla-central +/pl/docs/nsIInputStream /pl/docs/orphaned/nsIInputStream +/pl/docs/nsIXULAppInfo /pl/docs/orphaned/nsIXULAppInfo /pl/docs/setAttribute /pl/docs/Web/API/Element/setAttribute diff --git a/files/pl/_wikihistory.json b/files/pl/_wikihistory.json index a15cada859..23917b83dd 100644 --- a/files/pl/_wikihistory.json +++ b/files/pl/_wikihistory.json @@ -1,231 +1,4 @@ { - "API_dostępu_do_danych_z_kanałów": { - "modified": "2019-03-23T23:44:27.416Z", - "contributors": [ - "SphinxKnight", - "Bedi", - "gandalf", - "Ptak82" - ] - }, - "Aktualizacja_aplikacji_internetowych_dla_Firefoksa_3": { - "modified": "2019-03-23T23:59:55.485Z", - "contributors": [ - "wbamberg", - "Sheppy", - "zarat", - "gandalf", - "Mgjbot", - "Ptak82", - "Flaneur", - "Cardil" - ] - }, - "Aktualizacja_rozszerzeń_dla_Firefoksa_3": { - "modified": "2019-12-13T20:34:55.140Z", - "contributors": [ - "wbamberg", - "fscholz", - "Sheppy", - "zarat", - "Witia", - "Ptak82", - "Patryk Węgrzynek", - "Mgjbot", - "Bedi", - "Peyn", - "Diablownik", - "Proboszcz" - ] - }, - "Aktualizacja_rozszerzeń_do_Firefoksa_2": { - "modified": "2019-03-23T23:50:53.722Z", - "contributors": [ - "wbamberg", - "Mgjbot", - "Ptak82" - ] - }, - "Bezpieczeństwo_w_Firefoksie_2": { - "modified": "2019-03-23T23:54:28.429Z", - "contributors": [ - "wbamberg", - "Mgjbot", - "Ptak82", - "RafalRawicki" - ] - }, - "Chrome": { - "modified": "2019-03-23T23:44:52.281Z", - "contributors": [ - "Mgjbot", - "Ptak82" - ] - }, - "Co_nowego_w_Deer_Park_Alpha": { - "modified": "2019-03-23T23:46:10.418Z", - "contributors": [ - "wbamberg", - "SphinxKnight", - "pkubowicz", - "Ptak82", - "Staszyna", - "gandalf" - ] - }, - "DHTML": { - "modified": "2019-03-23T23:44:56.232Z", - "contributors": [ - "Mgjbot", - "gandalf", - "Ptak82", - "Dria" - ] - }, - "DOM": { - "modified": "2019-03-23T23:54:33.828Z", - "contributors": [ - "ethertank", - "Mgjbot", - "Bedi", - "Ptak82", - "Takenbot", - "Zwierz", - "gandalf", - "Jan Dudek", - "Anonymous", - "Dria" - ] - }, - "DOM/dispatchEvent_-_przykład": { - "modified": "2019-03-23T23:50:28.341Z", - "contributors": [ - "khalid32", - "Mgjbot", - "Ptak82", - "Jan Dudek" - ] - }, - "DOM/element.onkeydown": { - "modified": "2019-03-23T23:46:41.310Z", - "contributors": [ - "AshfaqHossain", - "Mgjbot", - "Ptak82", - "Jan Dudek" - ] - }, - "DOM_i_JavaScript": { - "modified": "2019-12-13T21:10:08.496Z", - "contributors": [ - "wbamberg", - "lukasz.jezierski", - "Re set", - "Diablownik", - "Rev", - "Ptak82", - "Bedi", - "Internauta1024A" - ] - }, - "Dodawanie_wyszukiwarek_z_poziomu_stron_WWW": { - "modified": "2019-01-16T15:27:45.981Z", - "contributors": [ - "Mgjbot", - "Killerowski", - "Diablownik", - "Marcoos", - "Ptak82" - ] - }, - "Dokumentacja_Gecko_DOM": { - "modified": "2019-01-16T16:05:36.652Z", - "contributors": [ - "Ptak82", - "Mgjbot", - "Takenbot", - "Jan Dudek" - ] - }, - "Dokumentacja_Gecko_DOM/Przedmowa": { - "modified": "2019-03-23T23:47:41.657Z", - "contributors": [ - "khalid32", - "safjanowski", - "Ranides", - "Mgjbot", - "Ptak82", - "Bedi", - "Akustyk" - ] - }, - "Dokumentacja_Gecko_DOM/Przykłady_użycia_DOM": { - "modified": "2019-03-23T23:50:20.825Z", - "contributors": [ - "pablovsky", - "mklkj", - "khalid32", - "Ptak82", - "Mgjbot", - "Bedi" - ] - }, - "Dokumentacja_Gecko_DOM/Wprowadzenie": { - "modified": "2019-03-23T23:46:08.857Z", - "contributors": [ - "fscholz", - "jsx", - "AshfaqHossain", - "Bedi", - "Ptak82", - "Diablownik", - "Mgjbot", - "Takenbot", - "Anonymous", - "Jan Dudek" - ] - }, - "Dostosowanie_aplikacji_XUL_do_Firefoksa_1.5": { - "modified": "2019-03-23T23:45:42.063Z", - "contributors": [ - "wbamberg", - "Diablownik", - "Ptak82", - "Bedi" - ] - }, - "Dynamiczne_zmiany_interfejsu_użytkownika_bazującego_na_XUL-u": { - "modified": "2019-03-23T23:46:45.617Z", - "contributors": [ - "teoli", - "Mgjbot", - "Ptak82", - "Bedi" - ] - }, - "Firefox_-_potrzeba_wolności": { - "modified": "2019-03-23T23:40:17.616Z", - "contributors": [ - "gandalf" - ] - }, - "Firefox_3_dla_programistów": { - "modified": "2019-03-23T23:59:01.747Z", - "contributors": [ - "Sebastianz", - "teoli", - "Ptak82", - "gandalf", - "Flaneur", - "Witia", - "Mgjbot", - "Diablownik", - "VooEak", - "Bedi", - "Szaloony", - "Internauta1024A" - ] - }, "Games/Tutorials": { "modified": "2020-03-25T16:16:50.290Z", "contributors": [ @@ -239,30 +12,6 @@ "JoeParrilla" ] }, - "Games/Tutorials/2D_Breakout_game_pure_JavaScript/Stworz_element_Canvas_i_rysuj_na_nim": { - "modified": "2020-03-26T16:17:46.952Z", - "contributors": [ - "Jacqbus" - ] - }, - "Games/Tutorials/2D_Breakout_game_pure_JavaScript/odbijanie_od_scian": { - "modified": "2020-03-30T18:30:10.443Z", - "contributors": [ - "Jacqbus" - ] - }, - "Games/Tutorials/2D_Breakout_game_pure_JavaScript/posusz_pilka": { - "modified": "2020-03-30T18:31:36.346Z", - "contributors": [ - "Jacqbus" - ] - }, - "Games/Tutorials/2D_Breakout_game_pure_JavaScript/wykrywanie_kolizji": { - "modified": "2020-03-30T17:04:11.415Z", - "contributors": [ - "Jacqbus" - ] - }, "Glossary": { "modified": "2020-10-07T11:12:59.105Z", "contributors": [ @@ -292,12 +41,6 @@ "Miszau" ] }, - "Glossary/Abstrakcja": { - "modified": "2019-03-18T21:25:50.244Z", - "contributors": [ - "lukasz-otowski" - ] - }, "Glossary/Accessibility": { "modified": "2019-07-21T11:36:59.438Z", "contributors": [ @@ -378,12 +121,6 @@ "DoctorLarva" ] }, - "Glossary/Hipertekst": { - "modified": "2019-05-29T12:14:13.625Z", - "contributors": [ - "DoctorLarva" - ] - }, "Glossary/Hoisting": { "modified": "2019-03-23T22:37:11.825Z", "contributors": [ @@ -410,20 +147,6 @@ "andrzejkrecicki" ] }, - "Glossary/Klasa": { - "modified": "2019-03-18T21:34:27.829Z", - "contributors": [ - "elipinska" - ] - }, - "Glossary/Kryptografia": { - "modified": "2020-08-25T20:29:24.011Z", - "contributors": [ - "duduindo", - "hencel", - "jam1985" - ] - }, "Glossary/Metadata": { "modified": "2019-05-29T20:16:08.939Z", "contributors": [ @@ -436,39 +159,14 @@ "Siudzi" ] }, - "Glossary/Obiekt": { - "modified": "2019-03-18T21:34:35.043Z", + "Glossary/SGML": { + "modified": "2019-05-29T12:24:44.549Z", "contributors": [ - "elipinska" + "DoctorLarva" ] }, - "Glossary/Przegladarka": { - "modified": "2019-05-29T09:55:44.088Z", - "contributors": [ - "DoctorLarva", - "JohnnyDevX" - ] - }, - "Glossary/Pusty_element": { - "modified": "2019-05-29T20:22:35.850Z", - "contributors": [ - "DoctorLarva" - ] - }, - "Glossary/SGML": { - "modified": "2019-05-29T12:24:44.549Z", - "contributors": [ - "DoctorLarva" - ] - }, - "Glossary/Semantyka": { - "modified": "2020-06-30T11:00:26.836Z", - "contributors": [ - "krupinskij" - ] - }, - "Glossary/Slug": { - "modified": "2019-03-18T21:25:57.892Z", + "Glossary/Slug": { + "modified": "2019-03-18T21:25:57.892Z", "contributors": [ "lukasz-otowski" ] @@ -516,44 +214,6 @@ "Siudzi" ] }, - "Gry": { - "modified": "2019-09-09T15:33:17.920Z", - "contributors": [ - "SphinxKnight", - "wbamberg", - "avllyx", - "nikkeh", - "pm093" - ] - }, - "HTML/HTML5": { - "modified": "2019-06-28T04:18:42.824Z", - "contributors": [ - "Moniaesz", - "teoli", - "Jacob99", - "Ptak82", - "Teo" - ] - }, - "Istotne_błędy_poprawione_w_Firefoksie_3": { - "modified": "2019-03-23T23:59:42.353Z", - "contributors": [ - "wbamberg", - "SphinxKnight", - "teoli", - "zarat", - "Bedi", - "Flaneur", - "Mgjbot" - ] - }, - "JSON": { - "modified": "2019-03-23T23:19:21.999Z", - "contributors": [ - "jpanasiuk" - ] - }, "Learn": { "modified": "2020-07-16T22:43:45.459Z", "contributors": [ @@ -637,12 +297,6 @@ "stephaniehobson" ] }, - "Learn/Common_questions/Jak_dziala_Internet": { - "modified": "2020-08-13T04:00:30.686Z", - "contributors": [ - "DoctorLarva" - ] - }, "Learn/Getting_started_with_the_web": { "modified": "2020-08-11T17:21:51.146Z", "contributors": [ @@ -690,12 +344,6 @@ "ffipe" ] }, - "Learn/Getting_started_with_the_web/Jak_dziala_Siec": { - "modified": "2020-08-11T19:23:21.916Z", - "contributors": [ - "DoctorLarva" - ] - }, "Learn/Getting_started_with_the_web/JavaScript_basics": { "modified": "2020-07-16T22:35:13.964Z", "contributors": [ @@ -802,60 +450,6 @@ "asbud" ] }, - "Learn/JavaScript/Obiekty": { - "modified": "2020-10-10T09:26:19.271Z", - "contributors": [ - "Margo1212", - "quart", - "malu", - "mat-bi" - ] - }, - "Learn/JavaScript/Pierwsze_kroki": { - "modified": "2020-07-16T22:29:53.878Z", - "contributors": [ - "JWPB", - "Davvidos" - ] - }, - "Learn/JavaScript/Pierwsze_kroki/A_first_splash": { - "modified": "2020-07-16T22:30:20.788Z", - "contributors": [ - "JWPB", - "olo936", - "mat-bi" - ] - }, - "Learn/JavaScript/Pierwsze_kroki/Co_poszlo_nie_tak": { - "modified": "2020-07-16T22:30:35.448Z", - "contributors": [ - "mat-bi" - ] - }, - "Learn/JavaScript/Pierwsze_kroki/Math": { - "modified": "2020-09-03T15:45:26.516Z", - "contributors": [ - "marek-rzepka" - ] - }, - "Learn/JavaScript/Pierwsze_kroki/What_is_JavaScript": { - "modified": "2020-10-10T09:38:24.622Z", - "contributors": [ - "Margo1212", - "Kamieniu", - "mat-bi", - "asbud", - "maciej-w" - ] - }, - "Learn/JavaScript/Pierwsze_kroki/Zmienne": { - "modified": "2020-09-03T15:16:05.291Z", - "contributors": [ - "marek-rzepka", - "Majek", - "jakubjaros" - ] - }, "Learn/Server-side": { "modified": "2020-07-16T22:36:00.969Z", "contributors": [ @@ -880,12 +474,6 @@ "cs" ] }, - "Learn/Server-side/Express_Nodejs/Szkolenie_aplikacja_biblioteka": { - "modified": "2020-10-13T17:24:53.764Z", - "contributors": [ - "cs" - ] - }, "Learn/Server-side/Express_Nodejs/development_environment": { "modified": "2020-10-13T17:20:42.190Z", "contributors": [ @@ -910,26 +498,6 @@ "chrisdavidmills" ] }, - "Lista_komponentów_XPCOM": { - "modified": "2019-01-16T15:43:27.057Z", - "contributors": [ - "Mgjbot", - "Ptak82" - ] - }, - "Lokalizacja": { - "modified": "2019-03-23T23:54:20.898Z", - "contributors": [ - "teoli", - "Mgjbot", - "Verruckt", - "Bedi", - "Ptak82", - "Takenbot", - "Staszyna", - "gandalf" - ] - }, "MDN": { "modified": "2020-02-19T18:16:07.796Z", "contributors": [ @@ -989,23 +557,6 @@ "klez" ] }, - "MDN/Contribute/Howto/Budowa_dany_edycja_artykuł": { - "modified": "2019-07-08T06:01:08.333Z", - "contributors": [ - "killaseo", - "ffipe", - "HeartbliT" - ] - }, - "MDN/Contribute/Howto/Create_an_MDN_account": { - "modified": "2019-01-16T21:13:56.739Z", - "contributors": [ - "wbamberg", - "Anan9492", - "kfrejlich", - "janciowodnik001" - ] - }, "MDN/Contribute/Howto/Create_and_edit_pages": { "modified": "2020-12-04T02:55:11.340Z", "contributors": [ @@ -1014,25 +565,6 @@ "tomekgroos" ] }, - "MDN/Contribute/Howto/Do_a_technical_review": { - "modified": "2019-03-23T22:33:16.816Z", - "contributors": [ - "wbamberg", - "Freelancer.MK" - ] - }, - "MDN/Contribute/Howto/Set_the_summary_for_a_page": { - "modified": "2019-03-23T23:06:52.359Z", - "contributors": [ - "wbamberg", - "Anonymodous", - "mnowy41", - "Mlodyemoka", - "grunt666", - "przemekp1", - "jembezmamy" - ] - }, "MDN/Contribute/Howto/Tag": { "modified": "2019-03-23T22:48:19.207Z", "contributors": [ @@ -1040,12 +572,6 @@ "apawliszak" ] }, - "MDN/Contribute/Howto/Tag_JavaScript_pages": { - "modified": "2019-05-23T16:54:47.884Z", - "contributors": [ - "Azkel" - ] - }, "MDN/Guidelines": { "modified": "2020-09-30T15:31:06.666Z", "contributors": [ @@ -1055,43 +581,6 @@ "Sheppy" ] }, - "MDN/Guidelines/Style_guide": { - "modified": "2020-09-30T15:31:07.174Z", - "contributors": [ - "chrisdavidmills", - "jswisher", - "killaseo", - "wbamberg", - "Arti", - "grunt666", - "Mlodyemoka", - "BogdanMDN", - "CYGAN" - ] - }, - "MDN/Kuma": { - "modified": "2019-09-09T15:53:30.248Z", - "contributors": [ - "SphinxKnight", - "tjasinski", - "wbamberg", - "lukaszwch" - ] - }, - "MDN/User_guide": { - "modified": "2019-01-16T20:46:53.090Z", - "contributors": [ - "wbamberg", - "Mlodyemoka" - ] - }, - "Moduły_JavaScript": { - "modified": "2019-01-16T15:32:24.451Z", - "contributors": [ - "Mgjbot", - "Flaneur" - ] - }, "Mozilla": { "modified": "2019-09-25T21:44:44.235Z", "contributors": [ @@ -1142,22 +631,6 @@ "hugojavierduran9" ] }, - "Mozilla/Add-ons/WebExtensions/Pierwsze_kroki_z_web-ext": { - "modified": "2019-03-18T21:02:41.503Z", - "contributors": [ - "marsjaninzmarsa" - ] - }, - "Mozilla/Add-ons/WebExtensions/Twój_pierwszy_WebExtension": { - "modified": "2020-12-12T09:20:57.064Z", - "contributors": [ - "jangromko", - "Sławek", - "Waterrail", - "oliwier1232", - "Ciepcin" - ] - }, "Mozilla/Add-ons/WebExtensions/manifest.json": { "modified": "2020-10-15T21:56:06.471Z", "contributors": [ @@ -1296,513 +769,533 @@ "Sebastianz" ] }, - "Narzędzia": { - "modified": "2020-07-16T22:44:16.950Z", + "Web": { + "modified": "2019-03-23T23:30:00.154Z", "contributors": [ - "SphinxKnight", - "Katarzyna89", - "Arekusandoru", - "rolevicz", - "kasia725792", - "Zioberokr", - "Emerson2718", - "Bajerka86", - "alimar@poczta.onet.pl", - "Woren82", - "dawisko1", - "SCPD", + "mat-bi", + "wopolow", + "wowka123", + "marcind27", "teoli", - "Andrzej.Salata", - "Kosia90", + "Rokuzo", + "JuMuS", + "manikus", "splewako", - "mirekczechxmm", - "Diablownik", - "Ptak82", - "Mgjbot", - "Andreas Wuest", - "Listek", - "Dria" + "Sheppy" ] }, - "Narzędzia/Browser_Toolbox": { - "modified": "2020-07-16T22:35:55.742Z", + "Web/API": { + "modified": "2020-10-18T13:01:11.570Z", "contributors": [ - "Freelancer.MK" + "Karklik", + "juhtajuhta", + "iwona1111", + "teoli", + "Rokuzo", + "splewako", + "ethertank", + "Sheppy" ] }, - "Narzędzia/Debugger": { - "modified": "2020-07-16T22:35:05.314Z", + "Web/API/Attr": { + "modified": "2020-10-15T22:24:31.515Z", "contributors": [ - "kaiga747", - "bassam", - "kuba1o3" + "ja-pl" ] }, - "Narzędzia/Debugger/How_to": { - "modified": "2020-07-16T22:35:08.058Z", + "Web/API/AudioBuffer": { + "modified": "2019-03-23T22:27:58.311Z", "contributors": [ - "jwhitlock", - "wbamberg" + "drm404", + "mateuszdanek" ] }, - "Narzędzia/Page_Inspector": { - "modified": "2020-07-16T22:34:28.762Z", + "Web/API/AudioContext": { + "modified": "2019-03-23T22:13:45.962Z", "contributors": [ - "kubutekf", - "Mlodyemoka" + "drm404" ] }, - "Narzędzia/Page_Inspector/How_to": { - "modified": "2020-07-16T22:34:31.602Z", + "Web/API/AudioParam": { + "modified": "2019-03-23T22:13:33.465Z", "contributors": [ - "jwhitlock", - "sidgan" + "jpmedley" ] }, - "Narzędzia/Page_Inspector/How_to/Open_the_Inspector": { - "modified": "2020-07-16T22:34:32.873Z", + "Web/API/AudioParam/setValueAtTime": { + "modified": "2019-03-23T22:13:25.222Z", "contributors": [ - "jwhitlock", - "kubutekf", - "Mlodyemoka" + "drm404" ] }, - "Narzędzia/Page_Inspector/Przewodnik_przez_UI": { - "modified": "2020-07-16T22:34:49.477Z", + "Web/API/CSSNumericValue": { + "modified": "2020-10-15T22:28:41.872Z", "contributors": [ - "kubutekf" + "estelle" ] }, - "Narzędzia/Performance": { - "modified": "2020-07-16T22:36:13.164Z", + "Web/API/CSSNumericValue/div": { + "modified": "2020-10-15T22:28:40.331Z", "contributors": [ - "jwhitlock", - "wbamberg" + "marcinkuran30" ] }, - "Narzędzia/Performance/Flame_Chart": { - "modified": "2020-07-16T22:36:20.612Z", + "Web/API/CSSRule": { + "modified": "2019-03-23T23:45:23.663Z", "contributors": [ - "jwhitlock", - "ozzbrain" + "teoli", + "khalid32", + "Bedi", + "Ptak82", + "Internauta1024A" ] }, - "Narzędzia/Profiler": { - "modified": "2020-07-16T22:35:28.987Z", + "Web/API/Cache": { + "modified": "2019-03-23T23:01:45.486Z", "contributors": [ - "iwona1111" + "P0lip" ] }, - "Narzędzia/Storage_Inspector": { - "modified": "2020-07-16T22:36:10.011Z", + "Web/API/Canvas_API/Tutorial": { + "modified": "2019-03-23T22:35:51.922Z", "contributors": [ - "edrjen" + "bk20", + "dustinpaluch" ] }, - "Narzędzia/Tools_Toolbox": { - "modified": "2020-07-16T22:35:27.779Z", + "Web/API/Canvas_API/Tutorial/Basic_usage": { + "modified": "2020-04-25T12:12:44.835Z", "contributors": [ - "vviruzz" + "pewuel", + "mterczynski", + "km4", + "sebastianbando" ] }, - "Narzędzia/View_source": { - "modified": "2020-07-16T22:35:03.124Z", + "Web/API/ChildNode": { + "modified": "2020-01-17T16:06:19.710Z", "contributors": [ - "kryspinkras" + "pefbrute", + "arronei" ] }, - "Narzędzia/Walidatory": { - "modified": "2020-07-16T22:35:03.596Z", + "Web/API/ChildNode/remove": { + "modified": "2020-10-15T21:53:18.455Z", "contributors": [ - "vviruzz", - "Mgjbot", - "Diablownik", - "Ptak82", - "Witia", - "Chlopczyk" + "SphinxKnight", + "Fidosek", + "griter", + "krystian71115" ] }, - "Narzędzia/about:debugging": { - "modified": "2020-07-16T22:36:32.890Z", + "Web/API/Console": { + "modified": "2019-03-23T23:09:41.834Z", "contributors": [ - "programistka", - "Jacob99", - "BajlandoKG" + "pat36", + "Scarface91" ] }, - "Narzędzia_clone": { - "modified": "2019-01-16T20:19:23.793Z", + "Web/API/Console/log": { + "modified": "2020-10-15T21:39:57.222Z", "contributors": [ - "voodoo81-81" + "trusohamn", + "AgnieszkaPanek" ] }, - "Nieprawidłowy_typ_MIME_plików_CSS": { - "modified": "2019-01-16T14:38:41.628Z", + "Web/API/Document": { + "modified": "2019-04-08T07:32:25.930Z", "contributors": [ - "fscholz", + "Bartosz_Adamski", + "teoli", + "khalid32", + "Crash", "Mgjbot", + "Bedi", "Ptak82", - "Takenbot", "gandalf", - "Jan Dudek" + "Jan Dudek", + "Takenbot" ] }, - "O_modelu_obiektowym_dokumentu": { - "modified": "2019-01-16T14:38:39.407Z", + "Web/API/Document/URL": { + "modified": "2019-03-23T23:46:53.749Z", "contributors": [ - "fscholz", + "teoli", + "khalid32", + "DR", "Mgjbot", "Ptak82", - "Takenbot", "Jan Dudek" ] }, - "Podaj_Dłoń_'kursorowi'": { - "modified": "2019-03-23T23:41:07.782Z", + "Web/API/Document/alinkColor": { + "modified": "2019-03-23T23:46:52.586Z", "contributors": [ "teoli", - "Ptak82", - "Mwd", - "gandalf", - "Dria" + "khalid32", + "DR", + "Jan Dudek" ] }, - "Poprawki_DOM_w_Firefoksie_3": { - "modified": "2019-03-23T23:50:53.479Z", + "Web/API/Document/anchors": { + "modified": "2020-04-27T14:17:36.934Z", "contributors": [ - "wbamberg", - "Flaneur" + "jkosiaty", + "teoli", + "khalid32", + "Ptak82", + "DR", + "Mgjbot", + "Jan Dudek" ] }, - "Poprawki_SVG_w_Firefoksie_3": { - "modified": "2019-03-23T23:50:56.299Z", + "Web/API/Document/applets": { + "modified": "2019-03-23T23:46:50.771Z", "contributors": [ - "wbamberg", - "Flaneur" + "teoli", + "khalid32", + "Mgjbot", + "Jan Dudek" ] }, - "Poprawki_XUL_w_Firefoksie_3": { - "modified": "2019-03-24T00:02:36.017Z", + "Web/API/Document/bgColor": { + "modified": "2019-03-23T23:46:49.050Z", "contributors": [ - "wbamberg", - "SphinxKnight", "teoli", - "splewako", - "fscholz", + "AshfaqHossain", + "Internauta1024A", "Ptak82", - "Bedi", - "Bobqu" + "DR", + "Jan Dudek" ] }, - "Porady_odnośnie_tworzenia_szybko_ładujących_się_stron_HTML": { - "modified": "2019-03-23T23:51:58.812Z", + "Web/API/Document/body": { + "modified": "2019-09-23T05:30:09.078Z", "contributors": [ - "Mgjbot", - "Janbil", + "teoli", + "khalid32", "Ptak82", - "Witia", - "Nerf", - "gandalf", - "Jan Dudek", - "StevenGarrity", - "Anonymous", - "Dria" + "DR", + "Jan Dudek" ] }, - "Programowanie_Mozilli": { - "modified": "2019-03-23T23:58:48.549Z", + "Web/API/Document/characterSet": { + "modified": "2019-03-23T23:46:53.146Z", "contributors": [ - "gandalf", - "Mgjbot", - "Bedi", - "Verruckt", + "teoli", + "khalid32", "Ptak82", - "Dria" + "DR", + "Jan Dudek" ] }, - "Programowanie_WWW": { - "modified": "2019-03-23T23:43:53.027Z", + "Web/API/Document/clear": { + "modified": "2019-03-23T23:40:54.577Z", "contributors": [ - "Mgjbot", + "teoli", + "jsx", "Ptak82", - "gandalf", - "Anonymous", - "StevenGarrity", - "Dria" + "Jan Dudek" ] }, - "Przygotowanie_środowiska_programowania_rozszerzenia": { - "modified": "2019-03-23T23:54:18.210Z", + "Web/API/Document/close": { + "modified": "2019-03-23T23:40:56.546Z", "contributors": [ "teoli", - "Mgjbot", - "Flaneur" + "arunpandianp", + "Ptak82", + "Jan Dudek" ] }, - "Rysowanie_tekstu_przy_użyciu_canvas": { - "modified": "2019-03-23T23:53:27.996Z", + "Web/API/Document/compatMode": { + "modified": "2019-03-23T23:40:06.844Z", "contributors": [ - "gandalf" + "teoli", + "jsx", + "Jan Dudek" ] }, - "Tutorial_lokalizacji_rozszerzeń_do_Firefoksa_i_Thunderbirda_dla_wersji_1.0_i_wyższych": { - "modified": "2019-01-16T15:58:24.402Z", + "Web/API/Document/cookie": { + "modified": "2019-03-23T23:46:52.193Z", "contributors": [ - "Teo", - "Coldpeer", - "Ptak82" + "kanapka94", + "teoli", + "AshfaqHossain", + "DR", + "Jan Dudek" ] }, - "Tworzenie_wtyczek_OpenSearch_dla_Firefoksa": { - "modified": "2019-03-23T23:54:28.132Z", + "Web/API/Document/createAttribute": { + "modified": "2019-03-23T23:41:42.200Z", "contributors": [ - "tregagnon", - "Mgjbot", - "Rodrigoknascimento", + "teoli", + "jsx", + "Jan Dudek", "Ptak82", - "Citora", - "Marcoos" + "Takenbot", + "Filemon" ] }, - "Tworzymy_rozszerzenie": { - "modified": "2019-03-23T23:59:43.298Z", + "Web/API/Document/createDocumentFragment": { + "modified": "2019-03-23T23:42:17.514Z", "contributors": [ - "fscholz", + "elszczepano", "teoli", - "tregagnon", - "RLR", - "Adrianer", - "Bedi", - "Yozh88", - "Mgjbot", - "Sopel1000", + "khalid32", "Diablownik", - "Marcoos", - "Adriator", "Ptak82", - "Verruckt", - "Kyllan", - "Kabar", - "Kjj2", - "gandalf", - "Indigo", - "Takenbot", - "Pbm", - "Emil" + "Jan Dudek" ] }, - "Web": { - "modified": "2019-03-23T23:30:00.154Z", + "Web/API/Document/createElement": { + "modified": "2019-11-19T12:43:51.177Z", "contributors": [ - "mat-bi", - "wopolow", - "wowka123", - "marcind27", + "svantetic", "teoli", - "Rokuzo", - "JuMuS", - "manikus", - "splewako", - "Sheppy" + "khalid32", + "Mgjbot", + "Ptak82", + "Takenbot", + "Sp", + "Anonymous", + "Jan Dudek" ] }, - "Web/API": { - "modified": "2020-10-18T13:01:11.570Z", + "Web/API/Document/createEvent": { + "modified": "2019-03-23T23:53:29.430Z", "contributors": [ - "Karklik", - "juhtajuhta", - "iwona1111", "teoli", - "Rokuzo", - "splewako", - "ethertank", - "Sheppy" + "khalid32", + "safjanowski", + "Mgjbot", + "Ptak82", + "Jan Dudek" ] }, - "Web/API/Attr": { - "modified": "2020-10-15T22:24:31.515Z", + "Web/API/Document/createRange": { + "modified": "2019-03-23T23:53:58.762Z", "contributors": [ - "ja-pl" + "teoli", + "jsx", + "Mgjbot", + "Diablownik", + "Ptak82", + "Internauta1024A" ] }, - "Web/API/AudioBuffer": { - "modified": "2019-03-23T22:27:58.311Z", + "Web/API/Document/createTextNode": { + "modified": "2019-03-23T23:53:29.008Z", "contributors": [ - "drm404", - "mateuszdanek" + "Miras", + "teoli", + "khalid32", + "Mgjbot", + "Ptak82", + "Takenbot", + "Jan Dudek" ] }, - "Web/API/AudioContext": { - "modified": "2019-03-23T22:13:45.962Z", + "Web/API/Document/defaultView": { + "modified": "2019-03-23T23:46:22.957Z", "contributors": [ - "drm404" + "teoli", + "khalid32", + "Bedi", + "Internauta1024A" ] }, - "Web/API/AudioContext/createDynamicsCompressor": { - "modified": "2019-03-23T22:13:26.872Z", + "Web/API/Document/designMode": { + "modified": "2020-10-15T22:17:27.531Z", "contributors": [ - "drm404" + "bartosz-bieniek" ] }, - "Web/API/AudioParam": { - "modified": "2019-03-23T22:13:33.465Z", + "Web/API/Document/doctype": { + "modified": "2019-03-23T23:40:08.493Z", "contributors": [ - "jpmedley" + "teoli", + "khalid32", + "Jan Dudek" ] }, - "Web/API/AudioParam/setValueAtTime": { - "modified": "2019-03-23T22:13:25.222Z", + "Web/API/Document/documentElement": { + "modified": "2019-07-01T06:22:54.142Z", "contributors": [ - "drm404" + "Cagestrike", + "teoli", + "khalid32", + "Mgjbot", + "Ptak82", + "Jan Dudek" ] }, - "Web/API/CSSNumericValue": { - "modified": "2020-10-15T22:28:41.872Z", + "Web/API/Document/domain": { + "modified": "2019-03-23T23:40:08.387Z", "contributors": [ - "estelle" + "teoli", + "khalid32", + "Jan Dudek" ] }, - "Web/API/CSSNumericValue/div": { - "modified": "2020-10-15T22:28:40.331Z", + "Web/API/Document/drag_event": { + "modified": "2019-04-30T13:52:16.811Z", "contributors": [ - "marcinkuran30" + "wbamberg", + "fscholz", + "malecki-se" ] }, - "Web/API/CSSRule": { - "modified": "2019-03-23T23:45:23.663Z", + "Web/API/Document/embeds": { + "modified": "2019-03-23T23:47:42.954Z", "contributors": [ "teoli", - "khalid32", + "AshfaqHossain", "Bedi", "Ptak82", - "Internauta1024A" + "Jan Dudek" ] }, - "Web/API/Cache": { - "modified": "2019-03-23T23:01:45.486Z", + "Web/API/Document/execCommand": { + "modified": "2020-08-24T07:38:53.201Z", "contributors": [ - "P0lip" + "Lukortech", + "ja-pl" ] }, - "Web/API/Canvas_API/Tutorial": { - "modified": "2019-03-23T22:35:51.922Z", + "Web/API/Document/fgColor": { + "modified": "2019-03-23T23:40:08.011Z", "contributors": [ - "bk20", - "dustinpaluch" + "teoli", + "jsx", + "Jan Dudek" ] }, - "Web/API/Canvas_API/Tutorial/Basic_usage": { - "modified": "2020-04-25T12:12:44.835Z", + "Web/API/Document/forms": { + "modified": "2019-03-23T23:43:19.295Z", "contributors": [ - "pewuel", - "mterczynski", - "km4", - "sebastianbando" + "teoli", + "basemnassar11", + "Mgjbot", + "Ptak82", + "Jan Dudek" ] }, - "Web/API/Canvas_API/Tutorial/Optymalizacja_canvas": { - "modified": "2019-03-18T21:12:08.144Z", + "Web/API/Document/getElementById": { + "modified": "2019-03-23T23:45:59.363Z", "contributors": [ - "Ovkorz" + "xmentor", + "teoli", + "khalid32", + "Ptak82", + "Mgjbot", + "Takenbot", + "Jan Dudek" ] }, - "Web/API/Canvas_API/Tutorial/rysowanie_ksztaltow": { - "modified": "2019-03-23T22:35:47.920Z", + "Web/API/Document/getElementsByClassName": { + "modified": "2019-03-18T21:37:45.960Z", "contributors": [ - "km4", - "Kratak", - "sebastianbando", - "Miras" + "wioladys" ] }, - "Web/API/ChildNode": { - "modified": "2020-01-17T16:06:19.710Z", + "Web/API/Document/getElementsByName": { + "modified": "2019-03-23T23:43:51.751Z", "contributors": [ - "pefbrute", - "arronei" + "teoli", + "khalid32", + "Mgjbot", + "Ptak82", + "Jan Dudek" ] }, - "Web/API/ChildNode/remove": { - "modified": "2020-10-15T21:53:18.455Z", + "Web/API/Document/getElementsByTagName": { + "modified": "2019-03-23T23:50:35.608Z", "contributors": [ "SphinxKnight", - "Fidosek", - "griter", - "krystian71115" + "teoli", + "mimzi_fahia", + "Mgjbot", + "Diablownik", + "Internauta1024A", + "Ptak82" ] }, - "Web/API/Console": { - "modified": "2019-03-23T23:09:41.834Z", + "Web/API/Document/hasFocus": { + "modified": "2019-03-23T23:53:17.459Z", "contributors": [ - "pat36", - "Scarface91" + "teoli", + "khalid32", + "Mgjbot", + "Flaneur" ] }, - "Web/API/Console/log": { - "modified": "2020-10-15T21:39:57.222Z", + "Web/API/Document/head": { + "modified": "2019-03-23T22:40:15.808Z", "contributors": [ - "trusohamn", - "AgnieszkaPanek" + "maciejmarczak" ] }, - "Web/API/Document": { - "modified": "2019-04-08T07:32:25.930Z", + "Web/API/Document/height": { + "modified": "2019-03-23T23:42:16.598Z", "contributors": [ - "Bartosz_Adamski", "teoli", - "khalid32", - "Crash", - "Mgjbot", - "Bedi", + "mimzi_fahia", "Ptak82", - "gandalf", - "Jan Dudek", - "Takenbot" + "Jan Dudek" ] }, - "Web/API/Document/URL": { - "modified": "2019-03-23T23:46:53.749Z", + "Web/API/Document/images": { + "modified": "2019-03-24T00:04:17.670Z", "contributors": [ "teoli", - "khalid32", - "DR", - "Mgjbot", - "Ptak82", + "jsx", + "RAP1D", + "Ptak82", + "Takenbot", "Jan Dudek" ] }, - "Web/API/Document/activeElement": { - "modified": "2019-03-23T23:53:13.275Z", + "Web/API/Document/implementation": { + "modified": "2019-03-23T23:40:09.680Z", "contributors": [ "teoli", - "AshfaqHossain", + "jsx", + "Jan Dudek" + ] + }, + "Web/API/Document/importNode": { + "modified": "2019-03-23T23:49:15.469Z", + "contributors": [ + "wbamberg", + "SphinxKnight", + "PawelekS", + "teoli", + "khalid32", + "Sheppy", "Mgjbot", - "Flaneur" + "Internauta1024A", + "Ptak82" ] }, - "Web/API/Document/alinkColor": { - "modified": "2019-03-23T23:46:52.586Z", + "Web/API/Document/lastModified": { + "modified": "2019-03-23T23:40:08.879Z", "contributors": [ "teoli", "khalid32", - "DR", "Jan Dudek" ] }, - "Web/API/Document/anchors": { - "modified": "2020-04-27T14:17:36.934Z", + "Web/API/Document/linkColor": { + "modified": "2019-03-23T23:42:42.094Z", "contributors": [ - "jkosiaty", "teoli", "khalid32", "Ptak82", - "DR", - "Mgjbot", "Jan Dudek" ] }, - "Web/API/Document/applets": { - "modified": "2019-03-23T23:46:50.771Z", + "Web/API/Document/links": { + "modified": "2019-03-23T23:51:18.977Z", "contributors": [ "teoli", "khalid32", @@ -1810,220 +1303,182 @@ "Jan Dudek" ] }, - "Web/API/Document/bgColor": { - "modified": "2019-03-23T23:46:49.050Z", + "Web/API/Document/location": { + "modified": "2019-03-23T23:40:07.769Z", "contributors": [ + "wojtekmaj", + "starsep", "teoli", - "AshfaqHossain", - "Internauta1024A", - "Ptak82", - "DR", + "jsx", "Jan Dudek" ] }, - "Web/API/Document/body": { - "modified": "2019-09-23T05:30:09.078Z", + "Web/API/Document/open": { + "modified": "2019-03-23T23:45:36.121Z", "contributors": [ "teoli", - "khalid32", - "Ptak82", - "DR", + "Mgjbot", + "Takenbot", "Jan Dudek" ] }, - "Web/API/Document/characterSet": { - "modified": "2019-03-23T23:46:53.146Z", + "Web/API/Document/plugins": { + "modified": "2019-03-23T23:40:08.263Z", "contributors": [ "teoli", "khalid32", - "Ptak82", - "DR", "Jan Dudek" ] }, - "Web/API/Document/clear": { - "modified": "2019-03-23T23:40:54.577Z", + "Web/API/Document/querySelector": { + "modified": "2019-09-25T05:40:56.515Z", "contributors": [ - "teoli", - "jsx", - "Ptak82", - "Jan Dudek" + "kotlarza", + "drm404", + "wkamel" ] }, - "Web/API/Document/close": { - "modified": "2019-03-23T23:40:56.546Z", + "Web/API/Document/referrer": { + "modified": "2019-03-23T23:40:08.156Z", "contributors": [ "teoli", - "arunpandianp", - "Ptak82", + "jsx", "Jan Dudek" ] }, - "Web/API/Document/compatMode": { - "modified": "2019-03-23T23:40:06.844Z", + "Web/API/Document/releaseCapture": { + "modified": "2019-03-23T22:51:58.125Z", "contributors": [ - "teoli", - "jsx", - "Jan Dudek" + "wkamel" ] }, - "Web/API/Document/cookie": { - "modified": "2019-03-23T23:46:52.193Z", + "Web/API/Document/title": { + "modified": "2019-03-23T23:46:33.369Z", "contributors": [ - "kanapka94", "teoli", - "AshfaqHossain", - "DR", + "khalid32", + "Diablownik", + "Ptak82", "Jan Dudek" ] }, - "Web/API/Document/createAttribute": { - "modified": "2019-03-23T23:41:42.200Z", + "Web/API/Document/vlinkColor": { + "modified": "2019-03-23T23:40:08.777Z", "contributors": [ "teoli", - "jsx", - "Jan Dudek", - "Ptak82", - "Takenbot", - "Filemon" + "khalid32", + "Jan Dudek" ] }, - "Web/API/Document/createDocumentFragment": { - "modified": "2019-03-23T23:42:17.514Z", + "Web/API/Document/width": { + "modified": "2019-03-23T23:42:18.267Z", "contributors": [ - "elszczepano", "teoli", - "khalid32", - "Diablownik", + "AshfaqHossain", "Ptak82", "Jan Dudek" ] }, - "Web/API/Document/createElement": { - "modified": "2019-11-19T12:43:51.177Z", + "Web/API/Document/write": { + "modified": "2019-03-23T23:45:33.486Z", "contributors": [ - "svantetic", "teoli", "khalid32", "Mgjbot", - "Ptak82", "Takenbot", - "Sp", - "Anonymous", + "Ptak82", "Jan Dudek" ] }, - "Web/API/Document/createEvent": { - "modified": "2019-03-23T23:53:29.430Z", + "Web/API/Document/writeln": { + "modified": "2019-03-23T23:45:33.593Z", "contributors": [ "teoli", - "khalid32", - "safjanowski", "Mgjbot", - "Ptak82", "Jan Dudek" ] }, - "Web/API/Document/createRange": { - "modified": "2019-03-23T23:53:58.762Z", + "Web/API/Element": { + "modified": "2019-03-23T23:59:45.799Z", "contributors": [ + "pablovsky", + "fscholz", "teoli", "jsx", + "zarat", + "Spawnm", + "Artstk", + "Internauta1024A", "Mgjbot", - "Diablownik", "Ptak82", - "Internauta1024A" + "Jan Dudek", + "Takenbot" ] }, - "Web/API/Document/createTextNode": { - "modified": "2019-03-23T23:53:29.008Z", + "Web/API/Element/attributes": { + "modified": "2019-03-23T23:59:14.981Z", "contributors": [ - "Miras", "teoli", "khalid32", + "lukasz.jezierski", "Mgjbot", "Ptak82", - "Takenbot", "Jan Dudek" ] }, - "Web/API/Document/defaultView": { - "modified": "2019-03-23T23:46:22.957Z", - "contributors": [ - "teoli", - "khalid32", - "Bedi", - "Internauta1024A" - ] - }, - "Web/API/Document/designMode": { - "modified": "2020-10-15T22:17:27.531Z", - "contributors": [ - "bartosz-bieniek" - ] - }, - "Web/API/Document/doctype": { - "modified": "2019-03-23T23:40:08.493Z", + "Web/API/Element/classList": { + "modified": "2019-03-23T22:13:21.685Z", "contributors": [ - "teoli", - "khalid32", - "Jan Dudek" + "sunpietro", + "drm404" ] }, - "Web/API/Document/documentElement": { - "modified": "2019-07-01T06:22:54.142Z", + "Web/API/Element/className": { + "modified": "2019-03-24T00:13:14.914Z", "contributors": [ - "Cagestrike", "teoli", - "khalid32", + "arunpandianp", + "ethertank", + "dextra", "Mgjbot", - "Ptak82", - "Jan Dudek" + "Jan Dudek", + "Ptak82" ] }, - "Web/API/Document/domain": { - "modified": "2019-03-23T23:40:08.387Z", + "Web/API/Element/clientHeight": { + "modified": "2019-03-23T23:43:28.841Z", "contributors": [ "teoli", - "khalid32", - "Jan Dudek" - ] - }, - "Web/API/Document/drag_event": { - "modified": "2019-04-30T13:52:16.811Z", - "contributors": [ - "wbamberg", - "fscholz", - "malecki-se" + "basemnassar11", + "Mgjbot", + "Jan Dudek", + "Ptak82" ] }, - "Web/API/Document/embeds": { - "modified": "2019-03-23T23:47:42.954Z", + "Web/API/Element/clientWidth": { + "modified": "2019-03-23T23:46:23.455Z", "contributors": [ "teoli", "AshfaqHossain", - "Bedi", + "Mgjbot", "Ptak82", "Jan Dudek" ] }, - "Web/API/Document/execCommand": { - "modified": "2020-08-24T07:38:53.201Z", - "contributors": [ - "Lukortech", - "ja-pl" - ] - }, - "Web/API/Document/fgColor": { - "modified": "2019-03-23T23:40:08.011Z", + "Web/API/Element/getAttribute": { + "modified": "2019-03-23T23:53:09.147Z", "contributors": [ + "lotny", "teoli", "jsx", - "Jan Dudek" + "fx4waldi", + "Mgjbot", + "Jan Dudek", + "Takenbot" ] }, - "Web/API/Document/firstChild": { - "modified": "2019-03-23T23:53:15.004Z", + "Web/API/Element/getAttributeNS": { + "modified": "2019-03-23T23:53:11.173Z", "contributors": [ "teoli", "jsx", @@ -2031,151 +1486,111 @@ "Jan Dudek" ] }, - "Web/API/Document/forms": { - "modified": "2019-03-23T23:43:19.295Z", + "Web/API/Element/getAttributeNode": { + "modified": "2019-03-23T23:53:09.037Z", "contributors": [ "teoli", - "basemnassar11", + "mimzi_fahia", "Mgjbot", - "Ptak82", - "Jan Dudek" + "Jan Dudek", + "Ptak82" ] }, - "Web/API/Document/getElementById": { - "modified": "2019-03-23T23:45:59.363Z", + "Web/API/Element/getAttributeNodeNS": { + "modified": "2019-03-23T23:54:11.116Z", "contributors": [ - "xmentor", + "SphinxKnight", "teoli", "khalid32", - "Ptak82", "Mgjbot", - "Takenbot", - "Jan Dudek" + "Diablownik", + "Ptak82" ] }, - "Web/API/Document/getElementsByClassName": { - "modified": "2019-03-18T21:37:45.960Z", + "Web/API/Element/getBoundingClientRect": { + "modified": "2020-02-24T10:38:00.432Z", "contributors": [ - "wioladys" + "mstaniuk", + "SphinxKnight", + "hckr", + "JCichon" ] }, - "Web/API/Document/getElementsByName": { - "modified": "2019-03-23T23:43:51.751Z", + "Web/API/Element/getElementsByTagNameNS": { + "modified": "2019-03-18T21:15:14.964Z", "contributors": [ + "SphinxKnight", "teoli", "khalid32", "Mgjbot", - "Ptak82", - "Jan Dudek" + "Bedi", + "Ptak82" ] }, - "Web/API/Document/getElementsByTagName": { - "modified": "2019-03-23T23:50:35.608Z", + "Web/API/Element/hasAttribute": { + "modified": "2019-03-23T23:53:12.029Z", "contributors": [ - "SphinxKnight", "teoli", - "mimzi_fahia", + "khalid32", "Mgjbot", - "Diablownik", - "Internauta1024A", + "Jan Dudek", "Ptak82" ] }, - "Web/API/Document/hasFocus": { - "modified": "2019-03-23T23:53:17.459Z", + "Web/API/Element/hasAttributeNS": { + "modified": "2019-03-23T23:53:19.883Z", "contributors": [ "teoli", "khalid32", "Mgjbot", - "Flaneur" - ] - }, - "Web/API/Document/head": { - "modified": "2019-03-23T22:40:15.808Z", - "contributors": [ - "maciejmarczak" - ] - }, - "Web/API/Document/height": { - "modified": "2019-03-23T23:42:16.598Z", - "contributors": [ - "teoli", - "mimzi_fahia", - "Ptak82", "Jan Dudek" ] }, - "Web/API/Document/images": { - "modified": "2019-03-24T00:04:17.670Z", + "Web/API/Element/hasAttributes": { + "modified": "2019-03-23T23:51:23.885Z", "contributors": [ "teoli", - "jsx", - "RAP1D", + "khalid32", + "Mgjbot", "Ptak82", - "Takenbot", "Jan Dudek" ] }, - "Web/API/Document/implementation": { - "modified": "2019-03-23T23:40:09.680Z", + "Web/API/Element/id": { + "modified": "2019-03-23T23:43:21.777Z", "contributors": [ "teoli", "jsx", - "Jan Dudek" - ] - }, - "Web/API/Document/importNode": { - "modified": "2019-03-23T23:49:15.469Z", - "contributors": [ - "wbamberg", - "SphinxKnight", - "PawelekS", - "teoli", - "khalid32", - "Sheppy", "Mgjbot", - "Internauta1024A", - "Ptak82" - ] - }, - "Web/API/Document/lastModified": { - "modified": "2019-03-23T23:40:08.879Z", - "contributors": [ - "teoli", - "khalid32", + "Ptak82", "Jan Dudek" ] }, - "Web/API/Document/linkColor": { - "modified": "2019-03-23T23:42:42.094Z", + "Web/API/Element/innerHTML": { + "modified": "2019-03-23T23:45:15.352Z", "contributors": [ + "Kitsune", "teoli", "khalid32", "Ptak82", + "Mgjbot", "Jan Dudek" ] }, - "Web/API/Document/links": { - "modified": "2019-03-23T23:51:18.977Z", + "Web/API/Element/insertAdjacentHTML": { + "modified": "2020-10-15T22:19:49.806Z", "contributors": [ - "teoli", - "khalid32", - "Mgjbot", - "Jan Dudek" + "RetupK" ] }, - "Web/API/Document/location": { - "modified": "2019-03-23T23:40:07.769Z", + "Web/API/Element/querySelector": { + "modified": "2019-03-23T22:10:41.126Z", "contributors": [ - "wojtekmaj", - "starsep", - "teoli", - "jsx", - "Jan Dudek" + "jdrobiecki" ] }, - "Web/API/Document/namespaceURI": { - "modified": "2019-03-23T23:44:00.886Z", + "Web/API/Element/removeAttribute": { + "modified": "2019-03-23T23:53:07.027Z", "contributors": [ "teoli", "khalid32", @@ -2184,4963 +1599,5190 @@ "Jan Dudek" ] }, - "Web/API/Document/open": { - "modified": "2019-03-23T23:45:36.121Z", + "Web/API/Element/removeAttributeNS": { + "modified": "2019-03-23T23:54:13.414Z", "contributors": [ "teoli", + "khalid32", "Mgjbot", - "Takenbot", "Jan Dudek" ] }, - "Web/API/Document/plugins": { - "modified": "2019-03-23T23:40:08.263Z", + "Web/API/Element/removeAttributeNode": { + "modified": "2019-03-23T23:53:09.733Z", "contributors": [ "teoli", "khalid32", + "Mgjbot", "Jan Dudek" ] }, - "Web/API/Document/querySelector": { - "modified": "2019-09-25T05:40:56.515Z", - "contributors": [ - "kotlarza", - "drm404", - "wkamel" - ] - }, - "Web/API/Document/referrer": { - "modified": "2019-03-23T23:40:08.156Z", - "contributors": [ - "teoli", - "jsx", - "Jan Dudek" - ] - }, - "Web/API/Document/releaseCapture": { - "modified": "2019-03-23T22:51:58.125Z", - "contributors": [ - "wkamel" - ] - }, - "Web/API/Document/styleSheets": { - "modified": "2019-03-23T23:48:20.614Z", + "Web/API/Element/scrollLeft": { + "modified": "2019-03-23T23:47:12.548Z", "contributors": [ "teoli", "jsx", - "Robson", "Mgjbot", - "Jan Dudek" + "Radek", + "Ptak82" ] }, - "Web/API/Document/title": { - "modified": "2019-03-23T23:46:33.369Z", + "Web/API/Element/scrollTop": { + "modified": "2019-03-23T23:47:13.917Z", "contributors": [ + "fscholz", "teoli", "khalid32", - "Diablownik", + "Wladimir_Palant", + "Mgjbot", "Ptak82", - "Jan Dudek" + "Diablownik", + "Radek" ] }, - "Web/API/Document/vlinkColor": { - "modified": "2019-03-23T23:40:08.777Z", + "Web/API/Element/scrollWidth": { + "modified": "2019-03-23T23:47:16.382Z", "contributors": [ "teoli", "khalid32", - "Jan Dudek" + "Mgjbot", + "Diablownik", + "Ptak82" ] }, - "Web/API/Document/width": { - "modified": "2019-03-23T23:42:18.267Z", + "Web/API/Element/setAttribute": { + "modified": "2019-03-23T23:53:08.874Z", "contributors": [ "teoli", - "AshfaqHossain", + "khalid32", + "Mgjbot", "Ptak82", - "Jan Dudek" + "Jan Dudek", + "Takenbot" ] }, - "Web/API/Document/write": { - "modified": "2019-03-23T23:45:33.486Z", + "Web/API/Element/setAttributeNS": { + "modified": "2019-03-23T23:53:02.997Z", "contributors": [ "teoli", "khalid32", "Mgjbot", - "Takenbot", "Ptak82", "Jan Dudek" ] }, - "Web/API/Document/writeln": { - "modified": "2019-03-23T23:45:33.593Z", + "Web/API/Element/setAttributeNode": { + "modified": "2019-03-23T23:53:19.350Z", "contributors": [ "teoli", + "khalid32", "Mgjbot", - "Jan Dudek" + "Jan Dudek", + "Ptak82" ] }, - "Web/API/Element": { - "modified": "2019-03-23T23:59:45.799Z", + "Web/API/Element/setAttributeNodeNS": { + "modified": "2019-03-23T23:54:17.865Z", "contributors": [ - "pablovsky", - "fscholz", "teoli", - "jsx", - "zarat", - "Spawnm", - "Artstk", - "Internauta1024A", + "AshfaqHossain", "Mgjbot", - "Ptak82", - "Jan Dudek", - "Takenbot" + "Diablownik", + "Ptak82" ] }, - "Web/API/Element/addEventListener": { - "modified": "2019-03-24T00:08:51.040Z", + "Web/API/Element/tagName": { + "modified": "2019-03-23T23:53:27.472Z", "contributors": [ "teoli", "khalid32", - "Kuzirashi", - "wojtiku", - "jarekps", - "pim", - "dj100", "Mgjbot", - "Ptak82", - "Jaki", - "Internauta1024A", - "Bedi" + "Jan Dudek", + "Ptak82" ] }, - "Web/API/Element/appendChild": { - "modified": "2019-03-24T00:09:45.110Z", + "Web/API/Event": { + "modified": "2020-03-06T04:03:57.947Z", "contributors": [ - "Miras", + "dkarski", "teoli", "jsx", - "eryk.piast", "Mgjbot", "Ptak82", "Jan Dudek", "Takenbot" ] }, - "Web/API/Element/attributes": { - "modified": "2019-03-23T23:59:14.981Z", + "Web/API/Event/bubbles": { + "modified": "2019-03-23T23:50:27.106Z", "contributors": [ "teoli", - "khalid32", - "lukasz.jezierski", + "xuancanh", "Mgjbot", - "Ptak82", - "Jan Dudek" + "Jan Dudek", + "Ptak82" ] }, - "Web/API/Element/blur": { - "modified": "2019-03-23T23:47:16.796Z", + "Web/API/Event/cancelable": { + "modified": "2019-09-16T10:39:42.766Z", "contributors": [ + "Sturmpl", "teoli", - "jsx", + "khalid32", "Mgjbot", - "Ptak82", - "Jan Dudek" + "Jan Dudek", + "Ptak82" ] }, - "Web/API/Element/childNodes": { - "modified": "2019-03-23T23:42:38.458Z", - "contributors": [ + "Web/API/Event/currentTarget": { + "modified": "2019-03-23T23:41:15.144Z", + "contributors": [ "teoli", - "mimzi_fahia", - "Mgjbot", + "khalid32", "Jan Dudek", "Ptak82" ] }, - "Web/API/Element/classList": { - "modified": "2019-03-23T22:13:21.685Z", + "Web/API/Event/eventPhase": { + "modified": "2019-03-23T23:41:12.078Z", "contributors": [ - "sunpietro", - "drm404" + "teoli", + "Hasilt", + "Jan Dudek", + "Ptak82" ] }, - "Web/API/Element/className": { - "modified": "2019-03-24T00:13:14.914Z", + "Web/API/Event/initEvent": { + "modified": "2019-03-23T23:53:19.999Z", "contributors": [ "teoli", - "arunpandianp", - "ethertank", - "dextra", + "jsx", "Mgjbot", "Jan Dudek", "Ptak82" ] }, - "Web/API/Element/click": { - "modified": "2019-03-23T23:47:17.142Z", + "Web/API/Event/stopPropagation": { + "modified": "2019-03-23T23:53:29.225Z", "contributors": [ "teoli", - "jsx", + "khalid32", "Mgjbot", "Ptak82", "Jan Dudek" ] }, - "Web/API/Element/clientHeight": { - "modified": "2019-03-23T23:43:28.841Z", + "Web/API/Event/target": { + "modified": "2019-03-23T23:41:14.765Z", "contributors": [ "teoli", - "basemnassar11", - "Mgjbot", + "jsx", "Jan Dudek", "Ptak82" ] }, - "Web/API/Element/clientNode": { - "modified": "2019-03-23T23:50:53.176Z", - "contributors": [ - "teoli", - "khalid32", - "Ptak82", - "Mgjbot", - "Jan Dudek" - ] - }, - "Web/API/Element/clientWidth": { - "modified": "2019-03-23T23:46:23.455Z", + "Web/API/Event/timeStamp": { + "modified": "2019-03-23T23:43:52.115Z", "contributors": [ "teoli", - "AshfaqHossain", - "Mgjbot", + "Hasilt", "Ptak82", "Jan Dudek" ] }, - "Web/API/Element/dir": { - "modified": "2019-03-24T00:13:13.769Z", + "Web/API/Event/type": { + "modified": "2019-03-23T23:41:14.851Z", "contributors": [ "teoli", "jsx", - "ethertank", - "dextra", - "Mgjbot", "Jan Dudek", "Ptak82" ] }, - "Web/API/Element/dispatchEvent": { - "modified": "2019-04-01T06:05:09.437Z", + "Web/API/File": { + "modified": "2020-10-15T22:09:34.281Z", "contributors": [ - "piotrgredowski", - "teoli", - "xuancanh", - "Mgjbot", - "Ptak82", - "Jan Dudek" + "chrisdavidmills" ] }, - "Web/API/Element/firstChild": { - "modified": "2020-10-29T05:55:32.180Z", + "Web/API/File/File": { + "modified": "2020-10-15T22:09:35.051Z", "contributors": [ - "dk333", - "teoli", - "khalid32", - "Mgjbot", - "Ptak82", - "Jan Dudek" + "mat-bi" ] }, - "Web/API/Element/focus": { - "modified": "2019-03-23T23:47:17.621Z", + "Web/API/Geolocation_API": { + "modified": "2020-10-28T03:32:31.226Z", "contributors": [ - "teoli", - "jsx", - "Mgjbot", - "Ptak82", - "Jan Dudek" + "SphinxKnight", + "FILIP", + "Justyna1709" ] }, - "Web/API/Element/getAttribute": { - "modified": "2019-03-23T23:53:09.147Z", + "Web/API/GlobalEventHandlers": { + "modified": "2019-03-18T21:40:36.589Z", "contributors": [ - "lotny", - "teoli", - "jsx", - "fx4waldi", - "Mgjbot", - "Jan Dudek", - "Takenbot" + "chrisdavidmills" ] }, - "Web/API/Element/getAttributeNS": { - "modified": "2019-03-23T23:53:11.173Z", + "Web/API/GlobalEventHandlers/onblur": { + "modified": "2020-10-15T22:17:26.802Z", "contributors": [ - "teoli", - "jsx", - "Mgjbot", - "Jan Dudek" + "mateuszpigula", + "bartosz-bieniek" ] }, - "Web/API/Element/getAttributeNode": { - "modified": "2019-03-23T23:53:09.037Z", + "Web/API/GlobalEventHandlers/onfocus": { + "modified": "2020-10-15T22:17:27.888Z", "contributors": [ - "teoli", - "mimzi_fahia", - "Mgjbot", - "Jan Dudek", - "Ptak82" + "bartosz-bieniek" ] }, - "Web/API/Element/getAttributeNodeNS": { - "modified": "2019-03-23T23:54:11.116Z", + "Web/API/HTMLCanvasElement": { + "modified": "2020-10-15T22:04:15.653Z", "contributors": [ - "SphinxKnight", - "teoli", - "khalid32", - "Mgjbot", - "Diablownik", - "Ptak82" + "JKarkosza" ] }, - "Web/API/Element/getBoundingClientRect": { - "modified": "2020-02-24T10:38:00.432Z", + "Web/API/HTMLCanvasElement/captureStream": { + "modified": "2020-10-15T22:04:15.570Z", "contributors": [ - "mstaniuk", - "SphinxKnight", - "hckr", - "JCichon" + "JKarkosza" ] }, - "Web/API/Element/getElementsByTagNameNS": { - "modified": "2019-03-18T21:15:14.964Z", + "Web/API/HTMLCanvasElement/getContext": { + "modified": "2020-10-15T22:04:15.391Z", "contributors": [ - "SphinxKnight", - "teoli", - "khalid32", - "Mgjbot", - "Bedi", - "Ptak82" + "mfijas", + "JKarkosza" ] }, - "Web/API/Element/hasAttribute": { - "modified": "2019-03-23T23:53:12.029Z", + "Web/API/HTMLCanvasElement/height": { + "modified": "2020-10-15T22:04:14.436Z", "contributors": [ - "teoli", - "khalid32", - "Mgjbot", - "Jan Dudek", - "Ptak82" + "JKarkosza" ] }, - "Web/API/Element/hasAttributeNS": { - "modified": "2019-03-23T23:53:19.883Z", + "Web/API/HTMLCanvasElement/width": { + "modified": "2020-10-15T22:04:14.229Z", "contributors": [ - "teoli", - "khalid32", - "Mgjbot", - "Jan Dudek" + "JKarkosza" ] }, - "Web/API/Element/hasAttributes": { - "modified": "2019-03-23T23:51:23.885Z", + "Web/API/HTMLElement": { + "modified": "2019-03-23T22:20:54.754Z", "contributors": [ - "teoli", - "khalid32", - "Mgjbot", - "Ptak82", - "Jan Dudek" + "fscholz" ] }, - "Web/API/Element/hasChildNodes": { - "modified": "2019-03-23T23:54:18.316Z", + "Web/API/HTMLFormElement": { + "modified": "2019-03-23T23:45:33.731Z", "contributors": [ "teoli", "jsx", "Mgjbot", + "Internauta1024A", "Ptak82", "Jan Dudek" ] }, - "Web/API/Element/id": { - "modified": "2019-03-23T23:43:21.777Z", + "Web/API/HTMLFormElement/acceptCharset": { + "modified": "2019-03-23T23:45:22.103Z", "contributors": [ "teoli", - "jsx", - "Mgjbot", + "Hasilt", "Ptak82", - "Jan Dudek" + "Internauta1024A" ] }, - "Web/API/Element/innerHTML": { - "modified": "2019-03-23T23:45:15.352Z", + "Web/API/HTMLFormElement/action": { + "modified": "2019-03-23T23:45:18.298Z", "contributors": [ - "Kitsune", "teoli", - "khalid32", + "jsx", "Ptak82", - "Mgjbot", - "Jan Dudek" - ] - }, - "Web/API/Element/insertAdjacentHTML": { - "modified": "2020-10-15T22:19:49.806Z", - "contributors": [ - "RetupK" + "Internauta1024A" ] }, - "Web/API/Element/insertBefore": { - "modified": "2019-03-23T23:53:18.476Z", + "Web/API/HTMLFormElement/elements": { + "modified": "2019-03-23T23:43:17.456Z", "contributors": [ - "Suiseki", "teoli", - "jsx", + "khalid32", "Mgjbot", - "Ptak82", - "gandalf" + "Jan Dudek" ] }, - "Web/API/Element/lang": { - "modified": "2019-03-23T23:46:43.485Z", + "Web/API/HTMLFormElement/encoding": { + "modified": "2019-03-23T23:47:01.703Z", "contributors": [ "teoli", - "xuancanh", - "Mgjbot", - "WadimdD", + "khalid32", + "Internauta1024A", "Ptak82" ] }, - "Web/API/Element/lastChild": { - "modified": "2019-03-23T23:54:13.899Z", + "Web/API/HTMLFormElement/enctype": { + "modified": "2019-03-23T23:45:16.218Z", "contributors": [ "teoli", "khalid32", - "Mgjbot", - "Jan Dudek", - "Ptak82" + "Ptak82", + "Internauta1024A" ] }, - "Web/API/Element/length": { - "modified": "2019-03-23T23:43:22.970Z", + "Web/API/HTMLFormElement/length": { + "modified": "2019-03-23T23:45:16.769Z", "contributors": [ "teoli", "khalid32", - "Mgjbot", - "Jan Dudek", - "Ptak82" + "Ptak82", + "Internauta1024A" ] }, - "Web/API/Element/localName": { - "modified": "2019-03-23T23:46:58.657Z", + "Web/API/HTMLFormElement/method": { + "modified": "2019-03-23T23:59:17.843Z", "contributors": [ "teoli", - "khalid32", - "Mgjbot", + "Hasilt", + "drry", "Ptak82", - "Jan Dudek" + "Internauta1024A" ] }, - "Web/API/Element/name": { - "modified": "2019-03-24T00:13:13.340Z", + "Web/API/HTMLFormElement/name": { + "modified": "2019-03-23T23:45:22.472Z", "contributors": [ "teoli", - "khalid32", - "dextra", - "Mgjbot", - "Jan Dudek", - "Ptak82" + "soumya", + "Ptak82", + "Internauta1024A" ] }, - "Web/API/Element/namespaceURI": { - "modified": "2019-03-23T23:46:57.209Z", + "Web/API/HTMLFormElement/reset": { + "modified": "2019-03-23T23:46:56.417Z", "contributors": [ "teoli", - "khalid32", - "Mgjbot", - "Jan Dudek", + "Jeremie", + "Internauta1024A", + "Diablownik", "Ptak82" ] }, - "Web/API/Element/nextSibling": { - "modified": "2019-03-23T23:53:02.853Z", + "Web/API/HTMLFormElement/submit": { + "modified": "2019-03-23T23:46:56.512Z", "contributors": [ "teoli", "khalid32", - "Mgjbot", - "Ptak82", - "Jan Dudek" + "Internauta1024A", + "Ptak82" ] }, - "Web/API/Element/nodeName": { - "modified": "2019-03-23T23:50:31.981Z", + "Web/API/HTMLFormElement/target": { + "modified": "2019-03-23T23:47:01.275Z", "contributors": [ "teoli", - "jsx", - "Mgjbot", - "Jan Dudek", + "basemnassar11", + "Internauta1024A", "Ptak82" ] }, - "Web/API/Element/nodeType": { - "modified": "2019-03-23T23:49:33.390Z", + "Web/API/HTMLIFrameElement": { + "modified": "2019-07-30T13:30:29.361Z", "contributors": [ - "teoli", - "jsx", - "ethertank", - "Mgjbot", - "Jan Dudek", - "Ptak82" + "wbamberg", + "KubaKaszycki" ] }, - "Web/API/Element/nodeValue": { - "modified": "2019-03-24T00:13:13.193Z", + "Web/API/HTMLSelectElement": { + "modified": "2020-10-15T22:29:38.928Z", + "contributors": [ + "Loadmaster" + ] + }, + "Web/API/HTMLTableElement": { + "modified": "2019-03-23T23:46:11.801Z", "contributors": [ "teoli", - "arunpandianp", + "khalid32", "ethertank", - "dextra", "Mgjbot", - "Jan Dudek", - "Ptak82" + "Ptak82", + "WadimdD" ] }, - "Web/API/Element/normalize": { - "modified": "2019-03-23T23:47:08.491Z", + "Web/API/HTMLTableElement/caption": { + "modified": "2019-03-23T23:44:50.983Z", "contributors": [ "teoli", - "mimzi_fahia", + "khalid32", "Mgjbot", - "Diablownik", + "WadimdD", "Ptak82" ] }, - "Web/API/Element/offsetHeight": { - "modified": "2019-03-23T23:47:13.144Z", + "Web/API/HTMLTableElement/tFoot": { + "modified": "2019-03-23T23:42:17.839Z", "contributors": [ - "fscholz", "teoli", "khalid32", - "Mgjbot", - "Internauta1024A", "Ptak82" ] }, - "Web/API/Element/offsetLeft": { - "modified": "2019-03-23T23:49:30.218Z", + "Web/API/HTMLTableElement/tHead": { + "modified": "2019-03-23T23:42:32.260Z", "contributors": [ - "SphinxKnight", "teoli", "khalid32", - "Diablownik", - "Mgjbot", "Ptak82" ] }, - "Web/API/Element/offsetParent": { - "modified": "2019-03-23T23:47:41.365Z", + "Web/API/Location": { + "modified": "2020-10-15T22:10:01.975Z", "contributors": [ - "teoli", - "xuancanh", - "Ptak82", - "Tomekperlak", - "Mgjbot", - "Internauta1024A" + "mfuji09" ] }, - "Web/API/Element/offsetWidth": { - "modified": "2019-03-24T00:18:05.704Z", + "Web/API/Location/reload": { + "modified": "2020-10-15T22:10:04.816Z", "contributors": [ - "SphinxKnight", - "teoli", - "AshfaqHossain", - "Sprintserwis", - "Maciekp", - "Mgjbot", - "Ptak82", - "Internauta1024A" + "kanapka94" ] }, - "Web/API/Element/onclick": { - "modified": "2019-03-24T00:04:00.144Z", + "Web/API/MIDIAccess": { + "modified": "2020-10-15T21:59:50.243Z", "contributors": [ - "teoli", - "AshfaqHossain", - "fscholz", - "Bedi", - "Jan Dudek" + "bershanskiy", + "skoczy" ] }, - "Web/API/Element/onkeypress": { - "modified": "2019-03-23T23:41:39.155Z", + "Web/API/MediaElementAudioSourceNode": { + "modified": "2020-10-15T22:28:39.656Z", + "contributors": [ + "dawidos2017r" + ] + }, + "Web/API/MouseScrollEvent": { + "modified": "2019-03-18T21:09:03.294Z", "contributors": [ + "fscholz", "teoli", - "khalid32", - "Jan Dudek" + "iwona1111" ] }, - "Web/API/Element/onkeyup": { - "modified": "2019-03-23T23:46:25.129Z", + "Web/API/Navigator": { + "modified": "2019-03-23T23:01:33.543Z", + "contributors": [ + "wbamberg", + "teoli" + ] + }, + "Web/API/Navigator/buildID": { + "modified": "2019-03-23T23:49:19.070Z", "contributors": [ "teoli", - "AshfaqHossain", + "khalid32", "Mgjbot", - "Jan Dudek" + "Diablownik" ] }, - "Web/API/Element/onmousedown": { - "modified": "2019-03-23T23:47:20.727Z", + "Web/API/Navigator/cookieEnabled": { + "modified": "2019-03-23T23:49:23.555Z", "contributors": [ "teoli", - "jsx", - "Bedi", + "khalid32", "Mgjbot", - "Ptak82" + "Diablownik" ] }, - "Web/API/Element/onmousemove": { - "modified": "2019-03-24T00:00:26.392Z", + "Web/API/Navigator/oscpu": { + "modified": "2019-03-23T23:49:31.983Z", "contributors": [ - "SphinxKnight", "teoli", - "Hasilt", - "mwysinski", - "Bedi" + "AshfaqHossain", + "Mgjbot", + "Diablownik" ] }, - "Web/API/Element/ownerDocument": { - "modified": "2019-03-23T23:53:12.643Z", + "Web/API/Navigator/productSub": { + "modified": "2019-03-23T23:49:31.506Z", "contributors": [ "teoli", "khalid32", "Mgjbot", - "Ptak82", - "Jan Dudek" + "Diablownik" ] }, - "Web/API/Element/parentNode": { - "modified": "2019-03-23T23:53:27.343Z", + "Web/API/Navigator/registerContentHandler": { + "modified": "2019-03-23T23:51:33.038Z", "contributors": [ "teoli", "khalid32", + "Diablownik", "Mgjbot", - "Ptak82", - "Jan Dudek", - "Takenbot" + "Marcoos", + "Ptak82" ] }, - "Web/API/Element/prefix": { - "modified": "2019-03-23T23:47:17.259Z", + "Web/API/Navigator/registerProtocolHandler": { + "modified": "2019-03-23T23:52:37.570Z", "contributors": [ "teoli", "jsx", - "Mgjbot", - "Ptak82", - "Jan Dudek" + "Marcoos", + "Flaneur", + "Mgjbot" ] }, - "Web/API/Element/previousSibling": { - "modified": "2019-03-23T23:53:06.046Z", + "Web/API/Navigator/registerProtocolHandler/Web-based_protocol_handlers": { + "modified": "2019-03-23T23:52:41.449Z", "contributors": [ - "teoli", - "khalid32", - "Mgjbot", - "Pitoutompoilu", - "Ptak82", - "Jan Dudek" + "chrisdavidmills", + "Witia", + "Marcoos", + "Flaneur" ] }, - "Web/API/Element/querySelector": { - "modified": "2019-03-23T22:10:41.126Z", + "Web/API/NavigatorLanguage": { + "modified": "2019-03-23T23:01:34.390Z", "contributors": [ - "jdrobiecki" + "maniekbarty", + "teoli" ] }, - "Web/API/Element/removeAttribute": { - "modified": "2019-03-23T23:53:07.027Z", + "Web/API/NavigatorOnLine": { + "modified": "2019-03-23T23:01:33.822Z", "contributors": [ - "teoli", - "khalid32", - "Mgjbot", - "Ptak82", - "Jan Dudek" + "teoli" ] }, - "Web/API/Element/removeAttributeNS": { - "modified": "2019-03-23T23:54:13.414Z", + "Web/API/NavigatorPlugins": { + "modified": "2019-03-23T23:01:33.358Z", "contributors": [ - "teoli", - "khalid32", - "Mgjbot", - "Jan Dudek" + "teoli" ] }, - "Web/API/Element/removeAttributeNode": { - "modified": "2019-03-23T23:53:09.733Z", + "Web/API/ParentNode": { + "modified": "2020-10-15T22:19:13.921Z" + }, + "Web/API/ParentNode/childElementCount": { + "modified": "2020-10-15T22:19:13.324Z", "contributors": [ - "teoli", - "khalid32", - "Mgjbot", - "Jan Dudek" + "kaka0204", + "SurmaAa" ] }, - "Web/API/Element/removeChild": { - "modified": "2019-03-23T23:59:03.482Z", + "Web/API/ParentNode/children": { + "modified": "2020-10-29T07:01:42.075Z", + "contributors": [ + "dk333" + ] + }, + "Web/API/Push_API": { + "modified": "2019-03-23T22:08:29.784Z", + "contributors": [ + "prograamer" + ] + }, + "Web/API/Range": { + "modified": "2019-03-23T23:45:35.004Z", "contributors": [ + "SphinxKnight", "teoli", "khalid32", - "azrael_valedhel", "Mgjbot", - "Uryga", "Ptak82", - "Jan Dudek" + "Internauta1024A" ] }, - "Web/API/Element/replaceChild": { - "modified": "2019-03-23T23:54:13.730Z", + "Web/API/Response": { + "modified": "2020-10-15T22:26:26.518Z", "contributors": [ - "teoli", - "xuancanh", - "Mgjbot", - "Ptak82", - "Jan Dudek" + "ZaneHannanAU" ] }, - "Web/API/Element/scrollLeft": { - "modified": "2019-03-23T23:47:12.548Z", + "Web/API/Screen": { + "modified": "2019-03-23T23:01:31.157Z", + "contributors": [ + "teoli" + ] + }, + "Web/API/Screen/colorDepth": { + "modified": "2019-03-23T23:50:21.916Z", "contributors": [ "teoli", "jsx", "Mgjbot", - "Radek", - "Ptak82" + "Diablownik", + "Ptak82", + "Internauta1024A" ] }, - "Web/API/Element/scrollTop": { - "modified": "2019-03-23T23:47:13.917Z", + "Web/API/Screen/width": { + "modified": "2019-03-18T21:45:10.635Z", "contributors": [ - "fscholz", + "kasztan" + ] + }, + "Web/API/Selection": { + "modified": "2019-03-23T23:48:09.616Z", + "contributors": [ + "SphinxKnight", "teoli", "khalid32", - "Wladimir_Palant", "Mgjbot", - "Ptak82", + "Gocio", + "DR", "Diablownik", - "Radek" + "Rev", + "Ptak82", + "Internauta1024A" ] }, - "Web/API/Element/scrollWidth": { - "modified": "2019-03-23T23:47:16.382Z", + "Web/API/Selection/addRange": { + "modified": "2019-03-23T23:46:47.578Z", "contributors": [ "teoli", "khalid32", "Mgjbot", - "Diablownik", - "Ptak82" + "DR", + "Rev" ] }, - "Web/API/Element/setAttribute": { - "modified": "2019-03-23T23:53:08.874Z", + "Web/API/Selection/anchorNode": { + "modified": "2019-03-23T23:47:25.872Z", "contributors": [ "teoli", "khalid32", + "Gocio", "Mgjbot", - "Ptak82", - "Jan Dudek", - "Takenbot" + "DR", + "Rev" ] }, - "Web/API/Element/setAttributeNS": { - "modified": "2019-03-23T23:53:02.997Z", + "Web/API/Selection/anchorOffset": { + "modified": "2019-03-23T23:46:54.375Z", "contributors": [ "teoli", - "khalid32", + "jsx", "Mgjbot", "Ptak82", - "Jan Dudek" + "Rev" ] }, - "Web/API/Element/setAttributeNode": { - "modified": "2019-03-23T23:53:19.350Z", + "Web/API/Selection/collapse": { + "modified": "2019-03-23T23:46:59.083Z", "contributors": [ "teoli", "khalid32", "Mgjbot", - "Jan Dudek", - "Ptak82" + "DR", + "Rev" ] }, - "Web/API/Element/setAttributeNodeNS": { - "modified": "2019-03-23T23:54:17.865Z", + "Web/API/Selection/collapseToEnd": { + "modified": "2019-03-23T23:46:58.778Z", "contributors": [ "teoli", - "AshfaqHossain", + "khalid32", "Mgjbot", - "Diablownik", - "Ptak82" + "DR", + "Rev" ] }, - "Web/API/Element/style": { - "modified": "2019-03-23T23:56:38.082Z", + "Web/API/Selection/collapseToStart": { + "modified": "2019-03-23T23:47:02.825Z", "contributors": [ - "lotny", - "SphinxKnight", "teoli", "jsx", - "obelyx", - "Ptak82", "Mgjbot", - "Jan Dudek" + "DR", + "Rev" ] }, - "Web/API/Element/tabIndex": { - "modified": "2019-03-24T00:13:11.171Z", + "Web/API/Selection/containsNode": { + "modified": "2019-03-23T23:46:53.862Z", "contributors": [ "teoli", - "arunpandianp", - "ethertank", - "dextra", + "khalid32", "Mgjbot", - "Jan Dudek", - "Ptak82" + "DR", + "Rev" ] }, - "Web/API/Element/tagName": { - "modified": "2019-03-23T23:53:27.472Z", + "Web/API/Selection/deleteFromDocument": { + "modified": "2019-03-23T23:46:48.061Z", "contributors": [ "teoli", "khalid32", "Mgjbot", - "Jan Dudek", - "Ptak82" + "DR", + "Rev" ] }, - "Web/API/Element/textContent": { - "modified": "2019-03-23T23:47:17.523Z", + "Web/API/Selection/extend": { + "modified": "2019-03-23T23:46:50.880Z", "contributors": [ "teoli", "khalid32", "Mgjbot", - "Jan Dudek" + "DR", + "Rev" ] }, - "Web/API/Event": { - "modified": "2020-03-06T04:03:57.947Z", + "Web/API/Selection/focusNode": { + "modified": "2019-03-23T23:46:47.086Z", "contributors": [ - "dkarski", "teoli", "jsx", - "Mgjbot", + "DR", "Ptak82", - "Jan Dudek", - "Takenbot" + "Rev" ] }, - "Web/API/Event/altKey": { - "modified": "2019-03-23T23:48:10.716Z", + "Web/API/Selection/focusOffset": { + "modified": "2019-03-23T23:46:50.243Z", "contributors": [ "teoli", - "jsx", + "mimzi_fahia", "Mgjbot", - "Jan Dudek", - "Ptak82" + "DR", + "Ptak82", + "Rev" ] }, - "Web/API/Event/bubbles": { - "modified": "2019-03-23T23:50:27.106Z", + "Web/API/Selection/getRangeAt": { + "modified": "2019-03-23T23:46:47.678Z", "contributors": [ "teoli", - "xuancanh", - "Mgjbot", - "Jan Dudek", - "Ptak82" + "khalid32", + "DR", + "Diablownik", + "Rev" ] }, - "Web/API/Event/button": { - "modified": "2019-03-23T23:48:07.041Z", + "Web/API/Selection/isCollapsed": { + "modified": "2019-03-23T23:46:51.749Z", "contributors": [ "teoli", - "jsx", - "Mgjbot", - "Jan Dudek", - "Ptak82" + "khalid32", + "DR", + "Ptak82", + "Rev" ] }, - "Web/API/Event/cancelBubble": { - "modified": "2019-03-23T23:41:11.564Z", + "Web/API/Selection/rangeCount": { + "modified": "2019-03-23T23:46:49.626Z", "contributors": [ "teoli", - "basemnassar11", - "Jan Dudek", - "Ptak82" + "jsx", + "DR", + "Diablownik", + "Rev" ] }, - "Web/API/Event/cancelable": { - "modified": "2019-09-16T10:39:42.766Z", + "Web/API/Selection/removeAllRanges": { + "modified": "2019-03-23T23:46:51.877Z", "contributors": [ - "Sturmpl", "teoli", "khalid32", "Mgjbot", - "Jan Dudek", - "Ptak82" + "DR", + "Rev" ] }, - "Web/API/Event/charCode": { - "modified": "2019-03-23T23:41:15.040Z", + "Web/API/Selection/removeRange": { + "modified": "2019-03-23T23:46:49.730Z", "contributors": [ "teoli", - "mimzi_fahia", - "Jan Dudek", - "Ptak82" + "khalid32", + "Mgjbot", + "Rev" ] }, - "Web/API/Event/clientX": { - "modified": "2019-03-23T23:41:14.486Z", + "Web/API/Selection/selectAllChildren": { + "modified": "2019-03-23T23:46:48.182Z", "contributors": [ "teoli", - "jsx", - "Jan Dudek", - "Ptak82" + "khalid32", + "Mgjbot", + "DR", + "Rev" ] }, - "Web/API/Event/clientY": { - "modified": "2019-03-23T23:41:13.474Z", + "Web/API/Selection/toString": { + "modified": "2019-03-23T23:47:22.838Z", "contributors": [ "teoli", - "jsx", - "Jan Dudek", - "Ptak82" + "khalid32", + "Mgjbot", + "DR", + "Rev" ] }, - "Web/API/Event/ctrlKey": { - "modified": "2019-03-23T23:41:13.226Z", + "Web/API/SpeechRecognition": { + "modified": "2020-10-15T22:25:11.426Z", "contributors": [ - "teoli", - "khalid32", - "Jan Dudek", - "Ptak82" + "malarium" ] }, - "Web/API/Event/currentTarget": { - "modified": "2019-03-23T23:41:15.144Z", + "Web/API/Stylesheet/disabled": { + "modified": "2019-03-23T23:45:18.937Z", "contributors": [ "teoli", "khalid32", - "Jan Dudek", - "Ptak82" + "Ptak82", + "Internauta1024A" ] }, - "Web/API/Event/eventPhase": { - "modified": "2019-03-23T23:41:12.078Z", + "Web/API/Stylesheet/href": { + "modified": "2019-03-23T23:45:21.729Z", "contributors": [ "teoli", - "Hasilt", - "Jan Dudek", + "jsx", + "Internauta1024A", "Ptak82" ] }, - "Web/API/Event/initEvent": { - "modified": "2019-03-23T23:53:19.999Z", + "Web/API/Stylesheet/media": { + "modified": "2019-03-23T23:45:22.570Z", "contributors": [ "teoli", "jsx", - "Mgjbot", - "Jan Dudek", - "Ptak82" + "Ptak82", + "Internauta1024A", + "Diablownik" ] }, - "Web/API/Event/initMouseEvent": { - "modified": "2019-03-23T23:50:26.012Z", + "Web/API/Stylesheet/parentStyleSheet": { + "modified": "2019-03-23T23:45:16.498Z", "contributors": [ "teoli", - "jsx", - "Mgjbot", + "mimzi_fahia", + "Diablownik", "Ptak82", - "Jan Dudek" + "Internauta1024A" ] }, - "Web/API/Event/initUIEvent": { - "modified": "2019-03-23T23:47:13.003Z", + "Web/API/Stylesheet/title": { + "modified": "2019-03-23T23:45:22.666Z", "contributors": [ "teoli", - "jsx", - "Bedi", - "Jan Dudek", - "Ptak82" + "khalid32", + "Ptak82", + "Internauta1024A" ] }, - "Web/API/Event/isChar": { - "modified": "2019-03-23T23:41:13.381Z", + "Web/API/Stylesheet/type": { + "modified": "2019-03-23T23:45:20.725Z", "contributors": [ "teoli", - "AshfaqHossain", - "Jan Dudek", - "Ptak82" + "khalid32", + "Ptak82", + "Internauta1024A" ] }, - "Web/API/Event/keyCode": { - "modified": "2019-03-23T23:41:14.121Z", + "Web/API/WebGL_API": { + "modified": "2019-03-23T22:58:02.050Z", "contributors": [ - "teoli", - "khalid32", - "Jan Dudek", - "Ptak82" + "dloranc", + "fscholz", + "michaldudak", + "odfdoodokdoudos", + "Dawid_Chmura_JWE", + "Trebor" ] }, - "Web/API/Event/layerX": { - "modified": "2019-03-23T23:41:12.332Z", + "Web/API/WebGL_API/Tutorial": { + "modified": "2019-03-23T22:48:53.045Z", "contributors": [ - "teoli", - "khalid32", - "Jan Dudek", - "Ptak82" + "fscholz" ] }, - "Web/API/Event/layerY": { - "modified": "2019-03-23T23:41:12.787Z", + "Web/API/Web_Audio_API": { + "modified": "2019-03-23T22:11:02.259Z", "contributors": [ - "teoli", - "jsx", - "Jan Dudek", - "Ptak82" + "drm404" ] }, - "Web/API/Event/metaKey": { - "modified": "2019-03-23T23:54:16.778Z", + "Web/API/Window": { + "modified": "2019-03-24T00:01:49.075Z", "contributors": [ + "SphinxKnight", "teoli", "khalid32", - "Dabear", - "Jan Dudek", - "Ptak82" + "Crash", + "Spawnm", + "Ptak82", + "Internauta1024A", + "Mgjbot", + "Diablownik", + "Takenbot", + "Jan Dudek" ] }, - "Web/API/Event/pageX": { - "modified": "2019-03-23T23:42:37.418Z", + "Web/API/Window/alert": { + "modified": "2019-03-23T23:50:36.690Z", "contributors": [ + "Sheppy", "teoli", - "khalid32", + "AshfaqHossain", "Mgjbot", - "Jan Dudek", - "Ptak82" + "Ptak82", + "Jan Dudek" ] }, - "Web/API/Event/pageY": { - "modified": "2019-03-23T23:41:13.568Z", + "Web/API/Window/applicationCache": { + "modified": "2019-03-23T22:47:53.352Z", "contributors": [ - "teoli", - "khalid32", - "Jan Dudek", - "Ptak82" + "Rafal2228" ] }, - "Web/API/Event/relatedTarget": { - "modified": "2019-03-23T23:41:15.246Z", + "Web/API/Window/closed": { + "modified": "2019-03-23T23:49:15.119Z", "contributors": [ "teoli", "khalid32", - "Jan Dudek", - "Ptak82" + "Mgjbot", + "Ptak82", + "Rev", + "Internauta1024A" ] }, - "Web/API/Event/screenX": { - "modified": "2019-03-23T23:41:13.675Z", + "Web/API/Window/content": { + "modified": "2019-03-23T23:49:47.503Z", "contributors": [ + "SphinxKnight", "teoli", - "khalid32", - "Jan Dudek", - "Ptak82" + "AshfaqHossain", + "Mgjbot", + "Ptak82", + "Internauta1024A" ] }, - "Web/API/Event/screenY": { - "modified": "2019-03-23T23:41:13.789Z", + "Web/API/Window/controllers": { + "modified": "2019-03-23T23:49:47.613Z", "contributors": [ "teoli", - "khalid32", - "Jan Dudek", - "Ptak82" + "jsx", + "Mgjbot", + "Internauta1024A" ] }, - "Web/API/Event/shiftKey": { - "modified": "2019-03-23T23:41:14.937Z", + "Web/API/Window/crypto": { + "modified": "2019-03-23T23:49:51.057Z", "contributors": [ "teoli", - "jsx", - "Jan Dudek", - "Ptak82" + "khalid32", + "Mgjbot", + "Ptak82", + "Internauta1024A" ] }, - "Web/API/Event/stopPropagation": { - "modified": "2019-03-23T23:53:29.225Z", + "Web/API/Window/defaultStatus": { + "modified": "2019-03-23T23:49:46.875Z", "contributors": [ "teoli", "khalid32", "Mgjbot", "Ptak82", - "Jan Dudek" + "Internauta1024A", + "Diablownik" ] }, - "Web/API/Event/target": { - "modified": "2019-03-23T23:41:14.765Z", + "Web/API/Window/directories": { + "modified": "2019-03-23T23:49:52.705Z", "contributors": [ "teoli", "jsx", - "Jan Dudek", - "Ptak82" + "Mgjbot", + "Internauta1024A" ] }, - "Web/API/Event/timeStamp": { - "modified": "2019-03-23T23:43:52.115Z", + "Web/API/Window/document": { + "modified": "2019-03-23T23:49:48.901Z", "contributors": [ "teoli", - "Hasilt", + "khalid32", + "Mgjbot", "Ptak82", + "Internauta1024A", "Jan Dudek" ] }, - "Web/API/Event/type": { - "modified": "2019-03-23T23:41:14.851Z", + "Web/API/Window/dump": { + "modified": "2019-03-23T23:47:00.449Z", "contributors": [ "teoli", - "jsx", - "Jan Dudek", - "Ptak82" + "AshfaqHossain", + "Mgjbot", + "Marcoos", + "Jan Dudek" ] }, - "Web/API/Event/view": { - "modified": "2019-03-23T23:41:50.711Z", + "Web/API/Window/focus": { + "modified": "2019-03-23T23:50:59.887Z", "contributors": [ "teoli", "khalid32", + "Mgjbot", "Ptak82", - "Jan Dudek" + "Robson" ] }, - "Web/API/File": { - "modified": "2020-10-15T22:09:34.281Z", + "Web/API/Window/frameElement": { + "modified": "2019-03-23T23:49:48.399Z", "contributors": [ - "chrisdavidmills" + "teoli", + "AshfaqHossain", + "Mgjbot", + "Diablownik", + "Internauta1024A" ] }, - "Web/API/File/File": { - "modified": "2020-10-15T22:09:35.051Z", + "Web/API/Window/frames": { + "modified": "2019-03-23T23:49:53.479Z", "contributors": [ - "mat-bi" + "teoli", + "jsx", + "Mgjbot", + "Internauta1024A", + "Ptak82" ] }, - "Web/API/Geolocation_API": { - "modified": "2020-10-28T03:32:31.226Z", + "Web/API/Window/getSelection": { + "modified": "2019-03-23T23:48:14.523Z", "contributors": [ - "SphinxKnight", - "FILIP", - "Justyna1709" + "teoli", + "jsx", + "Mgjbot", + "Witia", + "Ptak82", + "Rev" ] }, - "Web/API/GlobalEventHandlers": { - "modified": "2019-03-18T21:40:36.589Z", + "Web/API/Window/localStorage": { + "modified": "2019-03-23T22:47:52.730Z", "contributors": [ - "chrisdavidmills" + "marcinru", + "Rafal2228" ] }, - "Web/API/GlobalEventHandlers/onblur": { - "modified": "2020-10-15T22:17:26.802Z", + "Web/API/Window/name": { + "modified": "2019-03-23T23:49:59.062Z", "contributors": [ - "mateuszpigula", - "bartosz-bieniek" + "teoli", + "jsx", + "Mgjbot", + "Ptak82", + "Robson" ] }, - "Web/API/GlobalEventHandlers/onfocus": { - "modified": "2020-10-15T22:17:27.888Z", + "Web/API/Window/navigator": { + "modified": "2019-03-23T23:49:11.084Z", "contributors": [ - "bartosz-bieniek" + "SphinxKnight", + "teoli", + "AshfaqHossain", + "Mgjbot", + "Diablownik", + "Ptak82" ] }, - "Web/API/HTMLCanvasElement": { - "modified": "2020-10-15T22:04:15.653Z", + "Web/API/Window/open": { + "modified": "2019-03-23T23:13:16.656Z", "contributors": [ - "JKarkosza" + "SphinxKnight", + "jigs12", + "fscholz", + "teoli", + "khalid32", + "Gompka", + "GT", + "Elwiz", + "Mgjbot", + "Ptak82", + "Jan Dudek" ] }, - "Web/API/HTMLCanvasElement/captureStream": { - "modified": "2020-10-15T22:04:15.570Z", + "Web/API/Window/openDialog": { + "modified": "2019-03-24T00:04:19.879Z", "contributors": [ - "JKarkosza" + "teoli", + "khalid32", + "damien.flament", + "Ptak82" ] }, - "Web/API/HTMLCanvasElement/getContext": { - "modified": "2020-10-15T22:04:15.391Z", + "Web/API/Window/opener": { + "modified": "2020-10-15T21:16:48.672Z", "contributors": [ - "mfijas", - "JKarkosza" + "michal037", + "kanapka94", + "teoli", + "khalid32", + "Mgjbot", + "Ptak82" ] }, - "Web/API/HTMLCanvasElement/height": { - "modified": "2020-10-15T22:04:14.436Z", - "contributors": [ - "JKarkosza" - ] - }, - "Web/API/HTMLCanvasElement/width": { - "modified": "2020-10-15T22:04:14.229Z", - "contributors": [ - "JKarkosza" - ] - }, - "Web/API/HTMLElement": { - "modified": "2019-03-23T22:20:54.754Z", + "Web/API/Window/prompt": { + "modified": "2019-03-23T23:50:37.097Z", "contributors": [ - "fscholz" + "teoli", + "AshfaqHossain", + "castus", + "Mgjbot", + "Diablownik", + "Ptak82", + "Robson" ] }, - "Web/API/HTMLElement/dataset": { - "modified": "2020-10-15T22:07:00.382Z", + "Web/API/Window/requestAnimationFrame": { + "modified": "2019-03-23T22:44:30.377Z", "contributors": [ - "flakboy", - "lotny" + "pl86", + "oskarszura", + "belfz", + "michal.fita" ] }, - "Web/API/HTMLFormElement": { - "modified": "2019-03-23T23:45:33.731Z", + "Web/API/Window/resizeBy": { + "modified": "2019-03-23T23:51:10.757Z", "contributors": [ "teoli", - "jsx", + "khalid32", "Mgjbot", - "Internauta1024A", "Ptak82", - "Jan Dudek" + "Robson" ] }, - "Web/API/HTMLFormElement/acceptCharset": { - "modified": "2019-03-23T23:45:22.103Z", + "Web/API/Window/resizeTo": { + "modified": "2019-03-23T23:51:08.562Z", "contributors": [ "teoli", - "Hasilt", - "Ptak82", - "Internauta1024A" + "khalid32", + "Mgjbot", + "Robson", + "Ptak82" ] }, - "Web/API/HTMLFormElement/action": { - "modified": "2019-03-23T23:45:18.298Z", + "Web/API/Window/scroll": { + "modified": "2019-03-23T23:51:20.238Z", "contributors": [ "teoli", "jsx", + "Mgjbot", "Ptak82", - "Internauta1024A" + "Bedi" ] }, - "Web/API/HTMLFormElement/elements": { - "modified": "2019-03-23T23:43:17.456Z", + "Web/API/Window/scrollByLines": { + "modified": "2019-03-23T23:51:36.326Z", "contributors": [ "teoli", - "khalid32", + "jsx", "Mgjbot", - "Jan Dudek" + "Bedi", + "Ptak82" ] }, - "Web/API/HTMLFormElement/encoding": { - "modified": "2019-03-23T23:47:01.703Z", + "Web/API/Window/scrollByPages": { + "modified": "2019-03-23T23:51:38.748Z", "contributors": [ "teoli", "khalid32", - "Internauta1024A", + "Mgjbot", "Ptak82" ] }, - "Web/API/HTMLFormElement/enctype": { - "modified": "2019-03-23T23:45:16.218Z", + "Web/API/Window/scrollTo": { + "modified": "2019-03-23T23:51:36.818Z", "contributors": [ "teoli", "khalid32", + "Mgjbot", "Ptak82", - "Internauta1024A" + "Bedi" ] }, - "Web/API/HTMLFormElement/length": { - "modified": "2019-03-23T23:45:16.769Z", + "Web/API/Window/sidebar": { + "modified": "2019-03-23T22:02:59.356Z", + "contributors": [ + "IsaacSchemm" + ] + }, + "Web/Accessibility/ARIA": { + "modified": "2020-08-22T12:01:29.841Z", + "contributors": [ + "lordBN", + "Dzordzu", + "Tigt" + ] + }, + "Web/CSS": { + "modified": "2019-09-11T03:38:26.790Z", "contributors": [ + "SphinxKnight", + "mitelak", "teoli", - "khalid32", + "Rokuzo", + "splewako", + "mirekczechxmm", + "ethertank", + "yecril71pl", + "Bedi", + "Mgjbot", "Ptak82", - "Internauta1024A" + "Takenbot", + "gandalf", + "Zwierz", + "Jan Dudek", + "Anonymous", + "Dria", + "Justdave" ] }, - "Web/API/HTMLFormElement/method": { - "modified": "2019-03-23T23:59:17.843Z", + "Web/CSS/-moz-image-region": { + "modified": "2019-03-23T23:59:50.714Z", "contributors": [ "teoli", - "Hasilt", - "drry", + "Filemon", "Ptak82", - "Internauta1024A" + "Mgjbot", + "Witia" ] }, - "Web/API/HTMLFormElement/name": { - "modified": "2019-03-23T23:45:22.472Z", + "Web/CSS/-moz-outline-radius": { + "modified": "2019-03-23T23:45:24.765Z", "contributors": [ "teoli", - "soumya", - "Ptak82", - "Internauta1024A" + "Mgjbot", + "Witia" ] }, - "Web/API/HTMLFormElement/reset": { - "modified": "2019-03-23T23:46:56.417Z", + "Web/CSS/-moz-outline-radius-bottomleft": { + "modified": "2019-03-23T23:12:35.081Z", "contributors": [ "teoli", - "Jeremie", - "Internauta1024A", - "Diablownik", - "Ptak82" + "Mgjbot", + "Witia" ] }, - "Web/API/HTMLFormElement/submit": { - "modified": "2019-03-23T23:46:56.512Z", + "Web/CSS/-moz-outline-radius-bottomright": { + "modified": "2019-03-23T23:29:51.587Z", "contributors": [ "teoli", - "khalid32", - "Internauta1024A", - "Ptak82" + "Mgjbot", + "Witia" ] }, - "Web/API/HTMLFormElement/target": { - "modified": "2019-03-23T23:47:01.275Z", + "Web/CSS/-moz-outline-radius-topleft": { + "modified": "2019-03-23T22:49:53.395Z", "contributors": [ "teoli", - "basemnassar11", - "Internauta1024A", - "Ptak82" + "Mgjbot", + "Witia" ] }, - "Web/API/HTMLIFrameElement": { - "modified": "2019-07-30T13:30:29.361Z", + "Web/CSS/:-moz-last-node": { + "modified": "2019-03-23T23:46:40.975Z", "contributors": [ - "wbamberg", - "KubaKaszycki" + "teoli", + "Abc" ] }, - "Web/API/HTMLSelectElement": { - "modified": "2020-10-15T22:29:38.928Z", + "Web/CSS/:active": { + "modified": "2019-03-23T22:13:14.805Z", "contributors": [ - "Loadmaster" + "devMike" ] }, - "Web/API/HTMLTableElement": { - "modified": "2019-03-23T23:46:11.801Z", + "Web/CSS/:empty": { + "modified": "2019-03-23T23:51:52.904Z", "contributors": [ + "wbamberg", "teoli", - "khalid32", - "ethertank", "Mgjbot", - "Ptak82", - "WadimdD" + "Abc", + "Marcoos" ] }, - "Web/API/HTMLTableElement/caption": { - "modified": "2019-03-23T23:44:50.983Z", + "Web/CSS/:first-child": { + "modified": "2019-01-16T15:50:56.106Z", "contributors": [ "teoli", - "khalid32", "Mgjbot", - "WadimdD", - "Ptak82" + "Abc" ] }, - "Web/API/HTMLTableElement/tFoot": { - "modified": "2019-03-23T23:42:17.839Z", + "Web/CSS/:hover": { + "modified": "2020-10-15T22:02:36.417Z", "contributors": [ - "teoli", - "khalid32", - "Ptak82" + "darqoo" ] }, - "Web/API/HTMLTableElement/tHead": { - "modified": "2019-03-23T23:42:32.260Z", + "Web/CSS/:lang": { + "modified": "2019-03-23T23:46:41.214Z", "contributors": [ "teoli", - "khalid32", - "Ptak82" + "Abc" ] }, - "Web/API/Location": { - "modified": "2020-10-15T22:10:01.975Z", + "Web/CSS/:last-child": { + "modified": "2019-01-16T15:59:53.475Z", "contributors": [ - "mfuji09" + "teoli", + "Mgjbot", + "Abc" ] }, - "Web/API/Location/reload": { - "modified": "2020-10-15T22:10:04.816Z", + "Web/CSS/:link": { + "modified": "2019-03-23T22:16:42.626Z", "contributors": [ - "kanapka94" + "PolskiSwir345" ] }, - "Web/API/MIDIAccess": { - "modified": "2020-10-15T21:59:50.243Z", + "Web/CSS/:not": { + "modified": "2020-09-11T05:10:49.171Z", "contributors": [ - "bershanskiy", - "skoczy" + "gyzamaz", + "teoli", + "Abc", + "Ptak82" ] }, - "Web/API/MediaElementAudioSourceNode": { - "modified": "2020-10-15T22:28:39.656Z", + "Web/CSS/:root": { + "modified": "2019-03-23T23:46:39.020Z", "contributors": [ - "dawidos2017r" + "teoli", + "Abc" ] }, - "Web/API/MouseScrollEvent": { - "modified": "2019-03-18T21:09:03.294Z", + "Web/CSS/@document": { + "modified": "2019-03-23T22:42:17.895Z", "contributors": [ - "fscholz", "teoli", - "iwona1111" + "Mgjbot", + "Ptak82", + "Witia", + "Bedi" ] }, - "Web/API/Navigator": { - "modified": "2019-03-23T23:01:33.543Z", + "Web/CSS/@import": { + "modified": "2019-03-23T23:43:24.900Z", "contributors": [ - "wbamberg", - "teoli" + "teoli", + "Mgjbot", + "Witia" ] }, - "Web/API/Navigator/appCodeName": { - "modified": "2019-03-23T23:49:13.430Z", + "Web/CSS/@media": { + "modified": "2019-03-23T23:45:53.850Z", "contributors": [ "teoli", - "xuancanh", + "Ptak82", "Mgjbot", - "Diablownik", - "Ptak82" + "Witia" ] }, - "Web/API/Navigator/appName": { - "modified": "2019-03-23T23:49:12.926Z", + "Web/CSS/@supports": { + "modified": "2019-03-23T23:11:14.907Z", "contributors": [ - "teoli", - "jsx", - "Mgjbot", - "Diablownik" + "fscholz", + "kamil09875", + "P0lip" ] }, - "Web/API/Navigator/appVersion": { - "modified": "2019-03-23T23:49:23.089Z", + "Web/CSS/Attribute_selectors": { + "modified": "2020-10-15T22:29:59.639Z", "contributors": [ - "teoli", - "jsx", - "Mgjbot", - "Diablownik", - "Internauta1024A" + "n.lobodzinski" ] }, - "Web/API/Navigator/buildID": { - "modified": "2019-03-23T23:49:19.070Z", + "Web/CSS/CSS_Flexible_Box_Layout": { + "modified": "2019-03-18T21:39:51.689Z", "contributors": [ - "teoli", - "khalid32", - "Mgjbot", - "Diablownik" + "andrzejkrecicki" ] }, - "Web/API/Navigator/cookieEnabled": { - "modified": "2019-03-23T23:49:23.555Z", + "Web/CSS/CSS_Grid_Layout": { + "modified": "2020-04-30T03:28:17.468Z", "contributors": [ - "teoli", - "khalid32", - "Mgjbot", - "Diablownik" + "taboritis", + "Miszau", + "CreateWWW" ] }, - "Web/API/Navigator/javaEnabled": { - "modified": "2019-03-23T23:49:40.467Z", + "Web/CSS/CSS_Grid_Layout/Auto-placement_in_CSS_Grid_Layout": { + "modified": "2020-03-02T06:06:47.611Z", "contributors": [ - "teoli", - "jsx", - "Mgjbot", - "Diablownik", - "Ptak82" + "Miszau" ] }, - "Web/API/Navigator/language": { - "modified": "2019-03-23T23:49:32.556Z", + "Web/CSS/CSS_Selectors": { + "modified": "2020-06-02T17:26:22.713Z", "contributors": [ - "teoli", - "khalid32", - "Mgjbot", - "Diablownik", - "Ptak82" + "ramiy" ] }, - "Web/API/Navigator/mimeTypes": { - "modified": "2019-03-23T23:49:33.278Z", + "Web/CSS/ID_selectors": { + "modified": "2019-03-23T22:16:24.379Z", "contributors": [ - "teoli", - "khalid32", - "Mgjbot", - "Diablownik" + "ahdarpl", + "PolskiSwir345" ] }, - "Web/API/Navigator/onLine": { - "modified": "2019-03-23T23:48:52.481Z", + "Web/CSS/Margin": { + "modified": "2020-10-15T21:09:12.393Z", "contributors": [ + "trusohamn", + "wbamberg", + "Terite", + "fscholz", "teoli", - "khalid32", - "Mgjbot", - "Diablownik", - "Ptak82" + "yecril71pl", + "hADeSik", + "Wasiqs" ] }, - "Web/API/Navigator/oscpu": { - "modified": "2019-03-23T23:49:31.983Z", + "Web/CSS/Media_Queries": { + "modified": "2019-03-23T22:42:34.065Z", + "contributors": [ + "teoli" + ] + }, + "Web/CSS/Media_Queries/Using_media_queries": { + "modified": "2019-10-10T16:46:21.792Z", + "contributors": [ + "powelski", + "Hymtos", + "Sebastianz", + "mrstork", + "malayaleecoder", + "Asqan" + ] + }, + "Web/CSS/Mozilla_Extensions": { + "modified": "2019-03-24T00:14:13.075Z", "contributors": [ + "ExE-Boss", + "SphinxKnight", "teoli", - "AshfaqHossain", + "tregagnon", + "fscholz", + "Filemon", "Mgjbot", - "Diablownik" + "Ptak82", + "Bedi", + "Witia" ] }, - "Web/API/Navigator/platform": { - "modified": "2019-03-23T23:49:28.729Z", + "Web/CSS/Using_CSS_custom_properties": { + "modified": "2020-03-20T12:27:19.253Z", + "contributors": [ + "Andrzej_Gierszewski", + "chrisdavidmills", + "maciekpastuszka", + "Miras" + ] + }, + "Web/CSS/appearance": { + "modified": "2019-03-23T23:34:43.549Z", "contributors": [ + "ExE-Boss", "teoli", - "AshfaqHossain", "Mgjbot", - "Diablownik" + "Rev", + "Witia" ] }, - "Web/API/Navigator/plugins": { - "modified": "2019-03-23T23:49:34.992Z", + "Web/CSS/background": { + "modified": "2019-03-24T00:08:43.942Z", "contributors": [ - "sheldarr", + "fatherJS", + "LuciusLuWroc", "teoli", - "jsx", - "AshfaqHossain", + "SphinxKnight", + "Yuichiro", + "Witia", "Mgjbot", - "Diablownik" + "Kjj2", + "Ptak82" ] }, - "Web/API/Navigator/product": { - "modified": "2019-03-23T23:49:35.115Z", + "Web/CSS/background-attachment": { + "modified": "2019-03-23T23:52:22.214Z", "contributors": [ + "SphinxKnight", "teoli", - "khalid32", + "Witia", "Mgjbot", - "Diablownik" + "Ptak82" ] }, - "Web/API/Navigator/productSub": { - "modified": "2019-03-23T23:49:31.506Z", + "Web/CSS/background-color": { + "modified": "2019-03-24T00:02:14.396Z", "contributors": [ + "LuciusLuWroc", + "SphinxKnight", "teoli", - "khalid32", + "Yuichiro", + "Witia", "Mgjbot", - "Diablownik" + "Ptak82" ] }, - "Web/API/Navigator/registerContentHandler": { - "modified": "2019-03-23T23:51:33.038Z", + "Web/CSS/background-image": { + "modified": "2019-03-23T23:52:27.446Z", "contributors": [ "teoli", - "khalid32", - "Diablownik", + "SphinxKnight", + "Witia", + "ethertank", + "Sennin", "Mgjbot", - "Marcoos", "Ptak82" ] }, - "Web/API/Navigator/registerProtocolHandler": { - "modified": "2019-03-23T23:52:37.570Z", + "Web/CSS/background-origin": { + "modified": "2019-03-23T23:53:08.644Z", "contributors": [ "teoli", - "jsx", - "Marcoos", - "Flaneur", - "Mgjbot" + "Mgjbot", + "Ptak82", + "Witia" ] }, - "Web/API/Navigator/registerProtocolHandler/Web-based_protocol_handlers": { - "modified": "2019-03-23T23:52:41.449Z", + "Web/CSS/background-position": { + "modified": "2019-03-23T23:52:26.514Z", "contributors": [ - "chrisdavidmills", + "mrstork", + "teoli", "Witia", - "Marcoos", - "Flaneur" + "Mgjbot", + "Ptak82" ] }, - "Web/API/NavigatorLanguage": { - "modified": "2019-03-23T23:01:34.390Z", + "Web/CSS/background-size": { + "modified": "2020-10-15T22:05:20.506Z", "contributors": [ - "maniekbarty", - "teoli" + "krzmaciek" ] }, - "Web/API/NavigatorOnLine": { - "modified": "2019-03-23T23:01:33.822Z", + "Web/CSS/border": { + "modified": "2019-03-24T00:08:45.150Z", "contributors": [ - "teoli" + "wbamberg", + "Sebastianz", + "fscholz", + "teoli", + "Yuichiro", + "Ptak82", + "Mgjbot", + "Witia" ] }, - "Web/API/NavigatorOnLine/Zdarzenia_online_i_offline": { - "modified": "2019-01-16T15:46:42.070Z", + "Web/CSS/border-bottom": { + "modified": "2019-03-24T00:08:42.492Z", "contributors": [ - "chrisdavidmills", + "wbamberg", + "fscholz", + "teoli", + "Yuichiro", + "Witia", "Ptak82", - "Mgjbot", - "Flaneur" + "Mgjbot" ] }, - "Web/API/NavigatorPlugins": { - "modified": "2019-03-23T23:01:33.358Z", + "Web/CSS/border-bottom-color": { + "modified": "2019-03-24T00:08:41.085Z", "contributors": [ - "teoli" + "wbamberg", + "Sebastianz", + "fscholz", + "teoli", + "Yuichiro", + "Witia", + "Mgjbot" ] }, - "Web/API/ParentNode": { - "modified": "2020-10-15T22:19:13.921Z" - }, - "Web/API/ParentNode/childElementCount": { - "modified": "2020-10-15T22:19:13.324Z", + "Web/CSS/border-bottom-left-radius": { + "modified": "2019-03-24T00:13:32.442Z", "contributors": [ - "kaka0204", - "SurmaAa" + "teoli", + "FredB", + "Yuichiro", + "Mgjbot", + "Witia" ] }, - "Web/API/ParentNode/children": { - "modified": "2020-10-29T07:01:42.075Z", + "Web/CSS/border-bottom-right-radius": { + "modified": "2019-03-23T22:00:34.638Z", "contributors": [ - "dk333" + "teoli", + "Yuichiro", + "Mgjbot", + "Witia" ] }, - "Web/API/Push_API": { - "modified": "2019-03-23T22:08:29.784Z", + "Web/CSS/border-bottom-style": { + "modified": "2019-03-23T23:07:16.600Z", "contributors": [ - "prograamer" + "wbamberg", + "fscholz", + "teoli", + "Yuichiro", + "Witia", + "Mgjbot", + "Ptak82" ] }, - "Web/API/Range": { - "modified": "2019-03-23T23:45:35.004Z", + "Web/CSS/border-bottom-width": { + "modified": "2019-04-09T10:53:28.059Z", "contributors": [ - "SphinxKnight", + "kamilpikula", + "wbamberg", + "fscholz", "teoli", - "khalid32", - "Mgjbot", - "Ptak82", - "Internauta1024A" + "Yuichiro", + "Witia", + "Mgjbot" ] }, - "Web/API/Response": { - "modified": "2020-10-15T22:26:26.518Z", + "Web/CSS/border-collapse": { + "modified": "2019-03-23T23:52:40.166Z", "contributors": [ - "ZaneHannanAU" + "wbamberg", + "teoli", + "Witia", + "Ptak82", + "Mgjbot", + "Godlark" ] }, - "Web/API/Screen": { - "modified": "2019-03-23T23:01:31.157Z", + "Web/CSS/border-color": { + "modified": "2019-03-24T00:08:39.388Z", "contributors": [ - "teoli" + "wbamberg", + "Sebastianz", + "fscholz", + "teoli", + "Yuichiro", + "Ptak82", + "Mgjbot", + "Bedi", + "Witia" ] }, - "Web/API/Screen/colorDepth": { - "modified": "2019-03-23T23:50:21.916Z", + "Web/CSS/border-left": { + "modified": "2019-03-24T00:08:40.071Z", "contributors": [ + "fscholz", "teoli", - "jsx", - "Mgjbot", - "Diablownik", + "Yuichiro", "Ptak82", - "Internauta1024A" + "Mgjbot", + "Witia" ] }, - "Web/API/Screen/width": { - "modified": "2019-03-18T21:45:10.635Z", + "Web/CSS/border-left-color": { + "modified": "2019-03-24T00:08:42.040Z", "contributors": [ - "kasztan" + "wbamberg", + "teoli", + "Yuichiro", + "Ptak82", + "Peyn", + "Bedi", + "Mgjbot" ] }, - "Web/API/Selection": { - "modified": "2019-03-23T23:48:09.616Z", + "Web/CSS/border-left-style": { + "modified": "2019-01-16T14:12:55.502Z", "contributors": [ - "SphinxKnight", "teoli", - "khalid32", - "Mgjbot", - "Gocio", - "DR", - "Diablownik", - "Rev", + "Yuichiro", "Ptak82", - "Internauta1024A" + "Killerowski" ] }, - "Web/API/Selection/addRange": { - "modified": "2019-03-23T23:46:47.578Z", + "Web/CSS/border-left-width": { + "modified": "2019-01-16T15:56:40.902Z", "contributors": [ "teoli", - "khalid32", - "Mgjbot", - "DR", - "Rev" + "Killerowski" ] }, - "Web/API/Selection/anchorNode": { - "modified": "2019-03-23T23:47:25.872Z", + "Web/CSS/border-radius": { + "modified": "2019-03-24T00:08:41.749Z", "contributors": [ "teoli", - "khalid32", - "Gocio", + "Yuichiro", "Mgjbot", - "DR", - "Rev" + "Witia" ] }, - "Web/API/Selection/anchorOffset": { - "modified": "2019-03-23T23:46:54.375Z", + "Web/CSS/border-right": { + "modified": "2019-03-24T00:08:37.527Z", "contributors": [ + "fscholz", "teoli", - "jsx", - "Mgjbot", + "Yuichiro", "Ptak82", - "Rev" + "Mgjbot", + "Witia" ] }, - "Web/API/Selection/collapse": { - "modified": "2019-03-23T23:46:59.083Z", + "Web/CSS/border-right-color": { + "modified": "2019-01-17T10:27:47.472Z", "contributors": [ "teoli", - "khalid32", + "Yuichiro", "Mgjbot", - "DR", - "Rev" + "Ptak82", + "Bedi" ] }, - "Web/API/Selection/collapseToEnd": { - "modified": "2019-03-23T23:46:58.778Z", + "Web/CSS/border-right-style": { + "modified": "2019-01-16T14:13:03.482Z", "contributors": [ "teoli", - "khalid32", - "Mgjbot", - "DR", - "Rev" + "Yuichiro", + "Ptak82", + "Killerowski" ] }, - "Web/API/Selection/collapseToStart": { - "modified": "2019-03-23T23:47:02.825Z", + "Web/CSS/border-right-width": { + "modified": "2019-01-16T14:12:36.775Z", "contributors": [ "teoli", - "jsx", - "Mgjbot", - "DR", - "Rev" + "Yuichiro", + "Ptak82", + "Killerowski" ] }, - "Web/API/Selection/containsNode": { - "modified": "2019-03-23T23:46:53.862Z", + "Web/CSS/border-spacing": { + "modified": "2019-03-23T23:52:36.355Z", "contributors": [ + "wbamberg", "teoli", - "khalid32", + "Witia", + "Ptak82", "Mgjbot", - "DR", - "Rev" + "Peyn", + "Killerowski" ] }, - "Web/API/Selection/deleteFromDocument": { - "modified": "2019-03-23T23:46:48.061Z", + "Web/CSS/border-style": { + "modified": "2020-05-16T15:18:40.832Z", "contributors": [ + "filip-rybczynski", + "wbamberg", "teoli", - "khalid32", + "Yuichiro", + "Ptak82", "Mgjbot", - "DR", - "Rev" + "Diablownik", + "Witia" ] }, - "Web/API/Selection/extend": { - "modified": "2019-03-23T23:46:50.880Z", + "Web/CSS/border-top": { + "modified": "2019-03-24T00:08:37.828Z", "contributors": [ + "fscholz", "teoli", - "khalid32", - "Mgjbot", - "DR", - "Rev" + "Yuichiro", + "Witia", + "Mgjbot" ] }, - "Web/API/Selection/focusNode": { - "modified": "2019-03-23T23:46:47.086Z", + "Web/CSS/border-top-color": { + "modified": "2019-03-24T00:08:37.915Z", "contributors": [ "teoli", - "jsx", - "DR", + "Yuichiro", "Ptak82", - "Rev" + "Killerowski" ] }, - "Web/API/Selection/focusOffset": { - "modified": "2019-03-23T23:46:50.243Z", + "Web/CSS/border-top-left-radius": { + "modified": "2019-03-24T00:13:33.183Z", "contributors": [ "teoli", - "mimzi_fahia", + "FredB", + "Yuichiro", "Mgjbot", - "DR", - "Ptak82", - "Rev" + "Witia" ] }, - "Web/API/Selection/getRangeAt": { - "modified": "2019-03-23T23:46:47.678Z", + "Web/CSS/border-top-right-radius": { + "modified": "2019-03-24T00:13:34.878Z", "contributors": [ "teoli", - "khalid32", - "DR", - "Diablownik", - "Rev" + "FredB", + "Mgjbot", + "Witia" ] }, - "Web/API/Selection/isCollapsed": { - "modified": "2019-03-23T23:46:51.749Z", + "Web/CSS/border-top-style": { + "modified": "2019-01-16T14:13:03.908Z", "contributors": [ "teoli", - "khalid32", - "DR", - "Ptak82", - "Rev" + "Yuichiro", + "Killerowski", + "Ptak82" ] }, - "Web/API/Selection/rangeCount": { - "modified": "2019-03-23T23:46:49.626Z", + "Web/CSS/border-top-width": { + "modified": "2019-01-16T14:12:55.405Z", "contributors": [ "teoli", - "jsx", - "DR", - "Diablownik", - "Rev" + "Yuichiro", + "Killerowski" ] }, - "Web/API/Selection/removeAllRanges": { - "modified": "2019-03-23T23:46:51.877Z", + "Web/CSS/border-width": { + "modified": "2019-03-24T00:08:40.511Z", "contributors": [ + "wbamberg", + "mrstork", "teoli", - "khalid32", + "Yuichiro", + "Witia", "Mgjbot", - "DR", - "Rev" + "Killerowski" ] }, - "Web/API/Selection/removeRange": { - "modified": "2019-03-23T23:46:49.730Z", + "Web/CSS/bottom": { + "modified": "2019-03-23T23:52:36.650Z", "contributors": [ + "fscholz", "teoli", - "khalid32", + "Witia", "Mgjbot", - "Rev" + "Ptak82" ] }, - "Web/API/Selection/selectAllChildren": { - "modified": "2019-03-23T23:46:48.182Z", + "Web/CSS/box-decoration-break": { + "modified": "2019-03-23T22:46:10.684Z", "contributors": [ - "teoli", - "khalid32", - "Mgjbot", - "DR", - "Rev" + "teoli" ] }, - "Web/API/Selection/toString": { - "modified": "2019-03-23T23:47:22.838Z", + "Web/CSS/box-direction": { + "modified": "2019-03-23T23:45:19.080Z", "contributors": [ "teoli", - "khalid32", "Mgjbot", - "DR", - "Rev" + "Witia" ] }, - "Web/API/SpeechRecognition": { - "modified": "2020-10-15T22:25:11.426Z", + "Web/CSS/box-shadow": { + "modified": "2019-03-23T23:02:53.881Z", "contributors": [ - "malarium" + "Saganowsky", + "Sebastianz", + "Prinz_Rana", + "JJay" ] }, - "Web/API/Storage": { - "modified": "2019-03-23T23:50:43.254Z", + "Web/CSS/box-sizing": { + "modified": "2019-03-23T23:45:18.849Z", "contributors": [ - "rudol", + "zly", "teoli", - "AshfaqHossain", "Mgjbot", - "Ptak82", - "Rev", - "Bedi", - "Internauta1024A" + "Witia" ] }, - "Web/API/Stylesheet": { - "modified": "2019-03-23T23:45:14.267Z", + "Web/CSS/clear": { + "modified": "2019-03-23T23:52:37.948Z", "contributors": [ + "wbamberg", "teoli", - "jsx", + "Witia", + "Tomekperlak", "Ptak82", - "Internauta1024A" + "Earthcitizen", + "Rev", + "Mgjbot" ] }, - "Web/API/Stylesheet/cssRules": { - "modified": "2019-03-23T23:48:42.200Z", + "Web/CSS/clip": { + "modified": "2019-03-23T23:52:26.202Z", "contributors": [ + "wbamberg", + "mrstork", "teoli", - "khalid32", - "Bedi", - "Ptak82", - "Internauta1024A" + "Witia", + "Ptak82" ] }, - "Web/API/Stylesheet/deleteRule": { - "modified": "2019-03-23T23:45:22.762Z", + "Web/CSS/color": { + "modified": "2019-01-16T15:32:14.428Z", "contributors": [ "teoli", - "jsx", - "Ptak82", - "Internauta1024A" + "Mgjbot", + "Witia", + "Elwiz", + "Killerowski", + "Bedi" ] }, - "Web/API/Stylesheet/disabled": { - "modified": "2019-03-23T23:45:18.937Z", + "Web/CSS/content": { + "modified": "2019-03-23T23:52:52.547Z", "contributors": [ + "wbamberg", + "Guillaume-Heras", + "mrstork", + "malayaleecoder", "teoli", - "khalid32", - "Ptak82", - "Internauta1024A" + "Witia" ] }, - "Web/API/Stylesheet/href": { - "modified": "2019-03-23T23:45:21.729Z", + "Web/CSS/counter-increment": { + "modified": "2019-03-18T21:16:08.292Z", "contributors": [ "teoli", - "jsx", - "Internauta1024A", + "Witia", + "Mgjbot", + "PablO", "Ptak82" ] }, - "Web/API/Stylesheet/insertRule": { - "modified": "2019-03-24T00:00:18.477Z", + "Web/CSS/counter-reset": { + "modified": "2019-03-23T23:52:36.024Z", "contributors": [ - "SphinxKnight", "teoli", - "AshfaqHossain", - "Gompka", - "Ptak82", - "Internauta1024A" + "Witia", + "Mgjbot", + "PablO", + "Ptak82" ] }, - "Web/API/Stylesheet/media": { - "modified": "2019-03-23T23:45:22.570Z", + "Web/CSS/cursor": { + "modified": "2019-03-23T23:52:40.510Z", "contributors": [ + "wbamberg", "teoli", - "jsx", "Ptak82", - "Internauta1024A", - "Diablownik" + "Witia", + "Mgjbot", + "Rev" ] }, - "Web/API/Stylesheet/ownerRule": { - "modified": "2019-03-23T23:45:18.103Z", + "Web/CSS/direction": { + "modified": "2019-01-17T08:07:54.772Z", "contributors": [ "teoli", - "xuancanh", "Ptak82", - "Internauta1024A" + "Mgjbot", + "Witia" ] }, - "Web/API/Stylesheet/parentStyleSheet": { - "modified": "2019-03-23T23:45:16.498Z", + "Web/CSS/display": { + "modified": "2019-03-23T23:36:34.292Z", "contributors": [ + "wbamberg", + "mlewand", "teoli", - "mimzi_fahia", - "Diablownik", - "Ptak82", - "Internauta1024A" + "Witia", + "Mgjbot" ] }, - "Web/API/Stylesheet/title": { - "modified": "2019-03-23T23:45:22.666Z", + "Web/CSS/empty-cells": { + "modified": "2019-03-23T23:52:53.684Z", "contributors": [ + "wbamberg", + "fscholz", "teoli", - "khalid32", - "Ptak82", - "Internauta1024A" + "Witia" ] }, - "Web/API/Stylesheet/type": { - "modified": "2019-03-23T23:45:20.725Z", + "Web/CSS/float": { + "modified": "2019-03-23T23:52:54.130Z", "contributors": [ + "wbamberg", "teoli", - "khalid32", - "Ptak82", - "Internauta1024A" - ] - }, - "Web/API/WebGL_API": { - "modified": "2019-03-23T22:58:02.050Z", - "contributors": [ - "dloranc", - "fscholz", - "michaldudak", - "odfdoodokdoudos", - "Dawid_Chmura_JWE", - "Trebor" + "Witia" ] }, - "Web/API/WebGL_API/Tutorial": { - "modified": "2019-03-23T22:48:53.045Z", + "Web/CSS/font": { + "modified": "2019-03-23T23:53:26.482Z", "contributors": [ - "fscholz" + "wbamberg", + "emce", + "teoli", + "Mgjbot", + "Witia", + "Diablownik" ] }, - "Web/API/Web_Audio_API": { - "modified": "2019-03-23T22:11:02.259Z", + "Web/CSS/font-family": { + "modified": "2019-03-23T23:52:40.043Z", "contributors": [ - "drm404" + "wbamberg", + "fscholz", + "teoli", + "Witia", + "Mgjbot", + "Diablownik" ] }, - "Web/API/Window": { - "modified": "2019-03-24T00:01:49.075Z", + "Web/CSS/font-size": { + "modified": "2020-10-15T21:15:42.947Z", "contributors": [ "SphinxKnight", "teoli", - "khalid32", - "Crash", - "Spawnm", - "Ptak82", - "Internauta1024A", + "splewako", + "Acrobot", + "Witia", "Mgjbot", - "Diablownik", - "Takenbot", - "Jan Dudek" + "Killerowski" ] }, - "Web/API/Window/alert": { - "modified": "2019-03-23T23:50:36.690Z", + "Web/CSS/font-size-adjust": { + "modified": "2019-03-23T23:52:53.150Z", "contributors": [ - "Sheppy", + "wbamberg", + "fscholz", "teoli", - "AshfaqHossain", - "Mgjbot", - "Ptak82", - "Jan Dudek" + "Witia" ] }, - "Web/API/Window/applicationCache": { - "modified": "2019-03-23T22:47:53.352Z", + "Web/CSS/font-stretch": { + "modified": "2019-03-24T00:00:16.636Z", "contributors": [ - "Rafal2228" + "wbamberg", + "fscholz", + "teoli", + "Gompka", + "Witia" ] }, - "Web/API/Window/clearInterval": { - "modified": "2019-03-24T00:10:08.372Z", + "Web/CSS/font-style": { + "modified": "2019-03-23T23:54:11.416Z", "contributors": [ + "wbamberg", "teoli", - "khalid32", - "ethertank", - "qfel13" - ] - }, - "Web/API/Window/clearTimeout": { - "modified": "2019-03-24T00:10:09.180Z", - "contributors": [ - "teoli", - "khalid32", - "qfel13" + "Witia" ] }, - "Web/API/Window/closed": { - "modified": "2019-03-23T23:49:15.119Z", + "Web/CSS/font-variant": { + "modified": "2019-03-23T23:54:14.120Z", "contributors": [ + "wbamberg", + "fscholz", "teoli", - "khalid32", - "Mgjbot", - "Ptak82", - "Rev", - "Internauta1024A" + "Witia" ] }, - "Web/API/Window/content": { - "modified": "2019-03-23T23:49:47.503Z", + "Web/CSS/font-weight": { + "modified": "2019-03-23T23:54:14.828Z", "contributors": [ "SphinxKnight", + "fscholz", "teoli", - "AshfaqHossain", - "Mgjbot", - "Ptak82", - "Internauta1024A" + "Witia" ] }, - "Web/API/Window/controllers": { - "modified": "2019-03-23T23:49:47.613Z", + "Web/CSS/grid": { + "modified": "2020-11-09T10:13:26.650Z", "contributors": [ - "teoli", - "jsx", - "Mgjbot", - "Internauta1024A" + "Miszau" ] }, - "Web/API/Window/crypto": { - "modified": "2019-03-23T23:49:51.057Z", + "Web/CSS/height": { + "modified": "2019-03-23T23:54:00.860Z", "contributors": [ + "wbamberg", "teoli", - "khalid32", - "Mgjbot", - "Ptak82", - "Internauta1024A" + "Witia" ] }, - "Web/API/Window/defaultStatus": { - "modified": "2019-03-23T23:49:46.875Z", + "Web/CSS/ime-mode": { + "modified": "2019-03-24T00:00:40.496Z", "contributors": [ "teoli", - "khalid32", - "Mgjbot", - "Ptak82", - "Internauta1024A", - "Diablownik" + "Ptak82" ] }, - "Web/API/Window/directories": { - "modified": "2019-03-23T23:49:52.705Z", + "Web/CSS/initial": { + "modified": "2019-03-23T22:25:07.597Z", "contributors": [ - "teoli", - "jsx", - "Mgjbot", - "Internauta1024A" + "Miras" ] }, - "Web/API/Window/document": { - "modified": "2019-03-23T23:49:48.901Z", + "Web/CSS/letter-spacing": { + "modified": "2019-03-24T00:13:38.740Z", "contributors": [ + "wbamberg", + "Jakubem", + "mrstork", + "fscholz", "teoli", - "khalid32", - "Mgjbot", - "Ptak82", - "Internauta1024A", - "Jan Dudek" + "FredB", + "Witia" ] }, - "Web/API/Window/dump": { - "modified": "2019-03-23T23:47:00.449Z", + "Web/CSS/list-style-image": { + "modified": "2019-03-18T21:16:09.927Z", "contributors": [ + "SphinxKnight", "teoli", - "AshfaqHossain", + "Witia", "Mgjbot", - "Marcoos", - "Jan Dudek" + "Ptak82", + "PablO" ] }, - "Web/API/Window/focus": { - "modified": "2019-03-23T23:50:59.887Z", + "Web/CSS/list-style-position": { + "modified": "2019-03-23T23:52:40.630Z", "contributors": [ + "SphinxKnight", "teoli", - "khalid32", + "Witia", "Mgjbot", "Ptak82", - "Robson" + "PablO" ] }, - "Web/API/Window/frameElement": { - "modified": "2019-03-23T23:49:48.399Z", + "Web/CSS/list-style-type": { + "modified": "2019-03-23T23:52:39.653Z", "contributors": [ + "SphinxKnight", "teoli", - "AshfaqHossain", + "Witia", + "ethertank", "Mgjbot", + "Ptak82", "Diablownik", - "Internauta1024A" + "KrucaFuks", + "PablO" ] }, - "Web/API/Window/frames": { - "modified": "2019-03-23T23:49:53.479Z", + "Web/CSS/opacity": { + "modified": "2019-03-24T00:11:58.397Z", "contributors": [ "teoli", - "jsx", - "Mgjbot", - "Internauta1024A", - "Ptak82" + "gsc" ] }, - "Web/API/Window/getSelection": { - "modified": "2019-03-23T23:48:14.523Z", + "Web/CSS/outline": { + "modified": "2019-03-24T00:13:39.485Z", "contributors": [ "teoli", - "jsx", + "ethertank", + "FredB", "Mgjbot", - "Witia", - "Ptak82", - "Rev" - ] - }, - "Web/API/Window/localStorage": { - "modified": "2019-03-23T22:47:52.730Z", - "contributors": [ - "marcinru", - "Rafal2228" + "Witia" ] }, - "Web/API/Window/name": { - "modified": "2019-03-23T23:49:59.062Z", + "Web/CSS/outline-offset": { + "modified": "2019-03-24T00:13:39.168Z", "contributors": [ "teoli", - "jsx", + "FredB", "Mgjbot", - "Ptak82", - "Robson" + "Witia" ] }, - "Web/API/Window/navigator": { - "modified": "2019-03-23T23:49:11.084Z", + "Web/CSS/page-break-after": { + "modified": "2019-03-24T00:13:40.804Z", "contributors": [ - "SphinxKnight", + "wbamberg", "teoli", - "AshfaqHossain", - "Mgjbot", - "Diablownik", - "Ptak82" + "ethertank", + "yecril71pl" ] }, - "Web/API/Window/onload": { - "modified": "2019-03-24T00:18:31.426Z", + "Web/CSS/right": { + "modified": "2020-10-15T22:20:49.762Z", "contributors": [ - "SphinxKnight", - "teoli", - "AshfaqHossain", - "wojciech.fornal", - "Ptak82" + "miaumere" ] }, - "Web/API/Window/open": { - "modified": "2019-03-23T23:13:16.656Z", + "Web/CSS/text-transform": { + "modified": "2019-03-23T23:53:56.581Z", "contributors": [ - "SphinxKnight", - "jigs12", + "wbamberg", "fscholz", "teoli", - "khalid32", - "Gompka", - "GT", - "Elwiz", - "Mgjbot", - "Ptak82", - "Jan Dudek" + "Witia" ] }, - "Web/API/Window/openDialog": { - "modified": "2019-03-24T00:04:19.879Z", + "Web/CSS/transform-function": { + "modified": "2019-03-23T22:13:49.043Z", "contributors": [ - "teoli", - "khalid32", - "damien.flament", - "Ptak82" + "draccicgeb" ] }, - "Web/API/Window/opener": { - "modified": "2020-10-15T21:16:48.672Z", + "Web/CSS/transform-function/matrix()": { + "modified": "2020-11-16T09:00:02.174Z", "contributors": [ - "michal037", - "kanapka94", - "teoli", - "khalid32", - "Mgjbot", - "Ptak82" + "chrisdavidmills", + "drm404" ] }, - "Web/API/Window/prompt": { - "modified": "2019-03-23T23:50:37.097Z", + "Web/CSS/vertical-align": { + "modified": "2019-01-16T15:39:06.888Z", "contributors": [ "teoli", - "AshfaqHossain", - "castus", - "Mgjbot", + "Witia", "Diablownik", "Ptak82", - "Robson" + "Mgjbot" ] }, - "Web/API/Window/requestAnimationFrame": { - "modified": "2019-03-23T22:44:30.377Z", + "Web/CSS/white-space": { + "modified": "2019-03-23T23:54:00.593Z", "contributors": [ - "pl86", - "oskarszura", - "belfz", - "michal.fita" + "wbamberg", + "fscholz", + "teoli", + "SphinxKnight", + "Witia", + "FredB" ] }, - "Web/API/Window/resizeBy": { - "modified": "2019-03-23T23:51:10.757Z", + "Web/CSS/width": { + "modified": "2020-10-15T22:10:57.316Z", "contributors": [ - "teoli", - "khalid32", - "Mgjbot", - "Ptak82", - "Robson" + "krezka", + "SphinxKnight", + "alien8923" ] }, - "Web/API/Window/resizeTo": { - "modified": "2019-03-23T23:51:08.562Z", + "Web/CSS/word-spacing": { + "modified": "2019-03-24T00:13:45.112Z", "contributors": [ + "wbamberg", + "mrstork", + "fscholz", "teoli", - "khalid32", - "Mgjbot", - "Robson", - "Ptak82" + "FredB", + "Witia" ] }, - "Web/API/Window/scroll": { - "modified": "2019-03-23T23:51:20.238Z", + "Web/CSS/z-index": { + "modified": "2020-10-15T21:15:56.356Z", "contributors": [ + "kamilpikula", "teoli", - "jsx", - "Mgjbot", + "Witia", + "Bedi", "Ptak82", - "Bedi" + "Mgjbot" ] }, - "Web/API/Window/scrollByLines": { - "modified": "2019-03-23T23:51:36.326Z", + "Web/EXSLT": { + "modified": "2019-01-16T15:40:19.089Z", "contributors": [ - "teoli", - "jsx", - "Mgjbot", - "Bedi", - "Ptak82" + "ExE-Boss", + "Flaneur", + "Ptak82", + "Ementos" ] }, - "Web/API/Window/scrollByPages": { - "modified": "2019-03-23T23:51:38.748Z", + "Web/Guide": { + "modified": "2019-03-23T23:26:00.482Z", "contributors": [ + "asbud", "teoli", - "khalid32", - "Mgjbot", - "Ptak82" + "eswues", + "fejkfix", + "splewako", + "Sheppy" ] }, - "Web/API/Window/scrollTo": { - "modified": "2019-03-23T23:51:36.818Z", + "Web/Guide/AJAX": { + "modified": "2019-01-16T14:36:25.111Z", "contributors": [ - "teoli", - "khalid32", + "chrisdavidmills", + "Zwierz", "Mgjbot", "Ptak82", - "Bedi" + "Staszyna", + "gandalf", + "Dria", + "Anonymous" ] }, - "Web/API/Window/setInterval": { - "modified": "2019-03-24T00:10:09.408Z", + "Web/Guide/API": { + "modified": "2019-03-23T23:16:39.369Z", "contributors": [ - "Bajdzis", - "teoli", - "khalid32", - "qfel13", - "Mgjbot", - "Jan Dudek" + "asbud", + "Sheppy" ] }, - "Web/API/Window/setTimeout": { - "modified": "2019-03-24T00:10:06.439Z", + "Web/Guide/Graphics": { + "modified": "2019-03-23T23:26:03.623Z", "contributors": [ "teoli", - "AshfaqHossain", - "qfel13", - "Ceth", - "Mgjbot", - "Jan Dudek" + "Rokuzo", + "splewako", + "jswisher" ] }, - "Web/API/Window/sidebar": { - "modified": "2019-03-23T22:02:59.356Z", + "Web/Guide/HTML/Editable_content": { + "modified": "2019-03-23T22:02:03.451Z", "contributors": [ - "IsaacSchemm" + "chrisdavidmills" ] }, - "Web/API/WindowBase64": { - "modified": "2019-03-23T23:01:35.375Z", + "Web/Guide/Performance": { + "modified": "2019-03-23T23:11:21.113Z", "contributors": [ - "teoli" + "Sheppy" ] }, - "Web/API/WindowBase64/atob": { - "modified": "2019-03-23T23:09:12.984Z", + "Web/HTML": { + "modified": "2019-03-18T20:58:20.320Z", "contributors": [ + "xd1010", + "plx5", + "dodekx", "teoli", - "Eltu" + "ethertank", + "DavidWalsh", + "Mgjbot", + "Ptak82", + "Zwierz", + "gandalf", + "Emil", + "Nerf", + "Dria", + "Anonymous", + "Justdave" ] }, - "Web/API/WindowBase64/btoa": { - "modified": "2019-03-23T23:09:14.333Z", + "Web/HTML/Element": { + "modified": "2019-07-03T17:47:56.855Z", "contributors": [ + "miaumere", + "xd1010", + "SphinxKnight", "teoli", - "Eltu" + "Ptak82", + "Mgjbot", + "Chrisraven", + "Witia", + "PablO", + "VooEak", + "Sullei" ] }, - "Web/API/Zdarzenia_dotykowe": { - "modified": "2020-10-15T22:21:40.615Z", + "Web/HTML/Element/Heading_Elements": { + "modified": "2020-10-15T22:34:48.886Z", "contributors": [ - "jangromko" + "Martech42" ] }, - "Web/API/powiadomienie": { - "modified": "2019-03-23T22:47:47.817Z", + "Web/HTML/Element/Input": { + "modified": "2019-03-23T22:58:57.333Z", "contributors": [ - "archdevil666pl", - "teoli", - "Arfphis" + "pkuczynski" ] }, - "Web/Accessibility/ARIA": { - "modified": "2020-08-22T12:01:29.841Z", + "Web/HTML/Element/Input/button": { + "modified": "2020-10-15T22:31:02.305Z", "contributors": [ - "lordBN", - "Dzordzu", - "Tigt" + "alanos101198" ] }, - "Web/Accessibility/ARIA/Aplikacje_internetowe_i_ARIA_FAQ": { - "modified": "2019-03-23T22:15:44.866Z", + "Web/HTML/Element/a": { + "modified": "2020-10-15T21:11:09.186Z", "contributors": [ - "konradluka" + "DoctorLarva", + "teoli", + "Ptak82", + "Flaneur", + "Mgjbot", + "Diablownik", + "Miczek", + "Witia", + "Chlopczyk" ] }, - "Web/Bezpieczeństwo": { - "modified": "2019-11-16T15:40:23.627Z", + "Web/HTML/Element/abbr": { + "modified": "2020-10-15T21:11:07.075Z", "contributors": [ - "drm404" + "mweclaw", + "DoctorLarva", + "teoli", + "Ptak82", + "Witia", + "PablO" ] }, - "Web/Bezpieczeństwo/Certificate_Transparency": { - "modified": "2019-11-16T15:16:54.228Z", + "Web/HTML/Element/acronym": { + "modified": "2020-10-15T21:18:53.517Z", "contributors": [ - "drm404" + "DoctorLarva", + "teoli", + "Witia", + "PablO", + "Ptak82", + "VooEak" ] }, - "Web/Bezpieczeństwo/Podstawy_bezpieczenstwa_informacji": { - "modified": "2019-11-16T15:41:44.248Z", + "Web/HTML/Element/address": { + "modified": "2020-10-15T21:18:19.318Z", "contributors": [ - "drm404" + "DoctorLarva", + "teoli", + "Wimmer", + "Witia", + "PablO", + "Ptak82", + "Taken" ] }, - "Web/Bezpieczeństwo/Same-origin_policy": { - "modified": "2019-11-23T14:30:59.726Z", + "Web/HTML/Element/applet": { + "modified": "2019-01-22T18:16:53.745Z", "contributors": [ - "drm404" + "teoli", + "Mgjbot", + "Ptak82", + "Witia" ] }, - "Web/Bezpieczeństwo/Subresource_Integrity": { - "modified": "2020-10-15T22:24:54.815Z", + "Web/HTML/Element/aside": { + "modified": "2019-03-23T22:52:23.279Z", "contributors": [ - "drm404" + "bzajcev", + "Royserg", + "buli", + "dianafa" ] }, - "Web/CSS": { - "modified": "2019-09-11T03:38:26.790Z", + "Web/HTML/Element/b": { + "modified": "2019-03-24T00:12:35.612Z", "contributors": [ - "SphinxKnight", - "mitelak", + "ckyambitny", + "piecioshka", "teoli", - "Rokuzo", - "splewako", - "mirekczechxmm", - "ethertank", - "yecril71pl", - "Bedi", - "Mgjbot", + "DD0101", "Ptak82", - "Takenbot", - "gandalf", - "Zwierz", - "Jan Dudek", - "Anonymous", - "Dria", - "Justdave" - ] - }, - "Web/CSS/-moz-box-align": { - "modified": "2019-03-23T23:46:56.187Z", - "contributors": [ - "teoli", - "Bedi", - "Mgjbot", "Witia", - "Ptak82" + "PablO" ] }, - "Web/CSS/-moz-box-flex": { - "modified": "2019-03-23T23:46:57.781Z", + "Web/HTML/Element/base": { + "modified": "2020-10-15T21:18:53.027Z", "contributors": [ + "DoctorLarva", "teoli", - "Bedi", "Ptak82", - "Mgjbot", "Witia" ] }, - "Web/CSS/-moz-box-orient": { - "modified": "2019-03-23T23:45:19.839Z", + "Web/HTML/Element/basefont": { + "modified": "2019-01-22T18:17:17.900Z", "contributors": [ "teoli", - "Mgjbot", "Witia" ] }, - "Web/CSS/-moz-box-pack": { - "modified": "2019-03-23T23:45:20.022Z", + "Web/HTML/Element/bdo": { + "modified": "2019-03-18T21:12:41.027Z", "contributors": [ "teoli", - "Mgjbot", - "Ptak82", "Witia" ] }, - "Web/CSS/-moz-image-region": { - "modified": "2019-03-23T23:59:50.714Z", + "Web/HTML/Element/bgsound": { + "modified": "2019-03-18T21:12:41.505Z", "contributors": [ "teoli", - "Filemon", - "Ptak82", - "Mgjbot", "Witia" ] }, - "Web/CSS/-moz-outline-color": { - "modified": "2019-01-16T13:39:33.289Z", + "Web/HTML/Element/big": { + "modified": "2019-03-18T21:12:41.356Z", "contributors": [ "teoli", - "FredB", - "Mgjbot", - "Ptak82", - "Witia" + "ethertank", + "Witia", + "PablO", + "Ptak82" ] }, - "Web/CSS/-moz-outline-radius": { - "modified": "2019-03-23T23:45:24.765Z", + "Web/HTML/Element/blink": { + "modified": "2019-03-18T21:12:46.854Z", "contributors": [ "teoli", - "Mgjbot", - "Witia" + "ethertank", + "Oskarre", + "Witia", + "Marcoos", + "PablO", + "Ptak82" ] }, - "Web/CSS/-moz-outline-radius-bottomleft": { - "modified": "2019-03-23T23:12:35.081Z", + "Web/HTML/Element/blockquote": { + "modified": "2019-03-18T21:12:41.202Z", "contributors": [ "teoli", - "Mgjbot", - "Witia" + "ethertank", + "Witia", + "Ptak82", + "PablO", + "VooEak" ] }, - "Web/CSS/-moz-outline-radius-bottomright": { - "modified": "2019-03-23T23:29:51.587Z", + "Web/HTML/Element/body": { + "modified": "2020-10-15T22:04:09.245Z", "contributors": [ - "teoli", - "Mgjbot", - "Witia" + "DoctorLarva", + "TheViolence" ] }, - "Web/CSS/-moz-outline-radius-topleft": { - "modified": "2019-03-23T22:49:53.395Z", + "Web/HTML/Element/br": { + "modified": "2020-05-17T12:48:05.344Z", "contributors": [ + "chrisdavidmills", "teoli", - "Mgjbot", - "Witia" + "ethertank", + "Chrisraven", + "Witia", + "PablO", + "Ptak82" ] }, - "Web/CSS/:-moz-last-node": { - "modified": "2019-03-23T23:46:40.975Z", + "Web/HTML/Element/center": { + "modified": "2019-03-18T21:12:43.021Z", "contributors": [ "teoli", - "Abc" + "Witia" ] }, - "Web/CSS/:active": { - "modified": "2019-03-23T22:13:14.805Z", + "Web/HTML/Element/cite": { + "modified": "2019-03-18T21:12:43.234Z", "contributors": [ - "devMike" + "teoli", + "Witia" ] }, - "Web/CSS/:after": { - "modified": "2019-03-23T23:59:14.262Z", + "Web/HTML/Element/code": { + "modified": "2019-03-18T21:12:48.188Z", "contributors": [ - "OnufryKlaczynski", - "Gut6", "teoli", - "lukasz.jezierski", - "Mgjbot", + "ethertank", + "xaky", "Ptak82", - "Abc" + "Witia", + "PablO" ] }, - "Web/CSS/:before": { - "modified": "2019-03-23T23:59:14.388Z", + "Web/HTML/Element/dd": { + "modified": "2019-01-22T18:16:58.770Z", "contributors": [ - "RudyPL", "teoli", - "lukasz.jezierski", - "Mgjbot", - "Ptak82", - "Abc" + "Witia", + "PablO", + "Ptak82" ] }, - "Web/CSS/:empty": { - "modified": "2019-03-23T23:51:52.904Z", + "Web/HTML/Element/details": { + "modified": "2019-03-23T22:08:06.664Z", "contributors": [ - "wbamberg", - "teoli", - "Mgjbot", - "Abc", - "Marcoos" + "PawelekS" ] }, - "Web/CSS/:first-child": { - "modified": "2019-01-16T15:50:56.106Z", + "Web/HTML/Element/div": { + "modified": "2020-10-15T22:05:09.972Z", "contributors": [ - "teoli", - "Mgjbot", - "Abc" + "Vactraj" ] }, - "Web/CSS/:first-letter": { - "modified": "2020-10-22T10:28:54.773Z", + "Web/HTML/Element/dl": { + "modified": "2019-03-23T23:43:11.633Z", "contributors": [ - "Maciej_Grycz", + "riren", "teoli", - "Abc" + "Witia", + "PablO", + "Ptak82", + "VooEak" ] }, - "Web/CSS/:first-node": { - "modified": "2019-03-23T23:46:41.088Z", + "Web/HTML/Element/dt": { + "modified": "2019-01-22T18:16:54.805Z", "contributors": [ "teoli", - "Abc" + "Witia" ] }, - "Web/CSS/:hover": { - "modified": "2020-10-15T22:02:36.417Z", + "Web/HTML/Element/em": { + "modified": "2019-01-22T18:16:58.767Z", "contributors": [ - "darqoo" + "teoli", + "Witia", + "PablO", + "VooEak", + "Ptak82" ] }, - "Web/CSS/:lang": { - "modified": "2019-03-23T23:46:41.214Z", + "Web/HTML/Element/head": { + "modified": "2020-10-15T22:13:05.849Z", "contributors": [ - "teoli", - "Abc" + "DoctorLarva" ] }, - "Web/CSS/:last-child": { - "modified": "2019-01-16T15:59:53.475Z", + "Web/HTML/Element/hr": { + "modified": "2019-03-18T21:12:44.154Z", "contributors": [ + "mmiszy", "teoli", - "Mgjbot", - "Abc" + "Chrisraven", + "Witia", + "DeyV", + "PablO", + "VooEak", + "Ptak82" ] }, - "Web/CSS/:link": { - "modified": "2019-03-23T22:16:42.626Z", + "Web/HTML/Element/html": { + "modified": "2020-10-15T21:18:49.847Z", "contributors": [ - "PolskiSwir345" + "DoctorLarva", + "teoli", + "Witia", + "PablO", + "Ptak82" ] }, - "Web/CSS/:not": { - "modified": "2020-09-11T05:10:49.171Z", + "Web/HTML/Element/i": { + "modified": "2019-03-18T21:12:48.359Z", "contributors": [ - "gyzamaz", "teoli", - "Abc", - "Ptak82" + "lukasz.jezierski", + "Ptak82", + "Witia", + "PablO" ] }, - "Web/CSS/:root": { - "modified": "2019-03-23T23:46:39.020Z", + "Web/HTML/Element/iframe": { + "modified": "2020-10-15T22:25:26.006Z", "contributors": [ - "teoli", - "Abc" + "drm404" ] }, - "Web/CSS/@document": { - "modified": "2019-03-23T22:42:17.895Z", + "Web/HTML/Element/kbd": { + "modified": "2019-03-18T21:12:41.856Z", "contributors": [ "teoli", - "Mgjbot", - "Ptak82", "Witia", - "Bedi" + "Ptak82" ] }, - "Web/CSS/@import": { - "modified": "2019-03-23T23:43:24.900Z", + "Web/HTML/Element/li": { + "modified": "2019-01-22T18:16:42.410Z", "contributors": [ "teoli", - "Mgjbot", + "Ptak82", "Witia" ] }, - "Web/CSS/@media": { - "modified": "2019-03-23T23:45:53.850Z", + "Web/HTML/Element/link": { + "modified": "2020-10-15T21:16:11.088Z", "contributors": [ + "DoctorLarva", "teoli", "Ptak82", "Mgjbot", "Witia" ] }, - "Web/CSS/@supports": { - "modified": "2019-03-23T23:11:14.907Z", + "Web/HTML/Element/marquee": { + "modified": "2019-03-18T21:12:40.898Z", "contributors": [ - "fscholz", - "kamil09875", - "P0lip" + "teoli", + "ethertank", + "Witia", + "PablO", + "Ptak82", + "VooEak" ] }, - "Web/CSS/Attribute_selectors": { - "modified": "2020-10-15T22:29:59.639Z", + "Web/HTML/Element/meta": { + "modified": "2020-10-15T22:33:44.945Z", "contributors": [ - "n.lobodzinski" + "DoctorLarva" ] }, - "Web/CSS/CSS_Colors": { - "modified": "2019-03-23T22:10:25.437Z", + "Web/HTML/Element/ol": { + "modified": "2019-03-18T21:12:42.613Z", "contributors": [ - "Krenair" + "teoli", + "Witia" ] }, - "Web/CSS/CSS_Colors/Narzedzie_doboru_kolorow": { - "modified": "2020-10-30T23:18:14.820Z", + "Web/HTML/Element/p": { + "modified": "2019-03-23T23:43:14.955Z", "contributors": [ - "makabeus", - "olkaboch" + "riren", + "teoli", + "Witia" ] }, - "Web/CSS/CSS_Flexible_Box_Layout": { - "modified": "2019-03-18T21:39:51.689Z", + "Web/HTML/Element/q": { + "modified": "2019-03-18T21:12:43.446Z", "contributors": [ - "andrzejkrecicki" + "teoli", + "Witia" ] }, - "Web/CSS/CSS_Grid_Layout": { - "modified": "2020-04-30T03:28:17.468Z", + "Web/HTML/Element/ruby": { + "modified": "2020-10-15T22:17:22.321Z", "contributors": [ - "taboritis", - "Miszau", - "CreateWWW" + "gawronskijakub0" ] }, - "Web/CSS/CSS_Grid_Layout/Auto-placement_in_CSS_Grid_Layout": { - "modified": "2020-03-02T06:06:47.611Z", + "Web/HTML/Element/s": { + "modified": "2019-01-22T18:17:00.050Z", "contributors": [ - "Miszau" + "teoli", + "Ptak82", + "Witia", + "PablO", + "VooEak" ] }, - "Web/CSS/CSS_Grid_Layout/Realizacja_typowych_ukladow_za_pomoca_ukladu_siatki_CSS": { - "modified": "2019-05-22T06:37:48.964Z", + "Web/HTML/Element/samp": { + "modified": "2019-03-18T21:12:42.806Z", "contributors": [ - "DominikKowalczyk", - "vbert" + "teoli", + "Witia" ] }, - "Web/CSS/CSS_Reference": { - "modified": "2019-03-24T00:14:16.483Z", + "Web/HTML/Element/section": { + "modified": "2020-10-15T21:57:30.404Z", + "contributors": [ + "0ctothorp", + "PaG" + ] + }, + "Web/HTML/Element/small": { + "modified": "2019-03-18T21:12:40.707Z", "contributors": [ "teoli", - "lucasgrzella", - "ethertank", - "tregagnon", - "yecril71pl", - "zag19922", "Witia", - "Mgjbot", - "Abc", - "Bedi", - "Killerowski", + "PablO", "Ptak82" ] }, - "Web/CSS/CSS_Selectors": { - "modified": "2020-06-02T17:26:22.713Z", + "Web/HTML/Element/span": { + "modified": "2019-03-18T20:55:12.696Z", + "contributors": [ + "makidenio", + "xd1010", + "teoli", + "EURO-DOM" + ] + }, + "Web/HTML/Element/strong": { + "modified": "2019-03-18T21:12:41.689Z", + "contributors": [ + "teoli", + "Witia", + "ethertank", + "Ptak82", + "PablO", + "VooEak" + ] + }, + "Web/HTML/Element/title": { + "modified": "2020-10-15T22:13:08.106Z", + "contributors": [ + "DoctorLarva" + ] + }, + "Web/HTML/Element/tt": { + "modified": "2019-03-18T21:12:41.995Z", + "contributors": [ + "teoli", + "Witia" + ] + }, + "Web/HTML/Element/ul": { + "modified": "2019-03-18T21:12:42.250Z", + "contributors": [ + "teoli", + "Witia" + ] + }, + "Web/HTML/Element/video": { + "modified": "2019-03-23T22:58:24.967Z", + "contributors": [ + "wbamberg", + "Trebor" + ] + }, + "Web/HTML/Global_attributes": { + "modified": "2019-03-23T22:13:55.813Z", + "contributors": [ + "HynekMartin751", + "sideshowbarker" + ] + }, + "Web/HTML/Global_attributes/tabindex": { + "modified": "2019-03-23T22:14:07.727Z", + "contributors": [ + "drm404" + ] + }, + "Web/HTTP": { + "modified": "2019-11-25T15:44:56.508Z", + "contributors": [ + "drm404", + "sideshowbarker" + ] + }, + "Web/HTTP/Authentication": { + "modified": "2020-10-01T05:02:44.386Z", + "contributors": [ + "dannyplaster21" + ] + }, + "Web/HTTP/Headers": { + "modified": "2019-03-18T21:37:58.840Z", + "contributors": [ + "Alpha" + ] + }, + "Web/HTTP/Headers/Cache-Control": { + "modified": "2020-10-15T22:03:23.970Z", + "contributors": [ + "myhau", + "stopsopa" + ] + }, + "Web/HTTP/Headers/Referrer-Policy": { + "modified": "2020-10-15T22:25:31.082Z", + "contributors": [ + "drm404" + ] + }, + "Web/JavaScript": { + "modified": "2020-03-12T19:36:18.888Z", + "contributors": [ + "SphinxKnight", + "SuperMaksio", + "JWPB", + "mitelak", + "Errorino", + "mptak", + "asbud", + "Miras", + "teoli", + "Rokuzo", + "safjanowski", + "ggolebio", + "ethertank", + "kartofelek007", + "grzegorz", + "Mgjbot", + "Ptak82", + "Wilq32", + "Internauta1024A", + "Verruckt", + "gandalf", + "Marcoos", + "Ruby", + "Dria" + ] + }, + "Web/JavaScript/EventLoop": { + "modified": "2020-03-12T19:42:17.470Z", + "contributors": [ + "Qba91", + "przemdz", + "mieszczans", + "kpastuszka", + "cocafin" + ] + }, + "Web/JavaScript/Guide": { + "modified": "2020-03-12T19:38:33.908Z", + "contributors": [ + "malu", + "fscholz", + "teoli", + "splewako", + "gieerzetka", + "rakowaty" + ] + }, + "Web/JavaScript/Guide/Control_flow_and_error_handling": { + "modified": "2020-03-12T19:43:07.742Z", + "contributors": [ + "Konrad007", + "AndrzejSala", + "lukasz-jakub-adamczuk", + "Mateusz", + "maciejmarczak" + ] + }, + "Web/JavaScript/Guide/Introduction": { + "modified": "2020-03-12T19:41:24.970Z", + "contributors": [ + "Alka", + "xolir", + "Mlodyemoka" + ] + }, + "Web/JavaScript/Guide/Iterators_and_Generators": { + "modified": "2020-03-12T19:45:59.758Z", + "contributors": [ + "ThinCan", + "CreateWWW", + "starsep", + "labs4apps" + ] + }, + "Web/JavaScript/Guide/Loops_and_iteration": { + "modified": "2020-03-12T19:42:57.032Z", + "contributors": [ + "Patryk-Holody", + "SphinxKnight", + "AndrzejSala", + "thekyeZ" + ] + }, + "Web/JavaScript/Reference/Classes": { + "modified": "2020-10-29T06:45:58.471Z", + "contributors": [ + "michalmarchewczyk", + "Ojdana11", + "freszyk", + "MichalKarbownik", + "artmiron", + "labs4apps", + "gavinhungry" + ] + }, + "Web/JavaScript/Reference/Classes/Private_class_fields": { + "modified": "2020-10-22T08:52:10.875Z", + "contributors": [ + "michalmarchewczyk" + ] + }, + "Web/JavaScript/Reference/Classes/Public_class_fields": { + "modified": "2020-10-15T22:35:06.679Z", + "contributors": [ + "michalmarchewczyk" + ] + }, + "Web/JavaScript/Reference/Classes/extends": { + "modified": "2020-10-15T22:35:04.841Z", + "contributors": [ + "michalmarchewczyk" + ] + }, + "Web/JavaScript/Reference/Classes/static": { + "modified": "2020-10-21T19:35:52.117Z", + "contributors": [ + "michalmarchewczyk", + "jangromko" + ] + }, + "Web/JavaScript/Reference/Errors": { + "modified": "2020-03-12T19:45:52.052Z", + "contributors": [ + "devMike", + "Sheppy" + ] + }, + "Web/JavaScript/Reference/Errors/Invalid_array_length": { + "modified": "2020-03-12T19:49:38.261Z", + "contributors": [ + "jangromko" + ] + }, + "Web/JavaScript/Reference/Errors/Invalid_date": { + "modified": "2020-11-22T22:16:46.988Z", + "contributors": [ + "jangromko" + ] + }, + "Web/JavaScript/Reference/Errors/JSON_bad_parse": { + "modified": "2020-03-12T19:49:40.890Z", + "contributors": [ + "jangromko" + ] + }, + "Web/JavaScript/Reference/Errors/Missing_curly_after_function_body": { + "modified": "2020-11-22T22:43:32.569Z", + "contributors": [ + "jangromko" + ] + }, + "Web/JavaScript/Reference/Errors/Missing_initializer_in_const": { + "modified": "2020-03-12T19:49:39.699Z", + "contributors": [ + "jangromko" + ] + }, + "Web/JavaScript/Reference/Errors/Missing_parenthesis_after_argument_list": { + "modified": "2020-11-22T22:32:16.181Z", + "contributors": [ + "jangromko" + ] + }, + "Web/JavaScript/Reference/Errors/Missing_semicolon_before_statement": { + "modified": "2020-03-31T15:55:43.969Z", + "contributors": [ + "kepka7044", + "Comandorekk" + ] + }, + "Web/JavaScript/Reference/Errors/More_arguments_needed": { + "modified": "2020-03-12T19:46:20.545Z", + "contributors": [ + "krzmig", + "saulgajda" + ] + }, + "Web/JavaScript/Reference/Errors/Not_a_function": { + "modified": "2020-03-12T19:46:20.885Z", + "contributors": [ + "Vvitek" + ] + }, + "Web/JavaScript/Reference/Errors/Not_defined": { + "modified": "2020-03-12T19:45:53.813Z", + "contributors": [ + "saulgajda", + "szopenkrk" + ] + }, + "Web/JavaScript/Reference/Errors/Property_access_denied": { + "modified": "2020-10-26T12:04:59.811Z", + "contributors": [ + "jangromko" + ] + }, + "Web/JavaScript/Reference/Errors/Unexpected_type": { + "modified": "2020-03-12T19:46:02.310Z", + "contributors": [ + "devMike" + ] + }, + "Web/JavaScript/Reference/Functions": { + "modified": "2020-03-12T19:45:21.066Z", + "contributors": [ + "wilfreddesert" + ] + }, + "Web/JavaScript/Reference/Functions/get": { + "modified": "2020-03-12T19:45:32.396Z", + "contributors": [ + "Rednaxela700", + "pawelk92", + "lukaszewczak", + "pkubowicz", + "broslukasz" + ] + }, + "Web/JavaScript/Reference/Functions/set": { + "modified": "2020-10-15T22:11:19.769Z", + "contributors": [ + "jedzej" + ] + }, + "Web/JavaScript/Shells": { + "modified": "2020-03-12T19:48:00.854Z", + "contributors": [ + "PiotrMuskalski" + ] + }, + "Web/JavaScript/Typed_arrays": { + "modified": "2020-03-12T19:39:10.889Z", + "contributors": [ + "teoli", + "Kuzirashi" + ] + }, + "Web/MathML": { + "modified": "2019-03-24T00:03:16.756Z", "contributors": [ - "ramiy" + "tjasinski", + "teoli", + "fred.wang", + "Bedi", + "Ptak82", + "gandalf" ] }, - "Web/CSS/CSS_Selectors/Użycie_pseudoklasy_:target_w_selektorach": { - "modified": "2020-06-02T17:26:27.575Z", + "Web/Progressive_web_apps": { + "modified": "2020-03-21T20:07:05.090Z", "contributors": [ - "zuzabrzozowska" + "abes21111984" ] }, - "Web/CSS/Częste_pytania_o_CSS": { - "modified": "2020-07-16T22:25:45.500Z", + "Web/SVG": { + "modified": "2019-03-23T23:48:48.350Z", "contributors": [ + "KateSturmey", "teoli", - "Mgjbot", + "Bedi", "Ptak82", - "Witia", - "Ruby", + "Verruckt", + "Mgjbot", + "Takenbot", "gandalf", - "Listek", - "Zen" + "Dria" ] }, - "Web/CSS/Dziedziczenie": { - "modified": "2019-01-16T15:34:17.593Z", + "Web/SVG/Element": { + "modified": "2019-03-23T22:14:00.084Z", "contributors": [ - "teoli", - "Mgjbot", - "Witia", - "Ptak82", - "Godlark", - "Bedi", - "Killerowski", - "Diablownik" + "Jeremie" ] }, - "Web/CSS/ID_selectors": { - "modified": "2019-03-23T22:16:24.379Z", + "Web/SVG/Element/a": { + "modified": "2019-03-23T22:13:56.546Z", "contributors": [ - "ahdarpl", - "PolskiSwir345" + "devMike" ] }, - "Web/CSS/Inne_zasoby": { - "modified": "2019-01-16T16:10:29.072Z", + "Web/SVG/Element/animateTransform": { + "modified": "2020-10-15T21:53:46.335Z", "contributors": [ - "teoli", - "Mgjbot", - "Ptak82", - "gandalf", - "Dria" + "SphinxKnight", + "devMike" ] }, - "Web/CSS/Margin": { - "modified": "2020-10-15T21:09:12.393Z", + "Web/Security/Securing_your_site": { + "modified": "2019-11-23T17:31:47.688Z", "contributors": [ - "trusohamn", - "wbamberg", - "Terite", - "fscholz", - "teoli", - "yecril71pl", - "hADeSik", - "Wasiqs" + "mfuji09" ] }, - "Web/CSS/Media_Queries": { - "modified": "2019-03-23T22:42:34.065Z", + "Web/Tutorials": { + "modified": "2019-03-23T23:07:22.234Z", "contributors": [ - "teoli" + "mat-bi", + "RafalDe", + "heretyk52", + "Tomek+" ] }, - "Web/CSS/Media_Queries/Using_media_queries": { - "modified": "2019-10-10T16:46:21.792Z", + "Web/XML": { + "modified": "2020-10-12T08:15:16.866Z", "contributors": [ - "powelski", - "Hymtos", - "Sebastianz", - "mrstork", - "malayaleecoder", - "Asqan" + "SphinxKnight", + "adrianpiatkiewicz280", + "MattMaestro123", + "ExE-Boss" ] }, - "Web/CSS/Mozilla_Extensions": { - "modified": "2019-03-24T00:14:13.075Z", + "Web/XPath": { + "modified": "2019-01-16T14:32:59.084Z", "contributors": [ "ExE-Boss", - "SphinxKnight", - "teoli", - "tregagnon", "fscholz", - "Filemon", "Mgjbot", - "Ptak82", + "Flaneur", "Bedi", - "Witia" - ] - }, - "Web/CSS/Na_początek": { - "modified": "2019-03-23T23:43:32.380Z", - "contributors": [ - "teoli", - "thebodzio", "Ptak82", - "Verruckt", - "Mgjbot", - "gandalf", - "Takenbot", - "Zwierz", - "Witia", - "Anonymous", "Marcoos", - "Dria" + "gandalf" ] }, - "Web/CSS/Na_początek/Bloki": { - "modified": "2019-03-23T23:59:15.814Z", + "Web/XSLT": { + "modified": "2019-01-16T14:32:05.636Z", "contributors": [ - "teoli", + "chrisdavidmills", "lukasz.jezierski", "Verruckt", - "gandalf", - "Takenbot", "Ptak82", - "Przemys", - "Anonymous", - "Witia" - ] - }, - "Web/CSS/Na_początek/Czym_jest_CSS": { - "modified": "2019-03-23T23:43:31.084Z", - "contributors": [ - "bazilazi", - "teoli", - "Verruckt", "Mgjbot", "gandalf", - "Takenbot", - "Ptak82", - "Taken", - "Witia", + "Jan Dudek", "Anonymous", - "Marcoos", "Dria" ] }, - "Web/CSS/Na_początek/Czytelny_CSS": { - "modified": "2019-03-23T23:47:41.199Z", + "Web/XSLT/Element": { + "modified": "2019-03-23T23:47:58.568Z", "contributors": [ - "teoli", + "ExE-Boss", + "chrisdavidmills", + "Diablownik", "Mgjbot", - "Verruckt", - "gandalf", - "Takenbot", - "Ptak82", - "Ruby", - "Sheppy", - "Anonymous", - "Witia" + "Ptak82" ] }, - "Web/CSS/Na_początek/Grafika_SVG": { - "modified": "2019-03-23T23:43:36.279Z", + "Web/XSLT/Element/element": { + "modified": "2019-01-16T16:02:07.174Z", "contributors": [ - "teoli", - "Verruckt", - "gandalf", - "Takenbot", - "Ptak82", - "Witia" + "ExE-Boss", + "chrisdavidmills", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/CSS/Na_początek/Jak_działa_CSS": { - "modified": "2019-03-23T23:43:25.888Z", + "WebAssembly": { + "modified": "2020-05-12T10:24:52.590Z", "contributors": [ - "teoli", - "Verruckt", - "Ptak82", - "Zibek", - "Mgjbot", - "gandalf", - "Takenbot", - "Ruby", - "Anonymous", - "Witia", - "Marcoos", - "Dria" + "mbiesiad", + "AndrzejSala" ] }, - "Web/CSS/Na_początek/JavaScript": { - "modified": "2019-03-23T23:43:40.283Z", + "Mozilla/Firefox/Releases/3/Updating_web_applications": { + "modified": "2019-03-23T23:59:55.485Z", "contributors": [ - "teoli", - "Verruckt", + "wbamberg", + "Sheppy", + "zarat", "gandalf", - "Takenbot", + "Mgjbot", "Ptak82", - "Anonymous", - "Witia" + "Flaneur", + "Cardil" ] }, - "Web/CSS/Na_początek/Kaskadowość_i_dziedziczenie": { - "modified": "2019-03-23T23:43:24.400Z", + "orphaned/Aktualizacja_rozszerzeń_dla_Firefoksa_3": { + "modified": "2019-12-13T20:34:55.140Z", "contributors": [ - "teoli", - "Verruckt", - "Mgjbot", - "gandalf", - "Takenbot", - "Ptak82", + "wbamberg", + "fscholz", "Sheppy", + "zarat", "Witia", - "Anonymous" + "Ptak82", + "Patryk Węgrzynek", + "Mgjbot", + "Bedi", + "Peyn", + "Diablownik", + "Proboszcz" ] }, - "Web/CSS/Na_początek/Kolor": { - "modified": "2019-03-23T23:48:35.027Z", + "Mozilla/Firefox/Releases/2/Updating_extensions": { + "modified": "2019-03-23T23:50:53.722Z", "contributors": [ - "teoli", + "wbamberg", "Mgjbot", - "Verruckt", - "Ptak82", - "gandalf", - "Takenbot", - "Ruby", - "Anonymous", - "Mikolaj" + "Ptak82" ] }, - "Web/CSS/Na_początek/Listy": { - "modified": "2019-03-23T23:44:37.412Z", + "orphaned/API_dostępu_do_danych_z_kanałów": { + "modified": "2019-03-23T23:44:27.416Z", "contributors": [ - "teoli", - "Sheppy", - "Delor", - "Verruckt", + "SphinxKnight", + "Bedi", "gandalf", - "Takenbot", - "Ptak82", - "Anonymous", - "Witia" + "Ptak82" ] }, - "Web/CSS/Na_początek/Media": { - "modified": "2019-03-23T23:43:37.766Z", + "Mozilla/Firefox/Releases/2/Security_changes": { + "modified": "2019-03-23T23:54:28.429Z", "contributors": [ - "teoli", - "Verruckt", - "gandalf", - "Takenbot", + "wbamberg", + "Mgjbot", + "Ptak82", + "RafalRawicki" + ] + }, + "Mozilla/Firefox/Releases/1.5/What_s_new_in_1.5_alpha": { + "modified": "2019-03-23T23:46:10.418Z", + "contributors": [ + "wbamberg", + "SphinxKnight", + "pkubowicz", "Ptak82", - "Anonymous", - "Witia" + "Staszyna", + "gandalf" ] }, - "Web/CSS/Na_początek/Po_co_używać_CSS": { - "modified": "2019-03-23T23:43:30.892Z", + "Glossary/DHTML": { + "modified": "2019-03-23T23:44:56.232Z", "contributors": [ - "teoli", - "Verruckt", "Mgjbot", "gandalf", - "Takenbot", "Ptak82", - "Taken", - "Ruby", - "Witia", - "Anonymous", - "Marcoos", "Dria" ] }, - "Web/CSS/Na_początek/Selektory": { - "modified": "2019-03-23T23:59:17.263Z", + "Web/API/Document_Object_Model": { + "modified": "2019-01-16T16:05:36.652Z", "contributors": [ - "Miras", - "teoli", - "lukasz.jezierski", + "Ptak82", "Mgjbot", - "Verruckt", - "gandalf", "Takenbot", - "Ptak82", - "Ruby", - "Cleriic", - "Witia", - "Anonymous" + "Jan Dudek" ] }, - "Web/CSS/Na_początek/Style_tekstowe": { - "modified": "2019-03-23T23:47:47.884Z", + "Web/API/Document_Object_Model/Examples": { + "modified": "2019-03-23T23:50:20.825Z", "contributors": [ - "teoli", + "pablovsky", + "mklkj", + "khalid32", + "Ptak82", "Mgjbot", - "Verruckt", + "Bedi" + ] + }, + "Web/API/Document_Object_Model/Introduction": { + "modified": "2019-03-23T23:46:08.857Z", + "contributors": [ + "fscholz", + "jsx", + "AshfaqHossain", + "Bedi", "Ptak82", - "Psz", - "gandalf", + "Diablownik", + "Mgjbot", "Takenbot", - "Sheppy", - "Witia", - "Anonymous" + "Anonymous", + "Jan Dudek" ] }, - "Web/CSS/Na_początek/Tables": { - "modified": "2019-03-23T23:43:41.150Z", + "orphaned/DOM_i_JavaScript": { + "modified": "2019-12-13T21:10:08.496Z", "contributors": [ - "teoli", - "ethertank", - "Verruckt", - "gandalf", - "Takenbot", + "wbamberg", + "lukasz.jezierski", + "Re set", + "Diablownik", + "Rev", "Ptak82", - "Ruby", - "Anonymous", - "Witia" + "Bedi", + "Internauta1024A" ] }, - "Web/CSS/Na_początek/Układ": { - "modified": "2019-03-23T23:44:36.876Z", + "Web/API/GlobalEventHandlers/onkeydown": { + "modified": "2019-03-23T23:46:41.310Z", "contributors": [ - "teoli", - "Sheppy", - "Delor", - "Verruckt", - "Witia", - "gandalf", - "Takenbot", + "AshfaqHossain", + "Mgjbot", "Ptak82", - "Anonymous" + "Jan Dudek" ] }, - "Web/CSS/Prywatnosc_i_znacznik_:visited": { - "modified": "2019-11-18T18:19:32.622Z", + "Mozilla/Firefox/Releases/1.5/Adapting_XUL_Applications_for_Firefox_1.5": { + "modified": "2019-03-23T23:45:42.063Z", "contributors": [ - "drm404" + "wbamberg", + "Diablownik", + "Ptak82", + "Bedi" ] }, - "Web/CSS/Rozszerzenia_WebKit": { - "modified": "2019-03-23T22:13:44.275Z", + "orphaned/Dynamiczne_zmiany_interfejsu_użytkownika_bazującego_na_XUL-u": { + "modified": "2019-03-23T23:46:45.617Z", "contributors": [ - "drm404" + "teoli", + "Mgjbot", + "Ptak82", + "Bedi" ] }, - "Web/CSS/Selektor_klasy": { - "modified": "2019-03-18T21:17:20.719Z", + "MDN/At_ten": { + "modified": "2019-03-23T22:43:45.633Z", "contributors": [ - "PolskiSwir345" + "RemigiuszBrzebrzycki", + "kamilcios" ] }, - "Web/CSS/Selektor_uniwersalny": { - "modified": "2020-10-15T22:09:36.180Z", + "orphaned/Firefox_-_potrzeba_wolności": { + "modified": "2019-03-23T23:40:17.616Z", "contributors": [ - "ahdarpl" + "gandalf" ] }, - "Web/CSS/Selektory_typu": { - "modified": "2020-10-15T21:17:26.155Z", + "orphaned/Firefox_3_dla_programistów": { + "modified": "2019-03-23T23:59:01.747Z", "contributors": [ - "ahdarpl", + "Sebastianz", "teoli", + "Ptak82", + "gandalf", + "Flaneur", "Witia", - "Abc" + "Mgjbot", + "Diablownik", + "VooEak", + "Bedi", + "Szaloony", + "Internauta1024A" ] }, - "Web/CSS/Skrócone_deklaracje_CSS": { - "modified": "2019-01-16T16:16:14.250Z", + "Games/Tutorials/2D_Breakout_game_pure_JavaScript/Bounce_off_the_walls": { + "modified": "2020-03-30T18:30:10.443Z", "contributors": [ - "teoli", - "gandalf", - "Ptak82" + "Jacqbus" ] }, - "Web/CSS/Using_CSS_custom_properties": { - "modified": "2020-03-20T12:27:19.253Z", + "Games/Tutorials/2D_Breakout_game_pure_JavaScript/Move_the_ball": { + "modified": "2020-03-30T18:31:36.346Z", "contributors": [ - "Andrzej_Gierszewski", - "chrisdavidmills", - "maciekpastuszka", - "Miras" + "Jacqbus" ] }, - "Web/CSS/Wartość_początkowa": { - "modified": "2019-01-16T15:33:31.155Z", + "Games/Tutorials/2D_Breakout_game_pure_JavaScript/Create_the_Canvas_and_draw_on_it": { + "modified": "2020-03-26T16:17:46.952Z", "contributors": [ - "teoli", - "Mgjbot", - "Ptak82", - "Witia", - "Killerowski", - "Bedi" + "Jacqbus" ] }, - "Web/CSS/appearance": { - "modified": "2019-03-23T23:34:43.549Z", + "Games/Tutorials/2D_Breakout_game_pure_JavaScript/Collision_detection": { + "modified": "2020-03-30T17:04:11.415Z", "contributors": [ - "ExE-Boss", - "teoli", - "Mgjbot", - "Rev", - "Witia" + "Jacqbus" ] }, - "Web/CSS/background": { - "modified": "2019-03-24T00:08:43.942Z", + "Glossary/Abstraction": { + "modified": "2019-03-18T21:25:50.244Z", "contributors": [ - "fatherJS", - "LuciusLuWroc", - "teoli", - "SphinxKnight", - "Yuichiro", - "Witia", - "Mgjbot", - "Kjj2", - "Ptak82" + "lukasz-otowski" ] }, - "Web/CSS/background-attachment": { - "modified": "2019-03-23T23:52:22.214Z", + "Glossary/Hypertext": { + "modified": "2019-05-29T12:14:13.625Z", "contributors": [ - "SphinxKnight", - "teoli", - "Witia", - "Mgjbot", - "Ptak82" + "DoctorLarva" ] }, - "Web/CSS/background-color": { - "modified": "2019-03-24T00:02:14.396Z", + "Glossary/Class": { + "modified": "2019-03-18T21:34:27.829Z", "contributors": [ - "LuciusLuWroc", - "SphinxKnight", - "teoli", - "Yuichiro", - "Witia", - "Mgjbot", - "Ptak82" + "elipinska" ] }, - "Web/CSS/background-image": { - "modified": "2019-03-23T23:52:27.446Z", + "Glossary/Cryptography": { + "modified": "2020-08-25T20:29:24.011Z", "contributors": [ - "teoli", - "SphinxKnight", - "Witia", - "ethertank", - "Sennin", - "Mgjbot", - "Ptak82" + "duduindo", + "hencel", + "jam1985" ] }, - "Web/CSS/background-origin": { - "modified": "2019-03-23T23:53:08.644Z", + "Glossary/Object": { + "modified": "2019-03-18T21:34:35.043Z", "contributors": [ - "teoli", - "Mgjbot", - "Ptak82", - "Witia" + "elipinska" ] }, - "Web/CSS/background-position": { - "modified": "2019-03-23T23:52:26.514Z", + "Glossary/Browser": { + "modified": "2019-05-29T09:55:44.088Z", "contributors": [ - "mrstork", - "teoli", - "Witia", - "Mgjbot", - "Ptak82" + "DoctorLarva", + "JohnnyDevX" ] }, - "Web/CSS/background-size": { - "modified": "2020-10-15T22:05:20.506Z", + "Glossary/Empty_element": { + "modified": "2019-05-29T20:22:35.850Z", "contributors": [ - "krzmaciek" + "DoctorLarva" ] }, - "Web/CSS/border": { - "modified": "2019-03-24T00:08:45.150Z", + "Glossary/Semantics": { + "modified": "2020-06-30T11:00:26.836Z", "contributors": [ - "wbamberg", - "Sebastianz", - "fscholz", - "teoli", - "Yuichiro", - "Ptak82", - "Mgjbot", - "Witia" + "krupinskij" ] }, - "Web/CSS/border-bottom": { - "modified": "2019-03-24T00:08:42.492Z", + "Games": { + "modified": "2019-09-09T15:33:17.920Z", "contributors": [ + "SphinxKnight", "wbamberg", - "fscholz", + "avllyx", + "nikkeh", + "pm093" + ] + }, + "Web/Guide/HTML/HTML5": { + "modified": "2019-06-28T04:18:42.824Z", + "contributors": [ + "Moniaesz", "teoli", - "Yuichiro", - "Witia", + "Jacob99", "Ptak82", - "Mgjbot" + "Teo" ] }, - "Web/CSS/border-bottom-color": { - "modified": "2019-03-24T00:08:41.085Z", + "Mozilla/Firefox/Releases/3/Notable_bugs_fixed": { + "modified": "2019-03-23T23:59:42.353Z", "contributors": [ "wbamberg", - "Sebastianz", - "fscholz", + "SphinxKnight", "teoli", - "Yuichiro", - "Witia", + "zarat", + "Bedi", + "Flaneur", "Mgjbot" ] }, - "Web/CSS/border-bottom-left-radius": { - "modified": "2019-03-24T00:13:32.442Z", + "Glossary/JSON": { + "modified": "2019-03-23T23:19:21.999Z", "contributors": [ - "teoli", - "FredB", - "Yuichiro", - "Mgjbot", - "Witia" + "jpanasiuk" ] }, - "Web/CSS/border-bottom-right-radius": { - "modified": "2019-03-23T22:00:34.638Z", + "Learn/Common_questions/How_does_the_Internet_work": { + "modified": "2020-08-13T04:00:30.686Z", "contributors": [ - "teoli", - "Yuichiro", - "Mgjbot", - "Witia" + "DoctorLarva" ] }, - "Web/CSS/border-bottom-style": { - "modified": "2019-03-23T23:07:16.600Z", + "Learn/Getting_started_with_the_web/How_the_Web_works": { + "modified": "2020-08-11T19:23:21.916Z", "contributors": [ - "wbamberg", - "fscholz", - "teoli", - "Yuichiro", - "Witia", - "Mgjbot", - "Ptak82" + "DoctorLarva" ] }, - "Web/CSS/border-bottom-width": { - "modified": "2019-04-09T10:53:28.059Z", + "Learn/JavaScript/Objects": { + "modified": "2020-10-10T09:26:19.271Z", "contributors": [ - "kamilpikula", - "wbamberg", - "fscholz", - "teoli", - "Yuichiro", - "Witia", - "Mgjbot" + "Margo1212", + "quart", + "malu", + "mat-bi" ] }, - "Web/CSS/border-collapse": { - "modified": "2019-03-23T23:52:40.166Z", + "Learn/JavaScript/First_steps/A_first_splash": { + "modified": "2020-07-16T22:30:20.788Z", "contributors": [ - "wbamberg", - "teoli", - "Witia", - "Ptak82", - "Mgjbot", - "Godlark" + "JWPB", + "olo936", + "mat-bi" ] }, - "Web/CSS/border-color": { - "modified": "2019-03-24T00:08:39.388Z", + "Learn/JavaScript/First_steps/What_went_wrong": { + "modified": "2020-07-16T22:30:35.448Z", "contributors": [ - "wbamberg", - "Sebastianz", - "fscholz", - "teoli", - "Yuichiro", - "Ptak82", - "Mgjbot", - "Bedi", - "Witia" + "mat-bi" ] }, - "Web/CSS/border-left": { - "modified": "2019-03-24T00:08:40.071Z", + "Learn/JavaScript/First_steps": { + "modified": "2020-07-16T22:29:53.878Z", "contributors": [ - "fscholz", - "teoli", - "Yuichiro", - "Ptak82", - "Mgjbot", - "Witia" + "JWPB", + "Davvidos" ] }, - "Web/CSS/border-left-color": { - "modified": "2019-03-24T00:08:42.040Z", + "Learn/JavaScript/First_steps/Math": { + "modified": "2020-09-03T15:45:26.516Z", "contributors": [ - "wbamberg", - "teoli", - "Yuichiro", - "Ptak82", - "Peyn", - "Bedi", - "Mgjbot" + "marek-rzepka" ] }, - "Web/CSS/border-left-style": { - "modified": "2019-01-16T14:12:55.502Z", + "Learn/JavaScript/First_steps/What_is_JavaScript": { + "modified": "2020-10-10T09:38:24.622Z", "contributors": [ - "teoli", - "Yuichiro", - "Ptak82", - "Killerowski" + "Margo1212", + "Kamieniu", + "mat-bi", + "asbud", + "maciej-w" ] }, - "Web/CSS/border-left-width": { - "modified": "2019-01-16T15:56:40.902Z", + "Learn/JavaScript/First_steps/Variables": { + "modified": "2020-09-03T15:16:05.291Z", "contributors": [ - "teoli", - "Killerowski" + "marek-rzepka", + "Majek", + "jakubjaros" ] }, - "Web/CSS/border-radius": { - "modified": "2019-03-24T00:08:41.749Z", + "Learn/Server-side/Express_Nodejs/Tutorial_local_library_website": { + "modified": "2020-10-13T17:24:53.764Z", "contributors": [ - "teoli", - "Yuichiro", - "Mgjbot", - "Witia" + "cs" ] }, - "Web/CSS/border-right": { - "modified": "2019-03-24T00:08:37.527Z", + "orphaned/Lista_komponentów_XPCOM": { + "modified": "2019-01-16T15:43:27.057Z", "contributors": [ - "fscholz", - "teoli", - "Yuichiro", - "Ptak82", "Mgjbot", - "Witia" + "Ptak82" ] }, - "Web/CSS/border-right-color": { - "modified": "2019-01-17T10:27:47.472Z", + "Glossary/Localization": { + "modified": "2019-03-23T23:54:20.898Z", "contributors": [ "teoli", - "Yuichiro", "Mgjbot", + "Verruckt", + "Bedi", "Ptak82", - "Bedi" + "Takenbot", + "Staszyna", + "gandalf" ] }, - "Web/CSS/border-right-style": { - "modified": "2019-01-16T14:13:03.482Z", + "orphaned/MDN/Contribute/Howto/Do_an_editorial_review": { + "modified": "2019-07-08T06:01:08.333Z", "contributors": [ - "teoli", - "Yuichiro", - "Ptak82", - "Killerowski" + "killaseo", + "ffipe", + "HeartbliT" ] }, - "Web/CSS/border-right-width": { - "modified": "2019-01-16T14:12:36.775Z", + "orphaned/MDN/Contribute/Howto/Create_an_MDN_account": { + "modified": "2019-01-16T21:13:56.739Z", "contributors": [ - "teoli", - "Yuichiro", - "Ptak82", - "Killerowski" + "wbamberg", + "Anan9492", + "kfrejlich", + "janciowodnik001" ] }, - "Web/CSS/border-spacing": { - "modified": "2019-03-23T23:52:36.355Z", + "orphaned/MDN/Contribute/Howto/Do_a_technical_review": { + "modified": "2019-03-23T22:33:16.816Z", "contributors": [ "wbamberg", - "teoli", - "Witia", - "Ptak82", - "Mgjbot", - "Peyn", - "Killerowski" + "Freelancer.MK" ] }, - "Web/CSS/border-style": { - "modified": "2020-05-16T15:18:40.832Z", + "orphaned/MDN/Contribute/Howto/Set_the_summary_for_a_page": { + "modified": "2019-03-23T23:06:52.359Z", "contributors": [ - "filip-rybczynski", "wbamberg", - "teoli", - "Yuichiro", - "Ptak82", - "Mgjbot", - "Diablownik", - "Witia" + "Anonymodous", + "mnowy41", + "Mlodyemoka", + "grunt666", + "przemekp1", + "jembezmamy" ] }, - "Web/CSS/border-top": { - "modified": "2019-03-24T00:08:37.828Z", + "orphaned/MDN/Contribute/Howto/Tag_JavaScript_pages": { + "modified": "2019-05-23T16:54:47.884Z", "contributors": [ - "fscholz", - "teoli", - "Yuichiro", - "Witia", - "Mgjbot" + "Azkel" ] }, - "Web/CSS/border-top-color": { - "modified": "2019-03-24T00:08:37.915Z", + "MDN/Guidelines/Writing_style_guide": { + "modified": "2020-09-30T15:31:07.174Z", "contributors": [ - "teoli", - "Yuichiro", - "Ptak82", - "Killerowski" + "chrisdavidmills", + "jswisher", + "killaseo", + "wbamberg", + "Arti", + "grunt666", + "Mlodyemoka", + "BogdanMDN", + "CYGAN" ] }, - "Web/CSS/border-top-left-radius": { - "modified": "2019-03-24T00:13:33.183Z", + "MDN/Yari": { + "modified": "2019-09-09T15:53:30.248Z", "contributors": [ - "teoli", - "FredB", - "Yuichiro", - "Mgjbot", - "Witia" + "SphinxKnight", + "tjasinski", + "wbamberg", + "lukaszwch" ] }, - "Web/CSS/border-top-right-radius": { - "modified": "2019-03-24T00:13:34.878Z", + "orphaned/Moduły_JavaScript": { + "modified": "2019-01-16T15:32:24.451Z", "contributors": [ - "teoli", - "FredB", "Mgjbot", - "Witia" + "Flaneur" ] }, - "Web/CSS/border-top-style": { - "modified": "2019-01-16T14:13:03.908Z", + "orphaned/Mozilla/Add-ons/WebExtensions/Getting_started_with_web-ext": { + "modified": "2019-03-18T21:02:41.503Z", "contributors": [ - "teoli", - "Yuichiro", - "Killerowski", - "Ptak82" + "marsjaninzmarsa" ] }, - "Web/CSS/border-top-width": { - "modified": "2019-01-16T14:12:55.405Z", + "Mozilla/Add-ons/WebExtensions/Your_first_WebExtension": { + "modified": "2020-12-12T09:20:57.064Z", "contributors": [ - "teoli", - "Yuichiro", - "Killerowski" + "jangromko", + "Sławek", + "Waterrail", + "oliwier1232", + "Ciepcin" ] }, - "Web/CSS/border-width": { - "modified": "2019-03-24T00:08:40.511Z", + "orphaned/Narzędzia_clone": { + "modified": "2019-01-16T20:19:23.793Z", "contributors": [ - "wbamberg", - "mrstork", - "teoli", - "Yuichiro", - "Witia", - "Mgjbot", - "Killerowski" + "voodoo81-81" ] }, - "Web/CSS/bottom": { - "modified": "2019-03-23T23:52:36.650Z", + "Tools/about:debugging": { + "modified": "2020-07-16T22:36:32.890Z", "contributors": [ - "fscholz", - "teoli", - "Witia", - "Mgjbot", - "Ptak82" + "programistka", + "Jacob99", + "BajlandoKG" ] }, - "Web/CSS/box-decoration-break": { - "modified": "2019-03-23T22:46:10.684Z", + "Tools/Browser_Toolbox": { + "modified": "2020-07-16T22:35:55.742Z", "contributors": [ - "teoli" + "Freelancer.MK" ] }, - "Web/CSS/box-direction": { - "modified": "2019-03-23T23:45:19.080Z", + "Tools/Debugger/How_to": { + "modified": "2020-07-16T22:35:08.058Z", "contributors": [ - "teoli", - "Mgjbot", - "Witia" + "jwhitlock", + "wbamberg" ] }, - "Web/CSS/box-shadow": { - "modified": "2019-03-23T23:02:53.881Z", + "Tools/Debugger": { + "modified": "2020-07-16T22:35:05.314Z", "contributors": [ - "Saganowsky", - "Sebastianz", - "Prinz_Rana", - "JJay" + "kaiga747", + "bassam", + "kuba1o3" ] }, - "Web/CSS/box-sizing": { - "modified": "2019-03-23T23:45:18.849Z", + "Tools": { + "modified": "2020-07-16T22:44:16.950Z", "contributors": [ - "zly", + "SphinxKnight", + "Katarzyna89", + "Arekusandoru", + "rolevicz", + "kasia725792", + "Zioberokr", + "Emerson2718", + "Bajerka86", + "alimar@poczta.onet.pl", + "Woren82", + "dawisko1", + "SCPD", "teoli", + "Andrzej.Salata", + "Kosia90", + "splewako", + "mirekczechxmm", + "Diablownik", + "Ptak82", "Mgjbot", - "Witia" + "Andreas Wuest", + "Listek", + "Dria" ] }, - "Web/CSS/clear": { - "modified": "2019-03-23T23:52:37.948Z", + "Tools/Page_Inspector/How_to": { + "modified": "2020-07-16T22:34:31.602Z", "contributors": [ - "wbamberg", - "teoli", - "Witia", - "Tomekperlak", - "Ptak82", - "Earthcitizen", - "Rev", - "Mgjbot" + "jwhitlock", + "sidgan" ] }, - "Web/CSS/clip": { - "modified": "2019-03-23T23:52:26.202Z", + "Tools/Page_Inspector/How_to/Open_the_Inspector": { + "modified": "2020-07-16T22:34:32.873Z", "contributors": [ - "wbamberg", - "mrstork", - "teoli", - "Witia", - "Ptak82" + "jwhitlock", + "kubutekf", + "Mlodyemoka" ] }, - "Web/CSS/color": { - "modified": "2019-01-16T15:32:14.428Z", + "Tools/Page_Inspector": { + "modified": "2020-07-16T22:34:28.762Z", "contributors": [ - "teoli", - "Mgjbot", - "Witia", - "Elwiz", - "Killerowski", - "Bedi" + "kubutekf", + "Mlodyemoka" ] }, - "Web/CSS/content": { - "modified": "2019-03-23T23:52:52.547Z", + "Tools/Page_Inspector/UI_Tour": { + "modified": "2020-07-16T22:34:49.477Z", "contributors": [ - "wbamberg", - "Guillaume-Heras", - "mrstork", - "malayaleecoder", - "teoli", - "Witia" + "kubutekf" ] }, - "Web/CSS/counter-increment": { - "modified": "2019-03-18T21:16:08.292Z", + "Tools/Performance/Flame_Chart": { + "modified": "2020-07-16T22:36:20.612Z", "contributors": [ - "teoli", - "Witia", - "Mgjbot", - "PablO", - "Ptak82" + "jwhitlock", + "ozzbrain" ] }, - "Web/CSS/counter-reset": { - "modified": "2019-03-23T23:52:36.024Z", + "Tools/Performance": { + "modified": "2020-07-16T22:36:13.164Z", "contributors": [ - "teoli", - "Witia", - "Mgjbot", - "PablO", - "Ptak82" + "jwhitlock", + "wbamberg" ] }, - "Web/CSS/cursor": { - "modified": "2019-03-23T23:52:40.510Z", + "Tools/Storage_Inspector": { + "modified": "2020-07-16T22:36:10.011Z", "contributors": [ - "wbamberg", - "teoli", - "Ptak82", - "Witia", - "Mgjbot", - "Rev" + "edrjen" ] }, - "Web/CSS/cursor/Użycie_wartości_URL_dla_własności_cursor": { - "modified": "2019-03-23T23:44:57.406Z", + "Tools/Tools_Toolbox": { + "modified": "2020-07-16T22:35:27.779Z", "contributors": [ - "teoli", - "Mgjbot", - "Ptak82", - "gandalf", - "Dria" + "vviruzz" ] }, - "Web/CSS/direction": { - "modified": "2019-01-17T08:07:54.772Z", + "Tools/View_source": { + "modified": "2020-07-16T22:35:03.124Z", "contributors": [ - "teoli", - "Ptak82", - "Mgjbot", - "Witia" + "kryspinkras" ] }, - "Web/CSS/display": { - "modified": "2019-03-23T23:36:34.292Z", + "Tools/Validators": { + "modified": "2020-07-16T22:35:03.596Z", "contributors": [ - "wbamberg", - "mlewand", - "teoli", + "vviruzz", + "Mgjbot", + "Diablownik", + "Ptak82", "Witia", - "Mgjbot" + "Chlopczyk" ] }, - "Web/CSS/empty-cells": { - "modified": "2019-03-23T23:52:53.684Z", + "orphaned/nsIInputStream": { + "modified": "2019-04-20T03:56:57.732Z", "contributors": [ "wbamberg", - "fscholz", - "teoli", - "Witia" + "Bedi", + "Ptak82" ] }, - "Web/CSS/float": { - "modified": "2019-03-23T23:52:54.130Z", + "orphaned/nsIXULAppInfo": { + "modified": "2019-04-20T00:22:03.815Z", "contributors": [ "wbamberg", - "teoli", - "Witia" + "Diablownik", + "Bedi", + "Joeaccord" ] }, - "Web/CSS/font": { - "modified": "2019-03-23T23:53:26.482Z", + "Mozilla/Firefox/Releases/3/DOM_improvements": { + "modified": "2019-03-23T23:50:53.479Z", "contributors": [ "wbamberg", - "emce", - "teoli", - "Mgjbot", - "Witia", - "Diablownik" + "Flaneur" ] }, - "Web/CSS/font-family": { - "modified": "2019-03-23T23:52:40.043Z", + "Mozilla/Firefox/Releases/3/SVG_improvements": { + "modified": "2019-03-23T23:50:56.299Z", "contributors": [ "wbamberg", - "fscholz", - "teoli", - "Witia", - "Mgjbot", - "Diablownik" + "Flaneur" ] }, - "Web/CSS/font-size": { - "modified": "2020-10-15T21:15:42.947Z", + "Mozilla/Firefox/Releases/3/XUL_improvements_in_Firefox_3": { + "modified": "2019-03-24T00:02:36.017Z", "contributors": [ + "wbamberg", "SphinxKnight", "teoli", "splewako", - "Acrobot", - "Witia", + "fscholz", + "Ptak82", + "Bedi", + "Bobqu" + ] + }, + "orphaned/Porady_odnośnie_tworzenia_szybko_ładujących_się_stron_HTML": { + "modified": "2019-03-23T23:51:58.812Z", + "contributors": [ "Mgjbot", - "Killerowski" + "Janbil", + "Ptak82", + "Witia", + "Nerf", + "gandalf", + "Jan Dudek", + "StevenGarrity", + "Anonymous", + "Dria" ] }, - "Web/CSS/font-size-adjust": { - "modified": "2019-03-23T23:52:53.150Z", + "orphaned/Programowanie_Mozilli": { + "modified": "2019-03-23T23:58:48.549Z", "contributors": [ - "wbamberg", - "fscholz", - "teoli", - "Witia" + "gandalf", + "Mgjbot", + "Bedi", + "Verruckt", + "Ptak82", + "Dria" ] }, - "Web/CSS/font-stretch": { - "modified": "2019-03-24T00:00:16.636Z", + "orphaned/Przygotowanie_środowiska_programowania_rozszerzenia": { + "modified": "2019-03-23T23:54:18.210Z", "contributors": [ - "wbamberg", - "fscholz", "teoli", - "Gompka", - "Witia" + "Mgjbot", + "Flaneur" ] }, - "Web/CSS/font-style": { - "modified": "2019-03-23T23:54:11.416Z", + "Web/API/Canvas_API/Tutorial/Drawing_text": { + "modified": "2019-03-23T23:53:27.996Z", "contributors": [ - "wbamberg", - "teoli", - "Witia" + "gandalf" ] }, - "Web/CSS/font-variant": { - "modified": "2019-03-23T23:54:14.120Z", + "orphaned/Tutorial_lokalizacji_rozszerzeń_do_Firefoksa_i_Thunderbirda_dla_wersji_1.0_i_wyższych": { + "modified": "2019-01-16T15:58:24.402Z", "contributors": [ - "wbamberg", - "fscholz", - "teoli", - "Witia" + "Teo", + "Coldpeer", + "Ptak82" ] }, - "Web/CSS/font-weight": { - "modified": "2019-03-23T23:54:14.828Z", + "Web/OpenSearch": { + "modified": "2019-03-23T23:54:28.132Z", "contributors": [ - "SphinxKnight", - "fscholz", - "teoli", - "Witia" + "tregagnon", + "Mgjbot", + "Rodrigoknascimento", + "Ptak82", + "Citora", + "Marcoos" ] }, - "Web/CSS/grid": { - "modified": "2020-11-09T10:13:26.650Z", + "Web/Accessibility/ARIA/Web_applications_and_ARIA_FAQ": { + "modified": "2019-03-23T22:15:44.866Z", "contributors": [ - "Miszau" + "konradluka" ] }, - "Web/CSS/height": { - "modified": "2019-03-23T23:54:00.860Z", + "Web/API/BaseAudioContext/createDynamicsCompressor": { + "modified": "2019-03-23T22:13:26.872Z", "contributors": [ - "wbamberg", - "teoli", - "Witia" + "drm404" ] }, - "Web/CSS/ime-mode": { - "modified": "2019-03-24T00:00:40.496Z", + "Web/API/Canvas_API/Tutorial/Optimizing_canvas": { + "modified": "2019-03-18T21:12:08.144Z", "contributors": [ - "teoli", - "Ptak82" + "Ovkorz" ] }, - "Web/CSS/initial": { - "modified": "2019-03-23T22:25:07.597Z", + "Web/API/Canvas_API/Tutorial/Drawing_shapes": { + "modified": "2019-03-23T22:35:47.920Z", "contributors": [ + "km4", + "Kratak", + "sebastianbando", "Miras" ] }, - "Web/CSS/letter-spacing": { - "modified": "2019-03-24T00:13:38.740Z", + "Web/API/EventTarget/addEventListener": { + "modified": "2019-03-24T00:08:51.040Z", "contributors": [ - "wbamberg", - "Jakubem", - "mrstork", - "fscholz", "teoli", - "FredB", - "Witia" + "khalid32", + "Kuzirashi", + "wojtiku", + "jarekps", + "pim", + "dj100", + "Mgjbot", + "Ptak82", + "Jaki", + "Internauta1024A", + "Bedi" ] }, - "Web/CSS/list-style-image": { - "modified": "2019-03-18T21:16:09.927Z", + "Web/API/Node/appendChild": { + "modified": "2019-03-24T00:09:45.110Z", "contributors": [ - "SphinxKnight", + "Miras", "teoli", - "Witia", + "jsx", + "eryk.piast", "Mgjbot", "Ptak82", - "PablO" + "Jan Dudek", + "Takenbot" ] }, - "Web/CSS/list-style-position": { - "modified": "2019-03-23T23:52:40.630Z", + "Web/API/HTMLOrForeignElement/blur": { + "modified": "2019-03-23T23:47:16.796Z", "contributors": [ - "SphinxKnight", "teoli", - "Witia", + "jsx", "Mgjbot", "Ptak82", - "PablO" + "Jan Dudek" ] }, - "Web/CSS/list-style-type": { - "modified": "2019-03-23T23:52:39.653Z", + "Web/API/Node/childNodes": { + "modified": "2019-03-23T23:42:38.458Z", "contributors": [ - "SphinxKnight", "teoli", - "Witia", - "ethertank", + "mimzi_fahia", + "Mgjbot", + "Jan Dudek", + "Ptak82" + ] + }, + "Web/API/HTMLElement/click": { + "modified": "2019-03-23T23:47:17.142Z", + "contributors": [ + "teoli", + "jsx", "Mgjbot", "Ptak82", - "Diablownik", - "KrucaFuks", - "PablO" + "Jan Dudek" ] }, - "Web/CSS/opacity": { - "modified": "2019-03-24T00:11:58.397Z", + "Web/API/Node/cloneNode": { + "modified": "2019-03-23T23:50:53.176Z", "contributors": [ "teoli", - "gsc" + "khalid32", + "Ptak82", + "Mgjbot", + "Jan Dudek" ] }, - "Web/CSS/outline": { - "modified": "2019-03-24T00:13:39.485Z", + "Web/API/HTMLElement/dir": { + "modified": "2019-03-24T00:13:13.769Z", "contributors": [ "teoli", + "jsx", "ethertank", - "FredB", + "dextra", "Mgjbot", - "Witia" + "Jan Dudek", + "Ptak82" ] }, - "Web/CSS/outline-offset": { - "modified": "2019-03-24T00:13:39.168Z", + "Web/API/EventTarget/dispatchEvent": { + "modified": "2019-04-01T06:05:09.437Z", "contributors": [ + "piotrgredowski", "teoli", - "FredB", + "xuancanh", "Mgjbot", - "Witia" + "Ptak82", + "Jan Dudek" ] }, - "Web/CSS/page-break-after": { - "modified": "2019-03-24T00:13:40.804Z", + "Web/API/Node/firstChild": { + "modified": "2020-10-29T05:55:32.180Z", "contributors": [ - "wbamberg", + "dk333", "teoli", - "ethertank", - "yecril71pl" + "khalid32", + "Mgjbot", + "Ptak82", + "Jan Dudek" ] }, - "Web/CSS/right": { - "modified": "2020-10-15T22:20:49.762Z", + "Web/API/HTMLOrForeignElement/focus": { + "modified": "2019-03-23T23:47:17.621Z", "contributors": [ - "miaumere" + "teoli", + "jsx", + "Mgjbot", + "Ptak82", + "Jan Dudek" ] }, - "Web/CSS/text-transform": { - "modified": "2019-03-23T23:53:56.581Z", + "Web/API/Node/hasChildNodes": { + "modified": "2019-03-23T23:54:18.316Z", "contributors": [ - "wbamberg", - "fscholz", "teoli", - "Witia" + "jsx", + "Mgjbot", + "Ptak82", + "Jan Dudek" ] }, - "Web/CSS/transform-function": { - "modified": "2019-03-23T22:13:49.043Z", + "Web/API/Node/insertBefore": { + "modified": "2019-03-23T23:53:18.476Z", "contributors": [ - "draccicgeb" + "Suiseki", + "teoli", + "jsx", + "Mgjbot", + "Ptak82", + "gandalf" ] }, - "Web/CSS/transform-function/matrix()": { - "modified": "2020-11-16T09:00:02.174Z", + "Web/API/HTMLElement/lang": { + "modified": "2019-03-23T23:46:43.485Z", "contributors": [ - "chrisdavidmills", - "drm404" + "teoli", + "xuancanh", + "Mgjbot", + "WadimdD", + "Ptak82" ] }, - "Web/CSS/vertical-align": { - "modified": "2019-01-16T15:39:06.888Z", + "Web/API/Node/lastChild": { + "modified": "2019-03-23T23:54:13.899Z", "contributors": [ "teoli", - "Witia", - "Diablownik", - "Ptak82", - "Mgjbot" + "khalid32", + "Mgjbot", + "Jan Dudek", + "Ptak82" ] }, - "Web/CSS/white-space": { - "modified": "2019-03-23T23:54:00.593Z", + "Web/API/NodeList/length": { + "modified": "2019-03-23T23:43:22.970Z", "contributors": [ - "wbamberg", - "fscholz", "teoli", - "SphinxKnight", - "Witia", - "FredB" + "khalid32", + "Mgjbot", + "Jan Dudek", + "Ptak82" ] }, - "Web/CSS/width": { - "modified": "2020-10-15T22:10:57.316Z", + "Web/API/Node/localName": { + "modified": "2019-03-23T23:46:58.657Z", "contributors": [ - "krezka", - "SphinxKnight", - "alien8923" + "teoli", + "khalid32", + "Mgjbot", + "Ptak82", + "Jan Dudek" ] }, - "Web/CSS/word-spacing": { - "modified": "2019-03-24T00:13:45.112Z", + "Web/API/Node/namespaceURI": { + "modified": "2019-03-23T23:46:57.209Z", "contributors": [ - "wbamberg", - "mrstork", - "fscholz", "teoli", - "FredB", - "Witia" + "khalid32", + "Mgjbot", + "Jan Dudek", + "Ptak82" ] }, - "Web/CSS/z-index": { - "modified": "2020-10-15T21:15:56.356Z", + "Web/API/Node/nextSibling": { + "modified": "2019-03-23T23:53:02.853Z", "contributors": [ - "kamilpikula", "teoli", - "Witia", - "Bedi", + "khalid32", + "Mgjbot", "Ptak82", - "Mgjbot" + "Jan Dudek" ] }, - "Web/Dostępność": { - "modified": "2019-09-09T14:17:31.130Z", + "Web/API/Node/nodeName": { + "modified": "2019-03-23T23:50:31.981Z", + "contributors": [ + "teoli", + "jsx", + "Mgjbot", + "Jan Dudek", + "Ptak82" + ] + }, + "Web/API/Node/nodeType": { + "modified": "2019-03-23T23:49:33.390Z", "contributors": [ - "SphinxKnight", - "rokthe888", "teoli", + "jsx", + "ethertank", "Mgjbot", - "Ptak82", - "gandalf", - "Marcoos", - "Dria" + "Jan Dudek", + "Ptak82" ] }, - "Web/Dostępność/An_overview_of_accessible_web_applications_and_widgets": { - "modified": "2019-03-18T21:27:40.893Z", + "Web/API/Node/nodeValue": { + "modified": "2019-03-24T00:13:13.193Z", "contributors": [ - "lukasz-otowski" + "teoli", + "arunpandianp", + "ethertank", + "dextra", + "Mgjbot", + "Jan Dudek", + "Ptak82" ] }, - "Web/Dostępność/Keyboard-navigable_JavaScript_widgets": { - "modified": "2019-11-11T08:36:35.618Z", + "Web/API/Node/normalize": { + "modified": "2019-03-23T23:47:08.491Z", "contributors": [ - "kamilbusko" + "teoli", + "mimzi_fahia", + "Mgjbot", + "Diablownik", + "Ptak82" ] }, - "Web/EXSLT": { - "modified": "2019-01-16T15:40:19.089Z", + "Web/API/HTMLElement/offsetHeight": { + "modified": "2019-03-23T23:47:13.144Z", "contributors": [ - "ExE-Boss", - "Flaneur", - "Ptak82", - "Ementos" + "fscholz", + "teoli", + "khalid32", + "Mgjbot", + "Internauta1024A", + "Ptak82" ] }, - "Web/Guide": { - "modified": "2019-03-23T23:26:00.482Z", + "Web/API/HTMLElement/offsetLeft": { + "modified": "2019-03-23T23:49:30.218Z", "contributors": [ - "asbud", + "SphinxKnight", "teoli", - "eswues", - "fejkfix", - "splewako", - "Sheppy" + "khalid32", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/Guide/AJAX": { - "modified": "2019-01-16T14:36:25.111Z", + "Web/API/HTMLElement/offsetParent": { + "modified": "2019-03-23T23:47:41.365Z", "contributors": [ - "chrisdavidmills", - "Zwierz", - "Mgjbot", + "teoli", + "xuancanh", "Ptak82", - "Staszyna", - "gandalf", - "Dria", - "Anonymous" + "Tomekperlak", + "Mgjbot", + "Internauta1024A" ] }, - "Web/Guide/AJAX/Na_początek": { - "modified": "2019-03-23T23:54:17.192Z", + "Web/API/HTMLElement/offsetWidth": { + "modified": "2019-03-24T00:18:05.704Z", "contributors": [ - "chrisdavidmills", + "SphinxKnight", + "teoli", + "AshfaqHossain", + "Sprintserwis", + "Maciekp", "Mgjbot", - "Koder", - "Witekg", "Ptak82", - "Taken", - "Staszyna", - "gandalf", - "Takenbot", - "Zwierz", - "Diskostu", - "Anonymous" + "Internauta1024A" ] }, - "Web/Guide/API": { - "modified": "2019-03-23T23:16:39.369Z", + "Web/API/GlobalEventHandlers/onclick": { + "modified": "2019-03-24T00:04:00.144Z", "contributors": [ - "asbud", - "Sheppy" + "teoli", + "AshfaqHossain", + "fscholz", + "Bedi", + "Jan Dudek" ] }, - "Web/Guide/CSS/Kolumny_CSS3": { - "modified": "2019-03-23T23:43:23.375Z", + "Web/API/GlobalEventHandlers/onkeypress": { + "modified": "2019-03-23T23:41:39.155Z", "contributors": [ "teoli", - "Mgjbot", - "Ptak82", - "Takenbot", - "Staszyna", - "gandalf" + "khalid32", + "Jan Dudek" ] }, - "Web/Guide/CSS/Sprawdzanie_media_queries": { - "modified": "2019-03-23T23:13:56.266Z", + "Web/API/GlobalEventHandlers/onkeyup": { + "modified": "2019-03-23T23:46:25.129Z", "contributors": [ - "P0lip" + "teoli", + "AshfaqHossain", + "Mgjbot", + "Jan Dudek" ] }, - "Web/Guide/Graphics": { - "modified": "2019-03-23T23:26:03.623Z", + "Web/API/GlobalEventHandlers/onmousedown": { + "modified": "2019-03-23T23:47:20.727Z", "contributors": [ "teoli", - "Rokuzo", - "splewako", - "jswisher" + "jsx", + "Bedi", + "Mgjbot", + "Ptak82" ] }, - "Web/Guide/HTML/Editable_content": { - "modified": "2019-03-23T22:02:03.451Z", + "Web/API/GlobalEventHandlers/onmousemove": { + "modified": "2019-03-24T00:00:26.392Z", "contributors": [ - "chrisdavidmills" + "SphinxKnight", + "teoli", + "Hasilt", + "mwysinski", + "Bedi" ] }, - "Web/Guide/Liczniki_CSS": { - "modified": "2019-03-23T23:43:40.448Z", + "Web/API/Node/ownerDocument": { + "modified": "2019-03-23T23:53:12.643Z", "contributors": [ - "Kuzirashi", "teoli", + "khalid32", "Mgjbot", "Ptak82", - "PablO" + "Jan Dudek" ] }, - "Web/Guide/Performance": { - "modified": "2019-03-23T23:11:21.113Z", + "Web/API/Node/parentNode": { + "modified": "2019-03-23T23:53:27.343Z", "contributors": [ - "Sheppy" + "teoli", + "khalid32", + "Mgjbot", + "Ptak82", + "Jan Dudek", + "Takenbot" ] }, - "Web/HTML": { - "modified": "2019-03-18T20:58:20.320Z", + "Web/API/Node/prefix": { + "modified": "2019-03-23T23:47:17.259Z", "contributors": [ - "xd1010", - "plx5", - "dodekx", "teoli", - "ethertank", - "DavidWalsh", + "jsx", "Mgjbot", "Ptak82", - "Zwierz", - "gandalf", - "Emil", - "Nerf", - "Dria", - "Anonymous", - "Justdave" + "Jan Dudek" ] }, - "Web/HTML(PL)": { - "modified": "2020-10-30T23:56:43.120Z", + "Web/API/Node/previousSibling": { + "modified": "2019-03-23T23:53:06.046Z", "contributors": [ - "makabeus", - "SphinxKnight", - "DoctorLarva", - "SaviPrograms" + "teoli", + "khalid32", + "Mgjbot", + "Pitoutompoilu", + "Ptak82", + "Jan Dudek" ] }, - "Web/HTML(PL)/Tryb_Zgodnosci_oraz_Tryb_Standardow": { - "modified": "2019-05-22T10:42:54.513Z", + "Web/API/Node/removeChild": { + "modified": "2019-03-23T23:59:03.482Z", "contributors": [ - "DoctorLarva" + "teoli", + "khalid32", + "azrael_valedhel", + "Mgjbot", + "Uryga", + "Ptak82", + "Jan Dudek" ] }, - "Web/HTML/Canvas": { - "modified": "2019-03-24T00:16:14.952Z", + "Web/API/Node/replaceChild": { + "modified": "2019-03-23T23:54:13.730Z", "contributors": [ "teoli", - "ethertank", - "dextra", - "fscholz", + "xuancanh", "Mgjbot", - "Bedi", - "Ptak82" + "Ptak82", + "Jan Dudek" ] }, - "Web/HTML/Element": { - "modified": "2019-07-03T17:47:56.855Z", + "Web/API/ElementCSSInlineStyle/style": { + "modified": "2019-03-23T23:56:38.082Z", "contributors": [ - "miaumere", - "xd1010", + "lotny", "SphinxKnight", "teoli", + "jsx", + "obelyx", "Ptak82", "Mgjbot", - "Chrisraven", - "Witia", - "PablO", - "VooEak", - "Sullei" - ] - }, - "Web/HTML/Element/Heading_Elements": { - "modified": "2020-10-15T22:34:48.886Z", - "contributors": [ - "Martech42" - ] - }, - "Web/HTML/Element/Input": { - "modified": "2019-03-23T22:58:57.333Z", - "contributors": [ - "pkuczynski" + "Jan Dudek" ] }, - "Web/HTML/Element/Input/button": { - "modified": "2020-10-15T22:31:02.305Z", + "Web/API/HTMLOrForeignElement/tabIndex": { + "modified": "2019-03-24T00:13:11.171Z", "contributors": [ - "alanos101198" + "teoli", + "arunpandianp", + "ethertank", + "dextra", + "Mgjbot", + "Jan Dudek", + "Ptak82" ] }, - "Web/HTML/Element/a": { - "modified": "2020-10-15T21:11:09.186Z", + "Web/API/Node/textContent": { + "modified": "2019-03-23T23:47:17.523Z", "contributors": [ - "DoctorLarva", "teoli", - "Ptak82", - "Flaneur", + "khalid32", "Mgjbot", - "Diablownik", - "Miczek", - "Witia", - "Chlopczyk" + "Jan Dudek" ] }, - "Web/HTML/Element/abbr": { - "modified": "2020-10-15T21:11:07.075Z", + "Web/API/UIEvent/cancelBubble": { + "modified": "2019-03-23T23:41:11.564Z", "contributors": [ - "mweclaw", - "DoctorLarva", "teoli", - "Ptak82", - "Witia", - "PablO" + "basemnassar11", + "Jan Dudek", + "Ptak82" ] }, - "Web/HTML/Element/acronym": { - "modified": "2020-10-15T21:18:53.517Z", + "Web/API/KeyboardEvent/charCode": { + "modified": "2019-03-23T23:41:15.040Z", "contributors": [ - "DoctorLarva", "teoli", - "Witia", - "PablO", - "Ptak82", - "VooEak" + "mimzi_fahia", + "Jan Dudek", + "Ptak82" ] }, - "Web/HTML/Element/address": { - "modified": "2020-10-15T21:18:19.318Z", + "Web/API/MouseEvent/initMouseEvent": { + "modified": "2019-03-23T23:50:26.012Z", "contributors": [ - "DoctorLarva", "teoli", - "Wimmer", - "Witia", - "PablO", + "jsx", + "Mgjbot", "Ptak82", - "Taken" + "Jan Dudek" ] }, - "Web/HTML/Element/applet": { - "modified": "2019-01-22T18:16:53.745Z", + "Web/API/UIEvent/initUIEvent": { + "modified": "2019-03-23T23:47:13.003Z", "contributors": [ "teoli", - "Mgjbot", - "Ptak82", - "Witia" + "jsx", + "Bedi", + "Jan Dudek", + "Ptak82" ] }, - "Web/HTML/Element/aside": { - "modified": "2019-03-23T22:52:23.279Z", + "Web/API/UIEvent/isChar": { + "modified": "2019-03-23T23:41:13.381Z", "contributors": [ - "bzajcev", - "Royserg", - "buli", - "dianafa" + "teoli", + "AshfaqHossain", + "Jan Dudek", + "Ptak82" ] }, - "Web/HTML/Element/b": { - "modified": "2019-03-24T00:12:35.612Z", + "Web/API/UIEvent/layerX": { + "modified": "2019-03-23T23:41:12.332Z", "contributors": [ - "ckyambitny", - "piecioshka", "teoli", - "DD0101", - "Ptak82", - "Witia", - "PablO" + "khalid32", + "Jan Dudek", + "Ptak82" ] }, - "Web/HTML/Element/base": { - "modified": "2020-10-15T21:18:53.027Z", + "Web/API/UIEvent/layerY": { + "modified": "2019-03-23T23:41:12.787Z", "contributors": [ - "DoctorLarva", "teoli", - "Ptak82", - "Witia" + "jsx", + "Jan Dudek", + "Ptak82" ] }, - "Web/HTML/Element/basefont": { - "modified": "2019-01-22T18:17:17.900Z", + "Web/API/UIEvent/pageX": { + "modified": "2019-03-23T23:42:37.418Z", "contributors": [ "teoli", - "Witia" + "khalid32", + "Mgjbot", + "Jan Dudek", + "Ptak82" ] }, - "Web/HTML/Element/bdo": { - "modified": "2019-03-18T21:12:41.027Z", + "Web/API/UIEvent/pageY": { + "modified": "2019-03-23T23:41:13.568Z", "contributors": [ "teoli", - "Witia" + "khalid32", + "Jan Dudek", + "Ptak82" ] }, - "Web/HTML/Element/bgsound": { - "modified": "2019-03-18T21:12:41.505Z", + "Web/API/UIEvent/view": { + "modified": "2019-03-23T23:41:50.711Z", "contributors": [ "teoli", - "Witia" + "khalid32", + "Ptak82", + "Jan Dudek" ] }, - "Web/HTML/Element/big": { - "modified": "2019-03-18T21:12:41.356Z", + "Web/API/HTMLOrForeignElement/dataset": { + "modified": "2020-10-15T22:07:00.382Z", + "contributors": [ + "flakboy", + "lotny" + ] + }, + "Web/API/NavigatorID/appCodeName": { + "modified": "2019-03-23T23:49:13.430Z", "contributors": [ "teoli", - "ethertank", - "Witia", - "PablO", + "xuancanh", + "Mgjbot", + "Diablownik", "Ptak82" ] }, - "Web/HTML/Element/blink": { - "modified": "2019-03-18T21:12:46.854Z", + "Web/API/NavigatorID/appName": { + "modified": "2019-03-23T23:49:12.926Z", "contributors": [ "teoli", - "ethertank", - "Oskarre", - "Witia", - "Marcoos", - "PablO", - "Ptak82" + "jsx", + "Mgjbot", + "Diablownik" ] }, - "Web/HTML/Element/blockquote": { - "modified": "2019-03-18T21:12:41.202Z", + "Web/API/NavigatorID/appVersion": { + "modified": "2019-03-23T23:49:23.089Z", "contributors": [ "teoli", - "ethertank", - "Witia", - "Ptak82", - "PablO", - "VooEak" + "jsx", + "Mgjbot", + "Diablownik", + "Internauta1024A" ] }, - "Web/HTML/Element/body": { - "modified": "2020-10-15T22:04:09.245Z", + "Web/API/NavigatorPlugins/javaEnabled": { + "modified": "2019-03-23T23:49:40.467Z", "contributors": [ - "DoctorLarva", - "TheViolence" + "teoli", + "jsx", + "Mgjbot", + "Diablownik", + "Ptak82" ] }, - "Web/HTML/Element/br": { - "modified": "2020-05-17T12:48:05.344Z", + "Web/API/NavigatorLanguage/language": { + "modified": "2019-03-23T23:49:32.556Z", "contributors": [ - "chrisdavidmills", "teoli", - "ethertank", - "Chrisraven", - "Witia", - "PablO", + "khalid32", + "Mgjbot", + "Diablownik", "Ptak82" ] }, - "Web/HTML/Element/center": { - "modified": "2019-03-18T21:12:43.021Z", + "Web/API/NavigatorPlugins/mimeTypes": { + "modified": "2019-03-23T23:49:33.278Z", "contributors": [ "teoli", - "Witia" + "khalid32", + "Mgjbot", + "Diablownik" ] }, - "Web/HTML/Element/cite": { - "modified": "2019-03-18T21:12:43.234Z", + "Web/API/NavigatorOnLine/onLine": { + "modified": "2019-03-23T23:48:52.481Z", "contributors": [ "teoli", - "Witia" + "khalid32", + "Mgjbot", + "Diablownik", + "Ptak82" ] }, - "Web/HTML/Element/code": { - "modified": "2019-03-18T21:12:48.188Z", + "Web/API/NavigatorID/platform": { + "modified": "2019-03-23T23:49:28.729Z", "contributors": [ "teoli", - "ethertank", - "xaky", - "Ptak82", - "Witia", - "PablO" + "AshfaqHossain", + "Mgjbot", + "Diablownik" ] }, - "Web/HTML/Element/comment": { - "modified": "2019-03-18T21:12:42.382Z", + "Web/API/NavigatorPlugins/plugins": { + "modified": "2019-03-23T23:49:34.992Z", "contributors": [ - "mklkj", + "sheldarr", "teoli", - "Witia" + "jsx", + "AshfaqHossain", + "Mgjbot", + "Diablownik" ] }, - "Web/HTML/Element/dd": { - "modified": "2019-01-22T18:16:58.770Z", + "Web/API/NavigatorID/product": { + "modified": "2019-03-23T23:49:35.115Z", "contributors": [ "teoli", - "Witia", - "PablO", - "Ptak82" + "khalid32", + "Mgjbot", + "Diablownik" ] }, - "Web/HTML/Element/details": { - "modified": "2019-03-23T22:08:06.664Z", + "Web/API/NavigatorOnLine/Online_and_offline_events": { + "modified": "2019-01-16T15:46:42.070Z", "contributors": [ - "PawelekS" + "chrisdavidmills", + "Ptak82", + "Mgjbot", + "Flaneur" ] }, - "Web/HTML/Element/div": { - "modified": "2020-10-15T22:05:09.972Z", + "Web/API/Notification": { + "modified": "2019-03-23T22:47:47.817Z", "contributors": [ - "Vactraj" + "archdevil666pl", + "teoli", + "Arfphis" ] }, - "Web/HTML/Element/dl": { - "modified": "2019-03-23T23:43:11.633Z", + "Web/API/CSSRuleList": { + "modified": "2019-03-23T23:48:42.200Z", "contributors": [ - "riren", "teoli", - "Witia", - "PablO", + "khalid32", + "Bedi", "Ptak82", - "VooEak" + "Internauta1024A" ] }, - "Web/HTML/Element/dt": { - "modified": "2019-01-22T18:16:54.805Z", + "Web/API/CSSStyleSheet/deleteRule": { + "modified": "2019-03-23T23:45:22.762Z", "contributors": [ "teoli", - "Witia" + "jsx", + "Ptak82", + "Internauta1024A" ] }, - "Web/HTML/Element/em": { - "modified": "2019-01-22T18:16:58.767Z", + "Web/API/CSSStyleSheet": { + "modified": "2019-03-23T23:45:14.267Z", "contributors": [ "teoli", - "Witia", - "PablO", - "VooEak", - "Ptak82" + "jsx", + "Ptak82", + "Internauta1024A" ] }, - "Web/HTML/Element/head": { - "modified": "2020-10-15T22:13:05.849Z", + "Web/API/CSSStyleSheet/insertRule": { + "modified": "2019-03-24T00:00:18.477Z", "contributors": [ - "DoctorLarva" + "SphinxKnight", + "teoli", + "AshfaqHossain", + "Gompka", + "Ptak82", + "Internauta1024A" ] }, - "Web/HTML/Element/hr": { - "modified": "2019-03-18T21:12:44.154Z", + "orphaned/Web/API/Stylesheet/ownerRule": { + "modified": "2019-03-23T23:45:18.103Z", "contributors": [ - "mmiszy", "teoli", - "Chrisraven", - "Witia", - "DeyV", - "PablO", - "VooEak", - "Ptak82" + "xuancanh", + "Ptak82", + "Internauta1024A" ] }, - "Web/HTML/Element/html": { - "modified": "2020-10-15T21:18:49.847Z", + "Web/API/WindowOrWorkerGlobalScope/clearInterval": { + "modified": "2019-03-24T00:10:08.372Z", "contributors": [ - "DoctorLarva", "teoli", - "Witia", - "PablO", - "Ptak82" + "khalid32", + "ethertank", + "qfel13" ] }, - "Web/HTML/Element/i": { - "modified": "2019-03-18T21:12:48.359Z", + "Web/API/WindowOrWorkerGlobalScope/clearTimeout": { + "modified": "2019-03-24T00:10:09.180Z", "contributors": [ "teoli", - "lukasz.jezierski", - "Ptak82", - "Witia", - "PablO" + "khalid32", + "qfel13" ] }, - "Web/HTML/Element/iframe": { - "modified": "2020-10-15T22:25:26.006Z", + "Web/API/GlobalEventHandlers/onload": { + "modified": "2019-03-24T00:18:31.426Z", "contributors": [ - "drm404" + "SphinxKnight", + "teoli", + "AshfaqHossain", + "wojciech.fornal", + "Ptak82" ] }, - "Web/HTML/Element/kbd": { - "modified": "2019-03-18T21:12:41.856Z", + "Web/API/WindowOrWorkerGlobalScope/setInterval": { + "modified": "2019-03-24T00:10:09.408Z", "contributors": [ + "Bajdzis", "teoli", - "Witia", - "Ptak82" + "khalid32", + "qfel13", + "Mgjbot", + "Jan Dudek" ] }, - "Web/HTML/Element/li": { - "modified": "2019-01-22T18:16:42.410Z", + "Web/API/WindowOrWorkerGlobalScope/setTimeout": { + "modified": "2019-03-24T00:10:06.439Z", "contributors": [ "teoli", - "Ptak82", - "Witia" + "AshfaqHossain", + "qfel13", + "Ceth", + "Mgjbot", + "Jan Dudek" ] }, - "Web/HTML/Element/link": { - "modified": "2020-10-15T21:16:11.088Z", + "Web/API/WindowOrWorkerGlobalScope/atob": { + "modified": "2019-03-23T23:09:12.984Z", "contributors": [ - "DoctorLarva", "teoli", - "Ptak82", - "Mgjbot", - "Witia" + "Eltu" ] }, - "Web/HTML/Element/marquee": { - "modified": "2019-03-18T21:12:40.898Z", + "Web/API/WindowOrWorkerGlobalScope/btoa": { + "modified": "2019-03-23T23:09:14.333Z", "contributors": [ "teoli", - "ethertank", - "Witia", - "PablO", - "Ptak82", - "VooEak" + "Eltu" ] }, - "Web/HTML/Element/meta": { - "modified": "2020-10-15T22:33:44.945Z", + "Web/API/Touch_events": { + "modified": "2020-10-15T22:21:40.615Z", "contributors": [ - "DoctorLarva" + "jangromko" ] }, - "Web/HTML/Element/ol": { - "modified": "2019-03-18T21:12:42.613Z", + "Web/Security/Certificate_Transparency": { + "modified": "2019-11-16T15:16:54.228Z", "contributors": [ - "teoli", - "Witia" + "drm404" ] }, - "Web/HTML/Element/p": { - "modified": "2019-03-23T23:43:14.955Z", + "Web/Security": { + "modified": "2019-11-16T15:40:23.627Z", "contributors": [ - "riren", - "teoli", - "Witia" + "drm404" ] }, - "Web/HTML/Element/q": { - "modified": "2019-03-18T21:12:43.446Z", + "orphaned/Web/Security/Information_Security_Basics": { + "modified": "2019-11-16T15:41:44.248Z", "contributors": [ - "teoli", - "Witia" + "drm404" ] }, - "Web/HTML/Element/ruby": { - "modified": "2020-10-15T22:17:22.321Z", + "Web/Security/Same-origin_policy": { + "modified": "2019-11-23T14:30:59.726Z", "contributors": [ - "gawronskijakub0" + "drm404" ] }, - "Web/HTML/Element/s": { - "modified": "2019-01-22T18:17:00.050Z", + "Web/Security/Subresource_Integrity": { + "modified": "2020-10-15T22:24:54.815Z", "contributors": [ - "teoli", - "Ptak82", - "Witia", - "PablO", - "VooEak" + "drm404" ] }, - "Web/HTML/Element/samp": { - "modified": "2019-03-18T21:12:42.806Z", + "Web/CSS/::after": { + "modified": "2019-03-23T23:59:14.262Z", "contributors": [ + "OnufryKlaczynski", + "Gut6", "teoli", - "Witia" + "lukasz.jezierski", + "Mgjbot", + "Ptak82", + "Abc" ] }, - "Web/HTML/Element/section": { - "modified": "2020-10-15T21:57:30.404Z", + "Web/CSS/::before": { + "modified": "2019-03-23T23:59:14.388Z", "contributors": [ - "0ctothorp", - "PaG" + "RudyPL", + "teoli", + "lukasz.jezierski", + "Mgjbot", + "Ptak82", + "Abc" ] }, - "Web/HTML/Element/small": { - "modified": "2019-03-18T21:12:40.707Z", + "Web/CSS/::first-letter": { + "modified": "2020-10-22T10:28:54.773Z", "contributors": [ + "Maciej_Grycz", "teoli", - "Witia", - "PablO", - "Ptak82" + "Abc" ] }, - "Web/HTML/Element/span": { - "modified": "2019-03-18T20:55:12.696Z", + "Web/CSS/:-moz-first-node": { + "modified": "2019-03-23T23:46:41.088Z", "contributors": [ - "makidenio", - "xd1010", "teoli", - "EURO-DOM" + "Abc" ] }, - "Web/HTML/Element/strong": { - "modified": "2019-03-18T21:12:41.689Z", + "Web/CSS/box-align": { + "modified": "2019-03-23T23:46:56.187Z", "contributors": [ "teoli", + "Bedi", + "Mgjbot", "Witia", - "ethertank", - "Ptak82", - "PablO", - "VooEak" + "Ptak82" ] }, - "Web/HTML/Element/title": { - "modified": "2020-10-15T22:13:08.106Z", + "Web/CSS/box-flex": { + "modified": "2019-03-23T23:46:57.781Z", "contributors": [ - "DoctorLarva" + "teoli", + "Bedi", + "Ptak82", + "Mgjbot", + "Witia" ] }, - "Web/HTML/Element/tt": { - "modified": "2019-03-18T21:12:41.995Z", + "Web/CSS/box-orient": { + "modified": "2019-03-23T23:45:19.839Z", "contributors": [ "teoli", + "Mgjbot", "Witia" ] }, - "Web/HTML/Element/ul": { - "modified": "2019-03-18T21:12:42.250Z", + "Web/CSS/box-pack": { + "modified": "2019-03-23T23:45:20.022Z", "contributors": [ "teoli", + "Mgjbot", + "Ptak82", "Witia" ] }, - "Web/HTML/Element/video": { - "modified": "2019-03-23T22:58:24.967Z", + "Web/CSS/CSS_Colors/Color_picker_tool": { + "modified": "2020-10-30T23:18:14.820Z", "contributors": [ - "wbamberg", - "Trebor" + "makabeus", + "olkaboch" ] }, - "Web/HTML/Elementy_blokowe": { - "modified": "2019-01-16T15:48:57.413Z", + "Web/CSS/CSS_Grid_Layout/Realizing_common_layouts_using_CSS_Grid_Layout": { + "modified": "2019-05-22T06:37:48.964Z", "contributors": [ - "teoli", - "Mgjbot", - "Bedi", - "Ptak82", - "PablO" + "DominikKowalczyk", + "vbert" ] }, - "Web/HTML/Elementy_liniowe": { - "modified": "2019-01-16T15:48:50.807Z", + "Web/CSS/Reference": { + "modified": "2019-03-24T00:14:16.483Z", "contributors": [ "teoli", - "Mgjbot", + "lucasgrzella", + "ethertank", + "tregagnon", + "yecril71pl", + "zag19922", "Witia", - "PablO" + "Mgjbot", + "Abc", + "Bedi", + "Killerowski", + "Ptak82" ] }, - "Web/HTML/Global_attributes": { - "modified": "2019-03-23T22:13:55.813Z", + "Web/CSS/CSS_Selectors/Using_the_:target_pseudo-class_in_selectors": { + "modified": "2020-06-02T17:26:27.575Z", "contributors": [ - "HynekMartin751", - "sideshowbarker" + "zuzabrzozowska" ] }, - "Web/HTML/Global_attributes/pisownia": { - "modified": "2020-10-15T22:28:58.291Z", + "Web/CSS/CSS_Basic_User_Interface/Using_URL_values_for_the_cursor_property": { + "modified": "2019-03-23T23:44:57.406Z", "contributors": [ - "jacobsfly" + "teoli", + "Mgjbot", + "Ptak82", + "gandalf", + "Dria" ] }, - "Web/HTML/Global_attributes/tabindex": { - "modified": "2019-03-23T22:14:07.727Z", + "Learn/CSS/Howto/CSS_FAQ": { + "modified": "2020-07-16T22:25:45.500Z", "contributors": [ - "drm404" + "teoli", + "Mgjbot", + "Ptak82", + "Witia", + "Ruby", + "gandalf", + "Listek", + "Zen" ] }, - "Web/HTML/Kontrola_sprawdzania_pisowni_w_formularzach_HTML": { - "modified": "2019-03-23T23:54:20.997Z", + "Web/CSS/inheritance": { + "modified": "2019-01-16T15:34:17.593Z", "contributors": [ "teoli", "Mgjbot", - "Bedi", + "Witia", "Ptak82", - "VooEak" + "Godlark", + "Bedi", + "Killerowski", + "Diablownik" ] }, - "Web/HTML/Zarządzanie_fokusem_w_HTML": { - "modified": "2019-01-16T15:45:12.939Z", + "Web/SVG/Tutorial/SVG_and_CSS": { + "modified": "2019-03-23T23:43:36.279Z", "contributors": [ "teoli", - "Flaneur" + "Verruckt", + "gandalf", + "Takenbot", + "Ptak82", + "Witia" ] }, - "Web/HTML/Znaczenie_poprawnego_komentowania": { - "modified": "2019-03-23T23:53:28.126Z", + "Web/Progressive_web_apps/Responsive/Media_types": { + "modified": "2019-03-23T23:43:37.766Z", "contributors": [ "teoli", - "Mgjbot", + "Verruckt", + "gandalf", + "Takenbot", "Ptak82", - "Nerf", - "Dria" + "Anonymous", + "Witia" ] }, - "Web/HTTP": { - "modified": "2019-11-25T15:44:56.508Z", + "Web/CSS/Privacy_and_the_:visited_selector": { + "modified": "2019-11-18T18:19:32.622Z", "contributors": [ - "drm404", - "sideshowbarker" + "drm404" ] }, - "Web/HTTP/Authentication": { - "modified": "2020-10-01T05:02:44.386Z", + "Web/CSS/WebKit_Extensions": { + "modified": "2019-03-23T22:13:44.275Z", "contributors": [ - "dannyplaster21" + "drm404" ] }, - "Web/HTTP/Ciasteczka": { - "modified": "2020-02-28T13:56:04.514Z", + "Web/CSS/Class_selectors": { + "modified": "2019-03-18T21:17:20.719Z", "contributors": [ - "pgs-hszalwinski" + "PolskiSwir345" ] }, - "Web/HTTP/HTTP_wiadomosci_ogólne": { - "modified": "2020-11-17T11:03:42.774Z", + "Web/CSS/Universal_selectors": { + "modified": "2020-10-15T22:09:36.180Z", "contributors": [ - "flp.tomczak", - "drm404" + "ahdarpl" ] }, - "Web/HTTP/Headers": { - "modified": "2019-03-18T21:37:58.840Z", + "Web/CSS/Type_selectors": { + "modified": "2020-10-15T21:17:26.155Z", "contributors": [ - "Alpha" + "ahdarpl", + "teoli", + "Witia", + "Abc" ] }, - "Web/HTTP/Headers/Cache-Control": { - "modified": "2020-10-15T22:03:23.970Z", + "Web/CSS/Shorthand_properties": { + "modified": "2019-01-16T16:16:14.250Z", "contributors": [ - "myhau", - "stopsopa" + "teoli", + "gandalf", + "Ptak82" ] }, - "Web/HTTP/Headers/Data": { - "modified": "2020-10-15T22:11:47.444Z", + "Web/CSS/initial_value": { + "modified": "2019-01-16T15:33:31.155Z", "contributors": [ - "kazek228" + "teoli", + "Mgjbot", + "Ptak82", + "Witia", + "Killerowski", + "Bedi" ] }, - "Web/HTTP/Headers/Referrer-Policy": { - "modified": "2020-10-15T22:25:31.082Z", + "Web/Accessibility/An_overview_of_accessible_web_applications_and_widgets": { + "modified": "2019-03-18T21:27:40.893Z", "contributors": [ - "drm404" + "lukasz-otowski" ] }, - "Web/JavaScript": { - "modified": "2020-03-12T19:36:18.888Z", + "Web/Accessibility": { + "modified": "2019-09-09T14:17:31.130Z", "contributors": [ "SphinxKnight", - "SuperMaksio", - "JWPB", - "mitelak", - "Errorino", - "mptak", - "asbud", - "Miras", + "rokthe888", "teoli", - "Rokuzo", - "safjanowski", - "ggolebio", - "ethertank", - "kartofelek007", - "grzegorz", "Mgjbot", "Ptak82", - "Wilq32", - "Internauta1024A", - "Verruckt", "gandalf", "Marcoos", - "Ruby", "Dria" ] }, - "Web/JavaScript/Domkniecia": { - "modified": "2020-06-02T12:29:00.476Z", + "Web/Accessibility/Keyboard-navigable_JavaScript_widgets": { + "modified": "2019-11-11T08:36:35.618Z", "contributors": [ - "PaulinaLL", - "iwonapiotrowska", - "pawelk92", - "dkarski", - "JWPB", - "kasiejro", - "mat-bi", - "Jakubem", - "Bx.", - "dodekx", - "lboratynski", - "ppuzio", - "kosanr1", - "ewape" + "kamilbusko" ] }, - "Web/JavaScript/EventLoop": { - "modified": "2020-03-12T19:42:17.470Z", + "Web/Guide/AJAX/Getting_Started": { + "modified": "2019-03-23T23:54:17.192Z", "contributors": [ - "Qba91", - "przemdz", - "mieszczans", - "kpastuszka", - "cocafin" + "chrisdavidmills", + "Mgjbot", + "Koder", + "Witekg", + "Ptak82", + "Taken", + "Staszyna", + "gandalf", + "Takenbot", + "Zwierz", + "Diskostu", + "Anonymous" ] }, - "Web/JavaScript/Guide": { - "modified": "2020-03-12T19:38:33.908Z", + "Web/CSS/CSS_Columns/Using_multi-column_layouts": { + "modified": "2019-03-23T23:43:23.375Z", "contributors": [ - "malu", - "fscholz", "teoli", - "splewako", - "gieerzetka", - "rakowaty" - ] - }, - "Web/JavaScript/Guide/Control_flow_and_error_handling": { - "modified": "2020-03-12T19:43:07.742Z", - "contributors": [ - "Konrad007", - "AndrzejSala", - "lukasz-jakub-adamczuk", - "Mateusz", - "maciejmarczak" - ] - }, - "Web/JavaScript/Guide/Funkcje": { - "modified": "2020-03-12T19:42:14.765Z", - "contributors": [ - "quart", - "andbroz", - "konradovsky", - "przemokon", - "pm093", - "thekyeZ", - "marekjedrzejewski" + "Mgjbot", + "Ptak82", + "Takenbot", + "Staszyna", + "gandalf" ] }, - "Web/JavaScript/Guide/Introduction": { - "modified": "2020-03-12T19:41:24.970Z", + "Web/CSS/Media_Queries/Testing_media_queries": { + "modified": "2019-03-23T23:13:56.266Z", "contributors": [ - "Alka", - "xolir", - "Mlodyemoka" + "P0lip" ] }, - "Web/JavaScript/Guide/Iterators_and_Generators": { - "modified": "2020-03-12T19:45:59.758Z", + "Web/CSS/CSS_Lists_and_Counters/Using_CSS_counters": { + "modified": "2019-03-23T23:43:40.448Z", "contributors": [ - "ThinCan", - "CreateWWW", - "starsep", - "labs4apps" + "Kuzirashi", + "teoli", + "Mgjbot", + "Ptak82", + "PablO" ] }, - "Web/JavaScript/Guide/Loops_and_iteration": { - "modified": "2020-03-12T19:42:57.032Z", + "conflicting/Web/HTML": { + "modified": "2020-10-30T23:56:43.120Z", "contributors": [ - "Patryk-Holody", + "makabeus", "SphinxKnight", - "AndrzejSala", - "thekyeZ" + "DoctorLarva", + "SaviPrograms" ] }, - "Web/JavaScript/Guide/Obsolete_Pages": { - "modified": "2019-01-16T17:47:38.082Z", + "Web/HTML/Quirks_Mode_and_Standards_Mode": { + "modified": "2019-05-22T10:42:54.513Z", "contributors": [ - "teoli", - "Sheppy" + "DoctorLarva" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5": { - "modified": "2019-03-24T00:00:51.351Z", + "Web/API/Canvas_API": { + "modified": "2019-03-24T00:16:14.952Z", "contributors": [ - "fscholz", "teoli", - "atlavis", - "Ptak82", - "Bedi", - "Marcoos", - "Diablownik", + "ethertank", + "dextra", + "fscholz", "Mgjbot", - "Grzybu", - "Takenbot", - "gandalf" + "Bedi", + "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Blok_instrukcji": { - "modified": "2019-01-16T16:17:02.444Z", + "orphaned/Web/HTML/Element/comment": { + "modified": "2019-03-18T21:12:42.382Z", "contributors": [ + "mklkj", "teoli", - "Mgjbot", - "Ptak82" + "Witia" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Definiowanie_funkcji": { - "modified": "2019-03-24T00:10:24.919Z", + "Web/HTML/Block-level_elements": { + "modified": "2019-01-16T15:48:57.413Z", "contributors": [ "teoli", - "ethertank", - "szymie", - "Ptak82", "Mgjbot", - "Tmk" + "Bedi", + "Ptak82", + "PablO" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Dodawanie_obiektom_nowej_funkcjonalności.": { - "modified": "2019-03-24T00:08:07.633Z", + "Web/HTML/Inline_elements": { + "modified": "2019-01-16T15:48:50.807Z", "contributors": [ "teoli", - "bronek" + "Mgjbot", + "Witia", + "PablO" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane": { - "modified": "2019-01-16T16:09:54.790Z", + "Web/HTML/Global_attributes/spellcheck": { + "modified": "2020-10-15T22:28:58.291Z", "contributors": [ - "teoli", - "Ptak82", - "Mgjbot" + "jacobsfly" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_eval": { - "modified": "2019-01-16T16:11:30.514Z", + "Web/HTTP/Cookies": { + "modified": "2020-02-28T13:56:04.514Z", "contributors": [ - "teoli", - "Ptak82", - "Mgjbot" + "pgs-hszalwinski" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isFinite": { - "modified": "2019-01-16T16:17:02.297Z", + "Web/HTTP/Headers/Date": { + "modified": "2020-10-15T22:11:47.444Z", "contributors": [ - "teoli", - "Mgjbot", - "Ptak82" + "kazek228" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isNaN": { - "modified": "2019-01-16T16:17:02.471Z", + "Web/HTTP/Overview": { + "modified": "2020-11-17T11:03:42.774Z", "contributors": [ - "teoli", - "Mgjbot", - "Ptak82" + "flp.tomczak", + "drm404" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_Number_i_String": { - "modified": "2019-01-16T16:08:15.532Z", + "Web/JavaScript/Closures": { + "modified": "2020-06-02T12:29:00.476Z", "contributors": [ - "teoli", - "Mgjbot", - "Ptak82" + "PaulinaLL", + "iwonapiotrowska", + "pawelk92", + "dkarski", + "JWPB", + "kasiejro", + "mat-bi", + "Jakubem", + "Bx.", + "dodekx", + "lboratynski", + "ppuzio", + "kosanr1", + "ewape" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_escape_i_unescape": { - "modified": "2019-01-16T16:02:25.853Z", + "Web/JavaScript/Inheritance_and_the_prototype_chain": { + "modified": "2020-03-12T19:43:36.110Z", "contributors": [ - "teoli", - "Mgjbot", - "Ptak82" + "hyvyys", + "binarysailor", + "RudyPL", + "mat-bi", + "vonsko", + "labs4apps", + "pceuropa" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_parseInt_i_parseFloat": { - "modified": "2019-01-16T16:02:33.260Z", + "Web/JavaScript/Guide/Functions": { + "modified": "2020-03-12T19:42:14.765Z", "contributors": [ - "teoli", - "Mgjbot", - "Ptak82", - "Diablownik" + "quart", + "andbroz", + "konradovsky", + "przemokon", + "pm093", + "thekyeZ", + "marekjedrzejewski" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_komentarzy": { - "modified": "2019-01-16T16:07:38.682Z", + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Dodawanie_obiektom_nowej_funkcjonalności.": { + "modified": "2019-03-24T00:08:07.633Z", "contributors": [ "teoli", - "Mgjbot", - "Ptak82" + "bronek" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_manipulacji_obiektem": { + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_manipulacji_obiektem": { "modified": "2019-03-23T23:58:58.242Z", "contributors": [ "teoli", @@ -7150,7 +6792,7 @@ "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków": { + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków": { "modified": "2019-03-23T23:45:52.366Z", "contributors": [ "teoli", @@ -7159,7 +6801,7 @@ "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_throw": { + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_throw": { "modified": "2019-03-23T23:47:38.807Z", "contributors": [ "teoli", @@ -7168,7 +6810,7 @@ "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_try...catch": { + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_try...catch": { "modified": "2019-03-23T23:45:58.480Z", "contributors": [ "teoli", @@ -7176,16 +6818,7 @@ "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli": { - "modified": "2019-01-16T16:07:51.369Z", - "contributors": [ - "teoli", - "Mgjbot", - "Ptak82", - "gandalf" - ] - }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_break": { + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_break": { "modified": "2019-03-23T23:41:40.626Z", "contributors": [ "teoli", @@ -7193,7 +6826,7 @@ "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue": { + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue": { "modified": "2019-03-23T23:41:38.008Z", "contributors": [ "teoli", @@ -7201,7 +6834,7 @@ "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while": { + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while": { "modified": "2019-03-23T23:41:39.022Z", "contributors": [ "teoli", @@ -7210,7 +6843,7 @@ "gandalf" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_for": { + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_for": { "modified": "2019-03-23T23:41:39.333Z", "contributors": [ "teoli", @@ -7220,7 +6853,7 @@ "gandalf" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_label": { + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_label": { "modified": "2019-03-23T23:41:38.410Z", "contributors": [ "teoli", @@ -7228,7 +6861,7 @@ "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_while": { + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_while": { "modified": "2019-03-23T23:41:40.447Z", "contributors": [ "teoli", @@ -7236,29 +6869,7 @@ "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_warunkowe": { - "modified": "2019-01-16T15:30:59.621Z", - "contributors": [ - "teoli", - "Internauta1024A", - "Kazio", - "Mgjbot", - "Ptak82" - ] - }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Literały": { - "modified": "2019-01-16T15:28:47.167Z", - "contributors": [ - "teoli", - "Mgjbot", - "Diablownik", - "Ptak82", - "Bedi", - "KrucaFuks", - "Takenbot" - ] - }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku": { + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku": { "modified": "2019-03-23T23:53:44.039Z", "contributors": [ "SphinxKnight", @@ -7277,49 +6888,41 @@ "Ruby" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_i_własności": { - "modified": "2019-01-16T16:04:02.144Z", + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Array": { + "modified": "2019-03-23T23:59:36.858Z", "contributors": [ "teoli", - "Mgjbot", "Ptak82", - "Sheppy" + "Killerowski", + "Mgjbot" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane": { - "modified": "2019-01-16T16:07:28.346Z", + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean": { + "modified": "2019-03-23T23:44:45.069Z", "contributors": [ "teoli", "Mgjbot", "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Array": { - "modified": "2019-03-23T23:59:36.858Z", - "contributors": [ - "teoli", - "Ptak82", - "Killerowski", - "Mgjbot" - ] - }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean": { - "modified": "2019-03-23T23:44:45.069Z", + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Date": { + "modified": "2019-03-23T23:46:16.814Z", "contributors": [ "teoli", "Mgjbot", "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Date": { - "modified": "2019-03-23T23:46:16.814Z", + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_function": { + "modified": "2019-03-23T23:46:16.512Z", "contributors": [ "teoli", "Mgjbot", + "Diablownik", "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Math": { + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Math": { "modified": "2019-03-23T23:44:43.728Z", "contributors": [ "teoli", @@ -7327,7 +6930,7 @@ "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Number": { + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Number": { "modified": "2019-03-23T23:46:03.097Z", "contributors": [ "teoli", @@ -7336,7 +6939,7 @@ "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_RegExp": { + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_RegExp": { "modified": "2019-03-23T23:45:49.618Z", "contributors": [ "teoli", @@ -7345,7 +6948,7 @@ "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_String": { + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_String": { "modified": "2019-03-23T23:47:58.296Z", "contributors": [ "teoli", @@ -7355,1836 +6958,2027 @@ "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_function": { - "modified": "2019-03-23T23:46:16.512Z", + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_przypisania": { + "modified": "2019-03-23T23:54:17.982Z", + "contributors": [ + "teoli", + "Mgjbot", + "Ptak82", + "Re set" + ] + }, + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect": { + "modified": "2019-01-16T16:02:33.640Z", "contributors": [ "teoli", "Mgjbot", - "Diablownik", "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory": { - "modified": "2019-01-16T15:45:03.435Z", + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem": { + "modified": "2019-03-23T23:46:18.276Z", "contributors": [ "teoli", + "Mgjbot", + "Diablownik", "Ptak82", - "Re set", - "Internauta1024A", - "Mgjbot" + "Internauta1024A" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operacje_na_łańcuchach": { - "modified": "2019-01-16T15:45:18.599Z", + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Tworzenie_hierarchii": { + "modified": "2019-03-23T23:46:16.062Z", "contributors": [ "teoli", - "Re set", - "Ptak82", - "Uryga", - "Mgjbot" + "Mgjbot", + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_arytmetyczne": { - "modified": "2019-01-16T15:45:06.608Z", + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności": { + "modified": "2019-03-23T23:46:18.377Z", "contributors": [ "teoli", - "Re set", "Mgjbot", + "Diablownik", "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_logiczne": { - "modified": "2019-01-16T15:45:11.361Z", + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności": { + "modified": "2019-03-23T23:46:16.618Z", "contributors": [ "teoli", - "Ptak82", - "Re set", "Mgjbot", - "Anonymous" + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_porównania": { - "modified": "2019-01-16T15:45:08.791Z", + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu": { + "modified": "2019-03-23T23:46:19.345Z", "contributors": [ "teoli", - "Ptak82", - "Re set", - "Mgjbot" + "Mgjbot", + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_przypisania": { - "modified": "2019-03-23T23:54:17.982Z", + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Przykłady_wyrażeń_regularnych": { + "modified": "2019-03-23T23:45:59.795Z", "contributors": [ "teoli", "Mgjbot", - "Ptak82", - "Re set" + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_specjalne": { - "modified": "2019-01-16T15:44:56.049Z", + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_zamknięciami": { + "modified": "2019-03-24T00:00:51.657Z", + "contributors": [ + "SphinxKnight", + "teoli", + "atlavis" + ] + }, + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_metod": { + "modified": "2019-03-23T23:46:15.620Z", "contributors": [ "teoli", - "Re set", - "Stefan.power", - "Ptak82", - "Internauta1024A", "Mgjbot", - "Grzybu" + "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect": { - "modified": "2019-01-16T16:02:33.640Z", + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu": { + "modified": "2019-03-23T23:46:18.038Z", "contributors": [ "teoli", "Mgjbot", "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności": { - "modified": "2019-01-16T16:02:28.093Z", + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu": { + "modified": "2019-03-23T23:46:17.556Z", "contributors": [ "teoli", "Mgjbot", "Diablownik", + "Ptak82", + "Takenbot" + ] + }, + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów": { + "modified": "2019-03-23T23:45:59.897Z", + "contributors": [ + "teoli", + "Mgjbot", "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności/Wartości_lokalne_vs._dziedziczone": { - "modified": "2019-01-16T15:51:13.285Z", + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności": { + "modified": "2019-03-23T23:46:19.791Z", + "contributors": [ + "teoli", + "Mgjbot", + "Ptak82", + "Anonymous" + ] + }, + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu": { + "modified": "2019-03-24T00:04:36.846Z", + "contributors": [ + "SphinxKnight", + "teoli", + "Sheppy", + "mi5tic", + "Mgjbot", + "Ptak82", + "Garbus" + ] + }, + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji": { + "modified": "2019-03-23T23:46:17.678Z", "contributors": [ "teoli", - "Diablownik", "Mgjbot", "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem": { - "modified": "2019-03-23T23:46:18.276Z", + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji": { + "modified": "2019-03-23T23:46:18.156Z", "contributors": [ "teoli", "Mgjbot", + "Ptak82" + ] + }, + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_wyrażenia_regularnego": { + "modified": "2019-03-23T23:50:53.064Z", + "contributors": [ + "teoli", + "Re set", + "Ptak82", + "Uryga", + "Mgjbot" + ] + }, + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego": { + "modified": "2019-03-23T23:50:55.709Z", + "contributors": [ + "SphinxKnight", + "teoli", + "Ptak82", + "Re set", + "Uryga", "Diablownik", + "Takenbot", + "Keicam", + "Marcin Otorowski" + ] + }, + "orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments": { + "modified": "2019-03-23T23:44:05.766Z", + "contributors": [ + "teoli", "Ptak82", - "Internauta1024A" + "Sheppy", + "Mgjbot", + "Takenbot" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Tworzenie_hierarchii": { - "modified": "2019-03-23T23:46:16.062Z", + "Web/JavaScript/Guide/Grammar_and_types": { + "modified": "2020-03-12T19:42:17.279Z", + "contributors": [ + "danrakh", + "Konrad007", + "cybor0", + "lukasz-jakub-adamczuk", + "Miras", + "AndrzejSala", + "xolir", + "dolphugly", + "KamilDuda01", + "marekjedrzejewski" + ] + }, + "orphaned/Web/JavaScript/Na_początek": { + "modified": "2019-03-23T23:54:32.221Z", "contributors": [ + "SphinxKnight", "teoli", "Mgjbot", - "Diablownik", - "Ptak82" + "Ptak82", + "Internauta1024A" + ] + }, + "Web/JavaScript/About_JavaScript": { + "modified": "2020-03-12T19:46:50.697Z", + "contributors": [ + "pa-uli-na" + ] + }, + "Web/JavaScript/A_re-introduction_to_JavaScript": { + "modified": "2020-03-12T19:47:50.546Z", + "contributors": [ + "kanapka94", + "edgyFAT", + "xbravadox", + "r0v", + "joanna-by", + "Poftorek", + "JKarkosza" + ] + }, + "Web/JavaScript/Reference/Classes/constructor": { + "modified": "2020-10-15T21:53:33.839Z", + "contributors": [ + "michalmarchewczyk", + "Anonymous", + "km4", + "devMike" + ] + }, + "Web/JavaScript/Reference/Errors/Missing_colon_after_property_id": { + "modified": "2020-03-12T19:47:17.965Z", + "contributors": [ + "BrittleHeart" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu": { - "modified": "2019-03-23T23:46:19.345Z", + "Web/JavaScript/Reference/Functions/Arrow_functions": { + "modified": "2020-10-15T21:59:06.310Z", "contributors": [ - "teoli", - "Mgjbot", - "Diablownik", - "Ptak82" + "piotrjanczak", + "jangromko", + "ppuzio" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności": { - "modified": "2019-03-23T23:46:18.377Z", + "Web/JavaScript/Reference/Functions/Default_parameters": { + "modified": "2020-10-15T22:15:13.631Z", "contributors": [ - "teoli", - "Mgjbot", - "Diablownik", - "Ptak82" + "jangromko" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności": { - "modified": "2019-03-23T23:46:16.618Z", + "Web/JavaScript/Reference/Functions/arguments/callee": { + "modified": "2019-01-16T15:40:18.334Z", "contributors": [ "teoli", "Mgjbot", "Diablownik", - "Ptak82" + "Ptak82", + "Marcoos", + "gandalf" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Globalne_wyszukiwanie,_wielkość_znaków,_wieloliniowe_wejście": { - "modified": "2019-01-16T15:31:49.852Z", + "Web/JavaScript/Reference/Functions/arguments": { + "modified": "2019-01-16T15:45:04.595Z", "contributors": [ "teoli", "Mgjbot", "Diablownik", - "Ptak82" + "Marcoos", + "Sheppy", + "telendt", + "Internauta1024A", + "Ptak82", + "Bamber" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Przykłady_wyrażeń_regularnych": { - "modified": "2019-03-23T23:45:59.795Z", + "Web/JavaScript/Reference/Functions/arguments/length": { + "modified": "2019-01-16T15:41:27.370Z", "contributors": [ "teoli", "Mgjbot", + "Marcoos", "Diablownik", + "Internauta1024A", "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_zamknięciami": { - "modified": "2019-03-24T00:00:51.657Z", + "Web/JavaScript/Reference": { + "modified": "2020-03-12T19:37:41.078Z", "contributors": [ - "SphinxKnight", + "asbud", "teoli", - "atlavis" + "Mgjbot", + "Internauta1024A", + "Diablownik", + "Ptak82", + "Takenbot", + "gandalf", + "Marcoos" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Stałe": { - "modified": "2019-01-16T14:49:38.955Z", + "Web/JavaScript/Reference/About": { + "modified": "2020-10-29T15:16:04.046Z", "contributors": [ + "michalmarchewczyk", + "asbud", "teoli", - "Sheppy", - "falka", - "Ptak82", - "Re set", "Mgjbot", - "KrucaFuks", - "Takenbot" + "Odder", + "WalkerPL", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów": { - "modified": "2019-03-23T23:45:59.897Z", + "orphaned/Web/JavaScript/Referencje/O_tym_dokumencie/Konwencje_formatowania_tekstu": { + "modified": "2019-03-24T00:03:10.475Z", "contributors": [ "teoli", + "fscholz", + "Marcoos", + "Ptak82", "Mgjbot", - "Ptak82" + "VooEak" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_metod": { - "modified": "2019-03-23T23:46:15.620Z", + "Web/JavaScript/Reference/Global_Objects/Array/concat": { + "modified": "2019-03-23T23:47:21.906Z", "contributors": [ "teoli", "Mgjbot", - "Ptak82" + "Marcoos", + "Staszyna", + "Internauta1024A", + "Sheppy", + "Ptak82", + "Diablownik" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu": { - "modified": "2019-03-23T23:46:18.038Z", + "Web/JavaScript/Reference/Global_Objects/Array/copyWithin": { + "modified": "2020-10-26T11:54:47.946Z", "contributors": [ - "teoli", - "Mgjbot", - "Ptak82" + "jangromko" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu": { - "modified": "2019-03-23T23:46:17.556Z", + "Web/JavaScript/Reference/Global_Objects/Array/entries": { + "modified": "2020-10-15T22:07:30.753Z", "contributors": [ - "teoli", - "Mgjbot", - "Diablownik", - "Ptak82", - "Takenbot" + "kucharzgotuje" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności": { - "modified": "2019-03-23T23:46:19.791Z", + "Web/JavaScript/Reference/Global_Objects/Array/every": { + "modified": "2019-03-23T23:49:40.637Z", "contributors": [ + "tomabr", "teoli", "Mgjbot", + "telendt", + "Marcoos", "Ptak82", - "Anonymous" + "Sheppy", + "Internauta1024A" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu": { - "modified": "2019-03-24T00:04:36.846Z", + "Web/JavaScript/Reference/Global_Objects/Array/fill": { + "modified": "2019-03-23T22:50:50.966Z", "contributors": [ + "emero", + "PawelPapuli", "SphinxKnight", - "teoli", - "Sheppy", - "mi5tic", - "Mgjbot", - "Ptak82", - "Garbus" + "quim" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji": { - "modified": "2019-03-23T23:46:17.678Z", + "Web/JavaScript/Reference/Global_Objects/Array/filter": { + "modified": "2019-03-18T20:34:27.512Z", "contributors": [ + "KamilaWalkowiak", + "romprzy", + "kanapka94", + "tues", + "zpantalyku", + "krzosik", + "robadev", + "alexfluger", "teoli", + "michail_w", + "Krzysiek6", "Mgjbot", + "Marcoos", + "telendt", "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji": { - "modified": "2019-03-23T23:46:18.156Z", + "Web/JavaScript/Reference/Global_Objects/Array/find": { + "modified": "2020-09-25T21:17:08.283Z", "contributors": [ - "teoli", - "Mgjbot", - "Ptak82" + "jangromko", + "SphinxKnight", + "TeoTN", + "gpluta", + "kdex", + "svantetic", + "karol-f", + "thigrand" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_wyrażenia_regularnego": { - "modified": "2019-03-23T23:50:53.064Z", + "Web/JavaScript/Reference/Global_Objects/Array/findIndex": { + "modified": "2019-03-23T22:07:32.543Z", "contributors": [ - "teoli", - "Re set", - "Ptak82", - "Uryga", - "Mgjbot" + "Snieezy" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Unicode": { - "modified": "2019-01-16T15:45:06.657Z", + "Web/JavaScript/Reference/Global_Objects/Array/flat": { + "modified": "2020-10-15T22:19:13.003Z", "contributors": [ - "teoli", - "Re set", - "Mgjbot", - "Bedi", - "Internauta1024A", - "Ptak82", - "Leoniq" + "KonradLinkowski", + "raszta" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wartości": { - "modified": "2019-01-16T15:28:38.496Z", + "Web/JavaScript/Reference/Global_Objects/Array/forEach": { + "modified": "2019-09-23T06:35:11.871Z", "contributors": [ + "OJezu", + "zibra", "teoli", "Mgjbot", - "Re set", - "Ptak82", - "KrucaFuks", - "Takenbot" - ] - }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wyrażenia": { - "modified": "2019-01-16T15:45:05.450Z", - "contributors": [ - "teoli", - "Ptak82", - "Re set", - "Mgjbot" + "ethertank", + "Robson", + "telendt", + "Ptak82" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wywołanie_funkcji": { - "modified": "2019-03-23T23:59:05.678Z", + "Web/JavaScript/Reference/Global_Objects/Array/from": { + "modified": "2019-03-23T22:31:40.624Z", "contributors": [ - "Mikad", - "teoli", - "Sheppy", - "diabelb", - "Ptak82", - "Bedi", - "Mgjbot" + "kdex", + "Maciej_Grycz", + "kamce", + "aquz" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego": { - "modified": "2019-03-23T23:50:55.709Z", + "Web/JavaScript/Reference/Global_Objects/Array/includes": { + "modified": "2020-10-15T21:41:30.374Z", "contributors": [ - "SphinxKnight", - "teoli", - "Ptak82", - "Re set", - "Uryga", - "Diablownik", - "Takenbot", - "Keicam", - "Marcin Otorowski" + "Nux", + "wbamberg", + "DzikiChrzan" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments": { - "modified": "2019-03-23T23:44:05.766Z", + "Web/JavaScript/Reference/Global_Objects/Array": { + "modified": "2020-03-03T12:48:14.352Z", "contributors": [ + "1MrHous1", + "SurmaAa", + "wbamberg", + "stuniel", + "SlaWitDev", + "krawieck", + "Tidu", + "RadekRo", + "zpantalyku", "teoli", + "splewako", + "mirekczechxmm", + "KrzysztofKruk", + "Chrisraven", "Ptak82", - "Sheppy", + "tybulewicz", + "Staszyna", + "Internauta1024A", "Mgjbot", - "Takenbot" + "gandalf", + "VooEak", + "Marcoos", + "Anonymous" ] }, - "Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zmienne": { - "modified": "2019-01-16T14:50:00.178Z", + "Web/JavaScript/Reference/Global_Objects/Array/indexOf": { + "modified": "2019-03-23T23:46:42.451Z", "contributors": [ "teoli", - "Sheppy", - "falka", - "Mgjbot", - "Re set", + "telendt", "Ptak82", - "Internauta1024A", - "Bratmn", - "KrucaFuks", - "Takenbot" + "Mgjbot", + "Sheppy" ] }, - "Web/JavaScript/Guide/Składnia_i_typy": { - "modified": "2020-03-12T19:42:17.279Z", + "Web/JavaScript/Reference/Global_Objects/Array/isArray": { + "modified": "2019-03-23T22:54:42.353Z", "contributors": [ - "danrakh", - "Konrad007", - "cybor0", - "lukasz-jakub-adamczuk", - "Miras", - "AndrzejSala", - "xolir", - "dolphugly", - "KamilDuda01", - "marekjedrzejewski" + "kwarpechowski", + "tomabr" ] }, - "Web/JavaScript/Guide/o_tym_przewodniku": { - "modified": "2019-05-16T15:03:06.854Z", + "Web/JavaScript/Reference/Global_Objects/Array/join": { + "modified": "2019-03-23T23:48:50.993Z", "contributors": [ - "wbamberg", "teoli", - "gieerzetka" + "Diablownik", + "Mgjbot", + "Internauta1024A", + "Staszyna", + "Ptak82" ] }, - "Web/JavaScript/Na_początek": { - "modified": "2019-03-23T23:54:32.221Z", + "Web/JavaScript/Reference/Global_Objects/Array/keys": { + "modified": "2019-03-23T22:15:56.755Z", "contributors": [ - "SphinxKnight", - "teoli", - "Mgjbot", - "Ptak82", - "Internauta1024A" + "buoto" ] }, - "Web/JavaScript/O_JavaScript": { - "modified": "2020-03-12T19:46:50.697Z", + "Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf": { + "modified": "2019-03-23T23:47:29.921Z", "contributors": [ - "pa-uli-na" + "teoli", + "Mgjbot", + "telendt", + "Marcoos", + "Sheppy", + "Ptak82" ] }, - "Web/JavaScript/Ponowne_wprowadzenie_do_JavaScript": { - "modified": "2020-03-12T19:47:50.546Z", + "Web/JavaScript/Reference/Global_Objects/Array/length": { + "modified": "2019-03-23T23:47:25.247Z", "contributors": [ - "kanapka94", - "edgyFAT", - "xbravadox", - "r0v", - "joanna-by", - "Poftorek", - "JKarkosza" + "teoli", + "Mgjbot", + "Diablownik", + "Internauta1024A", + "Ptak82", + "Sheppy" ] }, - "Web/JavaScript/Reference/Classes": { - "modified": "2020-10-29T06:45:58.471Z", + "Web/JavaScript/Reference/Global_Objects/Array/map": { + "modified": "2019-03-23T23:49:38.387Z", "contributors": [ - "michalmarchewczyk", - "Ojdana11", - "freszyk", - "MichalKarbownik", - "artmiron", - "labs4apps", - "gavinhungry" + "michalwarda", + "halicki", + "cojack", + "Miras", + "nix1", + "teoli", + "Mgjbot", + "Ptak82", + "tybulewicz", + "Internauta1024A" ] }, - "Web/JavaScript/Reference/Classes/Konstruktor": { - "modified": "2020-10-15T21:53:33.839Z", + "Web/JavaScript/Reference/Global_Objects/Array/of": { + "modified": "2020-10-15T22:10:00.043Z", "contributors": [ - "michalmarchewczyk", - "Anonymous", - "km4", - "devMike" + "mat-bi" ] }, - "Web/JavaScript/Reference/Classes/Private_class_fields": { - "modified": "2020-10-22T08:52:10.875Z", + "Web/JavaScript/Reference/Global_Objects/Array/pop": { + "modified": "2019-03-23T23:47:25.069Z", "contributors": [ - "michalmarchewczyk" + "asikora", + "teoli", + "Mgjbot", + "Diablownik", + "Internauta1024A", + "Ptak82" ] }, - "Web/JavaScript/Reference/Classes/Public_class_fields": { - "modified": "2020-10-15T22:35:06.679Z", + "orphaned/Web/JavaScript/Reference/Global_Objects/Array/prototype": { + "modified": "2019-07-11T20:14:55.409Z", "contributors": [ - "michalmarchewczyk" + "kleyu", + "teoli", + "fscholz", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Reference/Classes/extends": { - "modified": "2020-10-15T22:35:04.841Z", + "Web/JavaScript/Reference/Global_Objects/Array/push": { + "modified": "2019-03-23T23:47:25.462Z", "contributors": [ - "michalmarchewczyk" + "teoli", + "Mgjbot", + "Ptak82", + "telendt", + "Internauta1024A" ] }, - "Web/JavaScript/Reference/Classes/static": { - "modified": "2020-10-21T19:35:52.117Z", + "Web/JavaScript/Reference/Global_Objects/Array/Reduce": { + "modified": "2019-11-09T19:25:57.362Z", "contributors": [ - "michalmarchewczyk", - "jangromko" + "apiczkens", + "the0ffh", + "sqeeswy", + "kamce", + "thigrand" ] }, - "Web/JavaScript/Reference/Errors": { - "modified": "2020-03-12T19:45:52.052Z", + "Web/JavaScript/Reference/Global_Objects/Array/ReduceRight": { + "modified": "2020-10-15T22:28:04.989Z", "contributors": [ - "devMike", - "Sheppy" + "martraw", + "mayacode" ] }, - "Web/JavaScript/Reference/Errors/Brakujący_średnik_po_własności_id": { - "modified": "2020-03-12T19:47:17.965Z", + "Web/JavaScript/Reference/Global_Objects/Array/reverse": { + "modified": "2019-03-23T23:47:24.313Z", "contributors": [ - "BrittleHeart" + "teoli", + "Mgjbot", + "Marcoos", + "Ptak82" ] }, - "Web/JavaScript/Reference/Errors/Invalid_array_length": { - "modified": "2020-03-12T19:49:38.261Z", + "Web/JavaScript/Reference/Global_Objects/Array/shift": { + "modified": "2019-06-30T05:28:38.117Z", "contributors": [ - "jangromko" + "Krysik", + "teoli", + "tomecko", + "Mgjbot", + "telendt", + "Internauta1024A", + "Ptak82" ] }, - "Web/JavaScript/Reference/Errors/Invalid_date": { - "modified": "2020-11-22T22:16:46.988Z", + "Web/JavaScript/Reference/Global_Objects/Array/slice": { + "modified": "2019-03-23T23:47:22.485Z", "contributors": [ - "jangromko" + "malu", + "teoli", + "michalmarkowski", + "Mgjbot", + "Ptak82", + "telendt", + "Internauta1024A", + "Sheppy" ] }, - "Web/JavaScript/Reference/Errors/JSON_bad_parse": { - "modified": "2020-03-12T19:49:40.890Z", + "Web/JavaScript/Reference/Global_Objects/Array/some": { + "modified": "2019-03-23T23:49:40.896Z", "contributors": [ - "jangromko" + "getup10g", + "Bjornskjald", + "alexfluger", + "teoli", + "Mgjbot", + "Internauta1024A", + "Ptak82", + "tybulewicz" ] }, - "Web/JavaScript/Reference/Errors/Missing_curly_after_function_body": { - "modified": "2020-11-22T22:43:32.569Z", + "Web/JavaScript/Reference/Global_Objects/Array/sort": { + "modified": "2019-03-23T23:47:26.710Z", "contributors": [ - "jangromko" + "Bx.", + "el-dide", + "teoli", + "Mgjbot", + "tybulewicz", + "Internauta1024A", + "Diablownik", + "Sheppy", + "Ptak82" ] }, - "Web/JavaScript/Reference/Errors/Missing_initializer_in_const": { - "modified": "2020-03-12T19:49:39.699Z", + "Web/JavaScript/Reference/Global_Objects/Array/splice": { + "modified": "2019-03-23T23:47:26.002Z", "contributors": [ - "jangromko" + "emero", + "Wayofthesin", + "kaczor1984", + "achwedyk", + "teoli", + "Mgjbot", + "telendt", + "Ptak82", + "Internauta1024A", + "Sheppy" ] }, - "Web/JavaScript/Reference/Errors/Missing_parenthesis_after_argument_list": { - "modified": "2020-11-22T22:32:16.181Z", + "Web/JavaScript/Reference/Global_Objects/Array/toLocaleString": { + "modified": "2020-11-11T13:31:59.409Z", "contributors": [ - "jangromko" + "szczerski", + "kwarpechowski" ] }, - "Web/JavaScript/Reference/Errors/Missing_semicolon_before_statement": { - "modified": "2020-03-31T15:55:43.969Z", + "Web/JavaScript/Reference/Global_Objects/Array/toSource": { + "modified": "2019-03-23T23:49:50.954Z", "contributors": [ - "kepka7044", - "Comandorekk" + "teoli", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Reference/Errors/More_arguments_needed": { - "modified": "2020-03-12T19:46:20.545Z", + "Web/JavaScript/Reference/Global_Objects/Array/toString": { + "modified": "2019-03-23T23:47:24.621Z", "contributors": [ - "krzmig", - "saulgajda" + "kwarpechowski", + "teoli", + "Mgjbot", + "Diablownik", + "Internauta1024A", + "Ptak82" ] }, - "Web/JavaScript/Reference/Errors/Not_a_function": { - "modified": "2020-03-12T19:46:20.885Z", + "Web/JavaScript/Reference/Global_Objects/Array/unshift": { + "modified": "2019-03-23T23:47:27.035Z", "contributors": [ - "Vvitek" + "teoli", + "Mgjbot", + "Ptak82", + "Internauta1024A", + "Diablownik" ] }, - "Web/JavaScript/Reference/Errors/Not_defined": { - "modified": "2020-03-12T19:45:53.813Z", + "Web/JavaScript/Reference/Global_Objects/Array/values": { + "modified": "2020-10-15T22:00:51.518Z", "contributors": [ - "saulgajda", - "szopenkrk" + "kasztan" ] }, - "Web/JavaScript/Reference/Errors/Property_access_denied": { - "modified": "2020-10-26T12:04:59.811Z", + "Web/JavaScript/Reference/Global_Objects/ArrayBuffer": { + "modified": "2019-03-23T22:14:05.315Z", "contributors": [ - "jangromko" + "drm404" ] }, - "Web/JavaScript/Reference/Errors/Unexpected_type": { - "modified": "2020-03-12T19:46:02.310Z", + "Web/JavaScript/Reference/Global_Objects/BigInt/asIntN": { + "modified": "2020-10-15T22:29:22.063Z", "contributors": [ - "devMike" + "jangromko" ] }, - "Web/JavaScript/Reference/Functions": { - "modified": "2020-03-12T19:45:21.066Z", + "Web/JavaScript/Reference/Global_Objects/BigInt/asUintN": { + "modified": "2020-10-15T22:29:21.176Z", "contributors": [ - "wilfreddesert" + "jangromko" ] }, - "Web/JavaScript/Reference/Functions/Funkcje_strzalkowe": { - "modified": "2020-10-15T21:59:06.310Z", + "Web/JavaScript/Reference/Global_Objects/BigInt": { + "modified": "2020-10-15T22:27:46.176Z", "contributors": [ - "piotrjanczak", - "jangromko", - "ppuzio" + "jangromko" ] }, - "Web/JavaScript/Reference/Functions/Parametry_domyślne": { - "modified": "2020-10-15T22:15:13.631Z", + "Web/JavaScript/Reference/Global_Objects/BigInt/toString": { + "modified": "2020-10-15T22:29:27.321Z", "contributors": [ "jangromko" ] }, - "Web/JavaScript/Reference/Functions/get": { - "modified": "2020-03-12T19:45:32.396Z", + "Web/JavaScript/Reference/Global_Objects/BigInt/valueOf": { + "modified": "2020-10-15T22:30:01.749Z", "contributors": [ - "Rednaxela700", - "pawelk92", - "lukaszewczak", - "pkubowicz", - "broslukasz" + "jangromko" ] }, - "Web/JavaScript/Reference/Functions/set": { - "modified": "2020-10-15T22:11:19.769Z", + "Web/JavaScript/Reference/Global_Objects/Boolean": { + "modified": "2019-03-23T23:51:54.713Z", "contributors": [ - "jedzej" + "kanapka94", + "wbamberg", + "teoli", + "Diablownik", + "Internauta1024A", + "Ptak82", + "Mgjbot", + "Marcoos" ] }, - "Web/JavaScript/Referencje": { - "modified": "2020-03-12T19:37:41.078Z", + "Web/JavaScript/Reference/Global_Objects/Boolean/toSource": { + "modified": "2019-03-23T23:58:05.520Z", "contributors": [ - "asbud", "teoli", + "Witia", "Mgjbot", - "Internauta1024A", - "Diablownik", "Ptak82", + "telendt", "Takenbot", - "gandalf", "Marcoos" ] }, - "Web/JavaScript/Referencje/Funkcje/arguments": { - "modified": "2019-01-16T15:45:04.595Z", + "Web/JavaScript/Reference/Global_Objects/Boolean/toString": { + "modified": "2019-03-23T23:58:09.826Z", "contributors": [ "teoli", + "Witia", "Mgjbot", - "Diablownik", - "Marcoos", - "Sheppy", - "telendt", - "Internauta1024A", "Ptak82", - "Bamber" + "Marcoos" ] }, - "Web/JavaScript/Referencje/Funkcje/arguments/callee": { - "modified": "2019-01-16T15:40:18.334Z", + "Web/JavaScript/Reference/Global_Objects/Boolean/valueOf": { + "modified": "2019-03-23T23:58:19.030Z", "contributors": [ "teoli", + "Witia", "Mgjbot", - "Diablownik", "Ptak82", - "Marcoos", - "gandalf" + "Takenbot", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Funkcje/arguments/length": { - "modified": "2019-01-16T15:41:27.370Z", + "Web/JavaScript/Reference/Global_Objects/DataView": { + "modified": "2020-10-15T21:57:36.691Z", + "contributors": [ + "meron1122" + ] + }, + "Web/JavaScript/Reference/Global_Objects/Date/getDate": { + "modified": "2019-03-18T20:39:59.605Z", "contributors": [ "teoli", "Mgjbot", - "Marcoos", - "Diablownik", - "Internauta1024A", + "telendt", "Ptak82" ] }, - "Web/JavaScript/Referencje/Komentarz": { - "modified": "2019-03-23T23:46:42.565Z", + "Web/JavaScript/Reference/Global_Objects/Date/getDay": { + "modified": "2019-03-23T23:47:14.453Z", "contributors": [ + "dloranc", "teoli", - "Sheppy", - "ElKreciko", "Mgjbot", - "Internauta1024A", - "Marcoos", + "telendt", "Ptak82" ] }, - "Web/JavaScript/Referencje/O_tym_dokumencie": { - "modified": "2020-10-29T15:16:04.046Z", + "Web/JavaScript/Reference/Global_Objects/Date/getFullYear": { + "modified": "2019-03-23T23:58:09.308Z", "contributors": [ - "michalmarchewczyk", - "asbud", "teoli", + "Witia", "Mgjbot", - "Odder", - "WalkerPL", - "Ptak82", - "Marcoos" + "Ptak82" ] }, - "Web/JavaScript/Referencje/O_tym_dokumencie/Konwencje_formatowania_tekstu": { - "modified": "2019-03-24T00:03:10.475Z", + "Web/JavaScript/Reference/Global_Objects/Date/getHours": { + "modified": "2019-03-23T23:58:08.740Z", "contributors": [ "teoli", - "fscholz", - "Marcoos", - "Ptak82", + "Witia", "Mgjbot", - "VooEak" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty": { - "modified": "2020-03-12T19:37:39.285Z", + "Web/JavaScript/Reference/Global_Objects/Date/getMilliseconds": { + "modified": "2019-03-23T23:58:07.015Z", "contributors": [ - "mitelak", - "asbud", "teoli", + "Witia", "Mgjbot", - "Ptak82", - "Marcoos" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array": { - "modified": "2020-03-03T12:48:14.352Z", + "Web/JavaScript/Reference/Global_Objects/Date/getMinutes": { + "modified": "2019-03-23T23:58:11.611Z", "contributors": [ - "1MrHous1", - "SurmaAa", - "wbamberg", - "stuniel", - "SlaWitDev", - "krawieck", - "Tidu", - "RadekRo", - "zpantalyku", "teoli", - "splewako", - "mirekczechxmm", - "KrzysztofKruk", - "Chrisraven", - "Ptak82", - "tybulewicz", - "Staszyna", - "Internauta1024A", + "Niewiado", + "ethertank", "Mgjbot", - "gandalf", - "VooEak", - "Marcoos", - "Anonymous" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/Reduce": { - "modified": "2019-11-09T19:25:57.362Z", + "Web/JavaScript/Reference/Global_Objects/Date/getMonth": { + "modified": "2019-03-23T23:58:11.021Z", "contributors": [ - "apiczkens", - "the0ffh", - "sqeeswy", - "kamce", - "thigrand" + "teoli", + "Niewiado", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/ReduceRight": { - "modified": "2020-10-15T22:28:04.989Z", + "Web/JavaScript/Reference/Global_Objects/Date/getSeconds": { + "modified": "2019-03-23T23:58:07.116Z", "contributors": [ - "martraw", - "mayacode" + "dloranc", + "teoli", + "Niewiado", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/concat": { - "modified": "2019-03-23T23:47:21.906Z", + "Web/JavaScript/Reference/Global_Objects/Date/getTime": { + "modified": "2019-03-23T23:58:10.392Z", "contributors": [ "teoli", + "Niewiado", "Mgjbot", - "Marcoos", - "Staszyna", - "Internauta1024A", - "Sheppy", - "Ptak82", - "Diablownik" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/copyWithin": { - "modified": "2020-10-26T11:54:47.946Z", + "Web/JavaScript/Reference/Global_Objects/Date/getTimezoneOffset": { + "modified": "2019-03-23T23:58:10.620Z", "contributors": [ - "jangromko" + "teoli", + "Niewiado", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/entries": { - "modified": "2020-10-15T22:07:30.753Z", + "Web/JavaScript/Reference/Global_Objects/Date/getUTCDate": { + "modified": "2019-03-18T20:40:45.398Z", "contributors": [ - "kucharzgotuje" + "kdragowski", + "Vrq", + "teoli", + "Niewiado", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/every": { - "modified": "2019-03-23T23:49:40.637Z", + "Web/JavaScript/Reference/Global_Objects/Date/getUTCDay": { + "modified": "2019-03-23T23:58:06.532Z", "contributors": [ - "tomabr", "teoli", - "Mgjbot", - "telendt", - "Marcoos", - "Ptak82", - "Sheppy", - "Internauta1024A" + "Niewiado", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/fill": { - "modified": "2019-03-23T22:50:50.966Z", + "Web/JavaScript/Reference/Global_Objects/Date/getUTCFullYear": { + "modified": "2019-03-23T23:58:11.153Z", "contributors": [ - "emero", - "PawelPapuli", - "SphinxKnight", - "quim" + "teoli", + "Niewiado", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/filter": { - "modified": "2019-03-18T20:34:27.512Z", + "Web/JavaScript/Reference/Global_Objects/Date/getUTCHours": { + "modified": "2019-03-23T23:58:11.930Z", "contributors": [ - "KamilaWalkowiak", - "romprzy", - "kanapka94", - "tues", - "zpantalyku", - "krzosik", - "robadev", - "alexfluger", "teoli", - "michail_w", - "Krzysiek6", - "Mgjbot", - "Marcoos", - "telendt", + "Niewiado", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/find": { - "modified": "2020-09-25T21:17:08.283Z", + "Web/JavaScript/Reference/Global_Objects/Date/getUTCMilliseconds": { + "modified": "2019-03-23T23:58:11.828Z", "contributors": [ - "jangromko", - "SphinxKnight", - "TeoTN", - "gpluta", - "kdex", - "svantetic", - "karol-f", - "thigrand" + "teoli", + "Niewiado", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/findIndex": { - "modified": "2019-03-23T22:07:32.543Z", + "Web/JavaScript/Reference/Global_Objects/Date/getUTCMinutes": { + "modified": "2019-03-23T23:58:11.716Z", "contributors": [ - "Snieezy" + "teoli", + "Niewiado", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/flat": { - "modified": "2020-10-15T22:19:13.003Z", + "Web/JavaScript/Reference/Global_Objects/Date/getUTCMonth": { + "modified": "2019-03-23T23:58:09.067Z", "contributors": [ - "KonradLinkowski", - "raszta" + "teoli", + "Niewiado", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/forEach": { - "modified": "2019-09-23T06:35:11.871Z", + "Web/JavaScript/Reference/Global_Objects/Date/getUTCSeconds": { + "modified": "2019-03-23T23:58:13.586Z", "contributors": [ - "OJezu", - "zibra", "teoli", - "Mgjbot", - "ethertank", - "Robson", - "telendt", + "Niewiado", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/from": { - "modified": "2019-03-23T22:31:40.624Z", + "Web/JavaScript/Reference/Global_Objects/Date/getYear": { + "modified": "2019-03-23T23:58:08.162Z", "contributors": [ - "kdex", - "Maciej_Grycz", - "kamce", - "aquz" + "teoli", + "Niewiado", + "Mgjbot", + "Ptak82", + "Internauta1024A" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/includes": { - "modified": "2020-10-15T21:41:30.374Z", + "Web/JavaScript/Reference/Global_Objects/Date": { + "modified": "2019-06-11T10:18:58.847Z", "contributors": [ - "Nux", + "wojexe", + "dkoprowski", "wbamberg", - "DzikiChrzan" - ] - }, - "Web/JavaScript/Referencje/Obiekty/Array/indexOf": { - "modified": "2019-03-23T23:46:42.451Z", - "contributors": [ "teoli", + "Witia", + "Internauta1024A", "telendt", - "Ptak82", "Mgjbot", - "Sheppy" - ] - }, - "Web/JavaScript/Referencje/Obiekty/Array/isArray": { - "modified": "2019-03-23T22:54:42.353Z", - "contributors": [ - "kwarpechowski", - "tomabr" + "Ptak82", + "Jfkpl", + "VooEak", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/join": { - "modified": "2019-03-23T23:48:50.993Z", + "Web/JavaScript/Reference/Global_Objects/Date/now": { + "modified": "2019-03-23T23:51:17.289Z", "contributors": [ + "mibac", "teoli", "Diablownik", + "ethertank", "Mgjbot", - "Internauta1024A", - "Staszyna", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/keys": { - "modified": "2019-03-23T22:15:56.755Z", + "Web/JavaScript/Reference/Global_Objects/Date/parse": { + "modified": "2019-03-18T20:39:59.791Z", "contributors": [ - "buoto" + "teoli", + "Niewiado", + "Mgjbot", + "Internauta1024A", + "Ptak82", + "Diablownik" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/lastIndexOf": { - "modified": "2019-03-23T23:47:29.921Z", + "Web/JavaScript/Reference/Global_Objects/Date/setDate": { + "modified": "2019-03-18T20:39:59.968Z", "contributors": [ "teoli", - "Mgjbot", - "telendt", - "Marcoos", - "Sheppy", + "Niewiado", + "Internauta1024A", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/length": { - "modified": "2019-03-23T23:47:25.247Z", + "Web/JavaScript/Reference/Global_Objects/Date/setFullYear": { + "modified": "2019-03-23T23:58:07.348Z", "contributors": [ "teoli", - "Mgjbot", - "Diablownik", + "gandalf", "Internauta1024A", - "Ptak82", - "Sheppy" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/map": { - "modified": "2019-03-23T23:49:38.387Z", + "Web/JavaScript/Reference/Global_Objects/Date/setHours": { + "modified": "2019-08-28T16:11:14.990Z", "contributors": [ - "michalwarda", - "halicki", - "cojack", - "Miras", - "nix1", + "radamuspl", "teoli", - "Mgjbot", - "Ptak82", - "tybulewicz", - "Internauta1024A" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/of": { - "modified": "2020-10-15T22:10:00.043Z", + "Web/JavaScript/Reference/Global_Objects/Date/setMilliseconds": { + "modified": "2019-03-23T23:43:30.096Z", "contributors": [ - "mat-bi" + "teoli", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/pop": { - "modified": "2019-03-23T23:47:25.069Z", + "Web/JavaScript/Reference/Global_Objects/Date/setMinutes": { + "modified": "2019-03-23T23:43:25.746Z", "contributors": [ - "asikora", "teoli", - "Mgjbot", - "Diablownik", - "Internauta1024A", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/prototype": { - "modified": "2019-07-11T20:14:55.409Z", + "Web/JavaScript/Reference/Global_Objects/Date/setMonth": { + "modified": "2019-03-23T23:43:31.314Z", "contributors": [ - "kleyu", "teoli", - "fscholz", - "Diablownik", - "Mgjbot", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/push": { - "modified": "2019-03-23T23:47:25.462Z", + "Web/JavaScript/Reference/Global_Objects/Date/setSeconds": { + "modified": "2019-03-23T23:43:26.818Z", "contributors": [ "teoli", - "Mgjbot", - "Ptak82", - "telendt", - "Internauta1024A" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/reverse": { - "modified": "2019-03-23T23:47:24.313Z", + "Web/JavaScript/Reference/Global_Objects/Date/setTime": { + "modified": "2019-03-23T23:43:26.218Z", "contributors": [ "teoli", - "Mgjbot", - "Marcoos", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/shift": { - "modified": "2019-06-30T05:28:38.117Z", + "Web/JavaScript/Reference/Global_Objects/Date/setUTCDate": { + "modified": "2019-03-23T23:43:19.551Z", "contributors": [ - "Krysik", "teoli", - "tomecko", - "Mgjbot", - "telendt", - "Internauta1024A", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/slice": { - "modified": "2019-03-23T23:47:22.485Z", + "Web/JavaScript/Reference/Global_Objects/Date/setUTCFullYear": { + "modified": "2019-03-23T23:43:22.591Z", "contributors": [ - "malu", "teoli", - "michalmarkowski", - "Mgjbot", - "Ptak82", - "telendt", - "Internauta1024A", - "Sheppy" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/some": { - "modified": "2019-03-23T23:49:40.896Z", + "Web/JavaScript/Reference/Global_Objects/Date/setUTCHours": { + "modified": "2019-03-23T23:43:27.771Z", "contributors": [ - "getup10g", - "Bjornskjald", - "alexfluger", "teoli", - "Mgjbot", - "Internauta1024A", - "Ptak82", - "tybulewicz" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/sort": { - "modified": "2019-03-23T23:47:26.710Z", + "Web/JavaScript/Reference/Global_Objects/Date/setUTCMilliseconds": { + "modified": "2019-03-23T23:43:32.840Z", "contributors": [ - "Bx.", - "el-dide", "teoli", - "Mgjbot", - "tybulewicz", - "Internauta1024A", - "Diablownik", - "Sheppy", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/splice": { - "modified": "2019-03-23T23:47:26.002Z", + "Web/JavaScript/Reference/Global_Objects/Date/setUTCMinutes": { + "modified": "2019-03-23T23:43:24.515Z", "contributors": [ - "emero", - "Wayofthesin", - "kaczor1984", - "achwedyk", "teoli", - "Mgjbot", - "telendt", - "Ptak82", - "Internauta1024A", - "Sheppy" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/toLocaleString": { - "modified": "2020-11-11T13:31:59.409Z", + "Web/JavaScript/Reference/Global_Objects/Date/setUTCMonth": { + "modified": "2019-03-23T23:43:31.194Z", "contributors": [ - "szczerski", - "kwarpechowski" + "teoli", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/toSource": { - "modified": "2019-03-23T23:49:50.954Z", + "Web/JavaScript/Reference/Global_Objects/Date/setUTCSeconds": { + "modified": "2019-03-23T23:43:28.708Z", "contributors": [ "teoli", - "Diablownik", - "Mgjbot", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/toString": { - "modified": "2019-03-23T23:47:24.621Z", + "Web/JavaScript/Reference/Global_Objects/Date/setYear": { + "modified": "2019-03-23T23:43:29.991Z", "contributors": [ - "kwarpechowski", "teoli", - "Mgjbot", - "Diablownik", - "Internauta1024A", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/unshift": { - "modified": "2019-03-23T23:47:27.035Z", + "Web/JavaScript/Reference/Global_Objects/Date/toGMTString": { + "modified": "2019-03-23T23:43:24.162Z", "contributors": [ "teoli", - "Mgjbot", - "Ptak82", - "Internauta1024A", - "Diablownik" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Array/values": { - "modified": "2020-10-15T22:00:51.518Z", + "Web/JavaScript/Reference/Global_Objects/Date/toJSON": { + "modified": "2020-10-15T22:09:56.845Z", "contributors": [ - "kasztan" + "chlebek" ] }, - "Web/JavaScript/Referencje/Obiekty/ArrayBuffer": { - "modified": "2019-03-23T22:14:05.315Z", + "Web/JavaScript/Reference/Global_Objects/Date/toLocaleDateString": { + "modified": "2019-03-18T20:39:59.044Z", "contributors": [ - "drm404" + "teoli", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/BigInt": { - "modified": "2020-10-15T22:27:46.176Z", + "Web/JavaScript/Reference/Global_Objects/Date/toLocaleString": { + "modified": "2019-03-18T20:39:59.243Z", "contributors": [ - "jangromko" + "teoli", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/BigInt/asIntN": { - "modified": "2020-10-15T22:29:22.063Z", + "Web/JavaScript/Reference/Global_Objects/Date/toLocaleTimeString": { + "modified": "2019-03-23T23:43:29.100Z", "contributors": [ - "jangromko" + "teoli", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/BigInt/asUintN": { - "modified": "2020-10-15T22:29:21.176Z", + "Web/JavaScript/Reference/Global_Objects/Date/toSource": { + "modified": "2019-03-23T23:43:26.646Z", "contributors": [ - "jangromko" + "teoli", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/BigInt/toString": { - "modified": "2020-10-15T22:29:27.321Z", + "Web/JavaScript/Reference/Global_Objects/Date/toString": { + "modified": "2019-03-23T23:46:38.804Z", "contributors": [ - "jangromko" + "teoli", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/BigInt/valueOf": { - "modified": "2020-10-15T22:30:01.749Z", + "Web/JavaScript/Reference/Global_Objects/Date/toUTCString": { + "modified": "2019-03-23T23:43:28.172Z", "contributors": [ - "jangromko" + "teoli", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Boolean": { - "modified": "2019-03-23T23:51:54.713Z", + "Web/JavaScript/Reference/Global_Objects/Date/UTC": { + "modified": "2019-03-23T23:58:12.265Z", "contributors": [ - "kanapka94", - "wbamberg", "teoli", - "Diablownik", - "Internauta1024A", - "Ptak82", + "Witia", "Mgjbot", - "Marcoos" + "telendt", + "Ptak82", + "Diablownik" ] }, - "Web/JavaScript/Referencje/Obiekty/Boolean/prototype": { - "modified": "2019-03-23T23:58:08.032Z", + "Web/JavaScript/Reference/Global_Objects/Date/valueOf": { + "modified": "2019-03-23T23:43:28.602Z", + "contributors": [ + "teoli", + "Ptak82" + ] + }, + "Web/JavaScript/Reference/Global_Objects/decodeURI": { + "modified": "2020-03-12T19:37:41.064Z", "contributors": [ "teoli", - "Witia", "Mgjbot", "Diablownik", + "Internauta1024A", "Ptak82", - "Marcoos" + "VooEak" ] }, - "Web/JavaScript/Referencje/Obiekty/Boolean/toSource": { - "modified": "2019-03-23T23:58:05.520Z", + "Web/JavaScript/Reference/Global_Objects/decodeURIComponent": { + "modified": "2020-03-12T19:37:32.361Z", "contributors": [ "teoli", - "Witia", "Mgjbot", "Ptak82", - "telendt", - "Takenbot", - "Marcoos" + "VooEak" ] }, - "Web/JavaScript/Referencje/Obiekty/Boolean/toString": { - "modified": "2019-03-23T23:58:09.826Z", + "Web/JavaScript/Reference/Global_Objects/encodeURI": { + "modified": "2020-03-12T19:37:30.589Z", "contributors": [ "teoli", - "Witia", "Mgjbot", + "Quest-88", "Ptak82", - "Marcoos" + "VooEak" ] }, - "Web/JavaScript/Referencje/Obiekty/Boolean/valueOf": { - "modified": "2019-03-23T23:58:19.030Z", + "Web/JavaScript/Reference/Global_Objects/encodeURIComponent": { + "modified": "2020-03-12T19:37:35.220Z", "contributors": [ "teoli", - "Witia", "Mgjbot", + "Quest-88", "Ptak82", - "Takenbot", - "Marcoos" + "VooEak" + ] + }, + "Web/JavaScript/Reference/Global_Objects/Error/columnNumber": { + "modified": "2019-03-23T22:50:40.876Z", + "contributors": [ + "teoli", + "fscholz" + ] + }, + "Web/JavaScript/Reference/Global_Objects/Error/fileName": { + "modified": "2020-10-15T22:30:02.676Z", + "contributors": [ + "jangromko" + ] + }, + "Web/JavaScript/Reference/Global_Objects/Error": { + "modified": "2020-10-15T21:37:48.928Z", + "contributors": [ + "ZiomaleQ", + "mitelak", + "fscholz" + ] + }, + "Web/JavaScript/Reference/Global_Objects/Error/lineNumber": { + "modified": "2020-10-15T22:30:02.665Z", + "contributors": [ + "jangromko" + ] + }, + "Web/JavaScript/Reference/Global_Objects/Error/message": { + "modified": "2019-03-23T22:51:09.554Z", + "contributors": [ + "fscholz", + "adam-tokarski" + ] + }, + "Web/JavaScript/Reference/Global_Objects/Error/name": { + "modified": "2019-03-23T22:51:10.374Z", + "contributors": [ + "fscholz", + "adam-tokarski" ] }, - "Web/JavaScript/Referencje/Obiekty/DataView": { - "modified": "2020-10-15T21:57:36.691Z", + "Web/JavaScript/Reference/Global_Objects/Error/Stack": { + "modified": "2020-10-15T22:30:56.297Z", "contributors": [ - "meron1122" + "jangromko" ] }, - "Web/JavaScript/Referencje/Obiekty/Date": { - "modified": "2019-06-11T10:18:58.847Z", + "Web/JavaScript/Reference/Global_Objects/Error/toSource": { + "modified": "2020-10-15T22:32:18.167Z", "contributors": [ - "wojexe", - "dkoprowski", - "wbamberg", - "teoli", - "Witia", - "Internauta1024A", - "telendt", - "Mgjbot", - "Ptak82", - "Jfkpl", - "VooEak", - "Marcoos" + "jangromko" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/UTC": { - "modified": "2019-03-23T23:58:12.265Z", + "Web/JavaScript/Reference/Global_Objects/Error/toString": { + "modified": "2020-10-15T22:32:18.562Z", "contributors": [ - "teoli", - "Witia", - "Mgjbot", - "telendt", - "Ptak82", - "Diablownik" + "jangromko" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/constructor": { - "modified": "2019-01-16T14:55:06.466Z", + "Web/JavaScript/Reference/Global_Objects/escape": { + "modified": "2020-03-12T19:43:04.815Z", "contributors": [ - "teoli", - "Witia", - "Marcoos", - "Mgjbot", - "Ptak82" + "kamce" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/getDate": { - "modified": "2019-03-18T20:39:59.605Z", + "Web/JavaScript/Reference/Global_Objects/EvalError": { + "modified": "2020-10-15T22:33:25.487Z", "contributors": [ - "teoli", - "Mgjbot", - "telendt", - "Ptak82" + "jangromko" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/getDay": { - "modified": "2019-03-23T23:47:14.453Z", + "Web/JavaScript/Reference/Global_Objects/Function/apply": { + "modified": "2019-03-23T22:26:19.022Z", "contributors": [ - "dloranc", - "teoli", - "Mgjbot", - "telendt", - "Ptak82" + "jangromko", + "pceuropa" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/getFullYear": { - "modified": "2019-03-23T23:58:09.308Z", + "Web/JavaScript/Reference/Global_Objects/Function/arguments": { + "modified": "2019-03-23T23:51:16.714Z", "contributors": [ "teoli", - "Witia", + "Diablownik", "Mgjbot", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/getHours": { - "modified": "2019-03-23T23:58:08.740Z", + "Web/JavaScript/Reference/Global_Objects/Function/bind": { + "modified": "2020-11-29T17:45:12.082Z", "contributors": [ - "teoli", - "Witia", - "Mgjbot", - "Ptak82" + "derekqq", + "RobertGelu" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/getMilliseconds": { - "modified": "2019-03-23T23:58:07.015Z", + "Web/JavaScript/Reference/Global_Objects/Function/caller": { + "modified": "2019-03-23T23:54:03.104Z", "contributors": [ "teoli", - "Witia", "Mgjbot", + "Marcoos", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/getMinutes": { - "modified": "2019-03-23T23:58:11.611Z", + "Web/JavaScript/Reference/Global_Objects/Function/displayName": { + "modified": "2019-03-23T22:33:56.919Z", "contributors": [ "teoli", - "Niewiado", - "ethertank", - "Mgjbot", - "Ptak82" + "sefel" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/getMonth": { - "modified": "2019-03-23T23:58:11.021Z", + "Web/JavaScript/Reference/Global_Objects/Function": { + "modified": "2019-03-23T22:57:36.964Z", "contributors": [ - "teoli", - "Niewiado", - "Mgjbot", - "Ptak82" + "pkubowicz", + "thigrand", + "teoli" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/getSeconds": { - "modified": "2019-03-23T23:58:07.116Z", + "Web/JavaScript/Reference/Global_Objects/Function/length": { + "modified": "2019-03-23T23:53:59.423Z", "contributors": [ - "dloranc", "teoli", - "Niewiado", "Mgjbot", - "Ptak82" + "Ptak82", + "Internauta1024A" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/getTime": { - "modified": "2019-03-23T23:58:10.392Z", + "Web/JavaScript/Reference/Global_Objects/Function/toString": { + "modified": "2019-03-23T23:54:00.212Z", "contributors": [ "teoli", - "Niewiado", + "ethertank", "Mgjbot", - "Ptak82" + "Ptak82", + "Diablownik" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/getTimezoneOffset": { - "modified": "2019-03-23T23:58:10.620Z", + "Web/JavaScript/Reference/Global_Objects/Generator": { + "modified": "2019-03-23T22:15:20.748Z", "contributors": [ - "teoli", - "Niewiado", - "Ptak82" + "labs4apps" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/getUTCDate": { - "modified": "2019-03-18T20:40:45.398Z", + "Web/JavaScript/Reference/Global_Objects": { + "modified": "2020-03-12T19:37:39.285Z", "contributors": [ - "kdragowski", - "Vrq", + "mitelak", + "asbud", "teoli", - "Niewiado", - "Ptak82" + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/getUTCDay": { - "modified": "2019-03-23T23:58:06.532Z", + "Web/JavaScript/Reference/Global_Objects/Infinity": { + "modified": "2020-03-12T19:37:41.172Z", "contributors": [ + "gaazkam", "teoli", - "Niewiado", - "Ptak82" + "Mgjbot", + "Ptak82", + "Takenbot", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/getUTCFullYear": { - "modified": "2019-03-23T23:58:11.153Z", + "Web/JavaScript/Reference/Global_Objects/isFinite": { + "modified": "2020-03-12T19:37:33.636Z", "contributors": [ "teoli", - "Niewiado", - "Ptak82" + "Mgjbot", + "Diablownik", + "Internauta1024A", + "Marcoos", + "Ptak82", + "VooEak" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/getUTCHours": { - "modified": "2019-03-23T23:58:11.930Z", + "Web/JavaScript/Reference/Global_Objects/isNaN": { + "modified": "2020-03-12T19:37:31.060Z", "contributors": [ "teoli", - "Niewiado", - "Ptak82" + "Mgjbot", + "Marcoos", + "Sheppy", + "Ptak82", + "Internauta1024A", + "Takenbot" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/getUTCMilliseconds": { - "modified": "2019-03-23T23:58:11.828Z", + "Web/JavaScript/Reference/Global_Objects/JSON": { + "modified": "2020-10-15T22:24:07.363Z", "contributors": [ - "teoli", - "Niewiado", - "Ptak82" + "krupinskij" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/getUTCMinutes": { - "modified": "2019-03-23T23:58:11.716Z", + "Web/JavaScript/Reference/Global_Objects/Map/clear": { + "modified": "2020-10-15T22:01:01.515Z", "contributors": [ - "teoli", - "Niewiado", - "Ptak82" + "MarekHuckmann" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/getUTCMonth": { - "modified": "2019-03-23T23:58:09.067Z", + "Web/JavaScript/Reference/Global_Objects/Map/delete": { + "modified": "2020-10-15T22:01:01.152Z", "contributors": [ - "teoli", - "Niewiado", - "Ptak82" + "MarekHuckmann" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/getUTCSeconds": { - "modified": "2019-03-23T23:58:13.586Z", + "Web/JavaScript/Reference/Global_Objects/Map/entries": { + "modified": "2019-03-18T21:42:37.088Z", "contributors": [ - "teoli", - "Niewiado", - "Ptak82" + "MarekHuckmann" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/getYear": { - "modified": "2019-03-23T23:58:08.162Z", + "Web/JavaScript/Reference/Global_Objects/Map/forEach": { + "modified": "2020-10-15T22:01:04.417Z", "contributors": [ - "teoli", - "Niewiado", - "Mgjbot", - "Ptak82", - "Internauta1024A" + "MarekHuckmann" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/now": { - "modified": "2019-03-23T23:51:17.289Z", + "Web/JavaScript/Reference/Global_Objects/Map/get": { + "modified": "2020-10-15T22:01:06.016Z", "contributors": [ - "mibac", - "teoli", - "Diablownik", - "ethertank", - "Mgjbot", - "Ptak82" + "MarekHuckmann" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/parse": { - "modified": "2019-03-18T20:39:59.791Z", + "Web/JavaScript/Reference/Global_Objects/Map/has": { + "modified": "2020-10-15T22:01:05.981Z", "contributors": [ - "teoli", - "Niewiado", - "Mgjbot", - "Internauta1024A", - "Ptak82", - "Diablownik" + "MarekHuckmann" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/prototype": { - "modified": "2019-03-23T23:53:54.438Z", + "Web/JavaScript/Reference/Global_Objects/Map": { + "modified": "2020-09-01T10:21:27.914Z", "contributors": [ - "teoli", - "Mgjbot", - "Internauta1024A", - "Taken", - "Ptak82" + "struginskij", + "KonradLinkowski", + "108adams", + "Asek90", + "xgarrett", + "broslukasz" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/setDate": { - "modified": "2019-03-18T20:39:59.968Z", + "Web/JavaScript/Reference/Global_Objects/Map/keys": { + "modified": "2020-10-15T22:01:06.126Z", "contributors": [ - "teoli", - "Niewiado", - "Internauta1024A", - "Ptak82" + "MarekHuckmann" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/setFullYear": { - "modified": "2019-03-23T23:58:07.348Z", + "Web/JavaScript/Reference/Global_Objects/Map/set": { + "modified": "2020-10-15T22:01:06.173Z", "contributors": [ - "teoli", - "gandalf", - "Internauta1024A", - "Ptak82" + "MarekHuckmann" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/setHours": { - "modified": "2019-08-28T16:11:14.990Z", + "Web/JavaScript/Reference/Global_Objects/Map/size": { + "modified": "2020-10-15T22:17:26.741Z", "contributors": [ - "radamuspl", - "teoli", - "Ptak82" + "tipakA" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/setMilliseconds": { - "modified": "2019-03-23T23:43:30.096Z", + "Web/JavaScript/Reference/Global_Objects/Map/values": { + "modified": "2020-10-15T22:01:06.933Z", "contributors": [ - "teoli", - "Ptak82" + "MarekHuckmann" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/setMinutes": { - "modified": "2019-03-23T23:43:25.746Z", + "Web/JavaScript/Reference/Global_Objects/Math/abs": { + "modified": "2019-03-23T23:47:55.610Z", "contributors": [ "teoli", - "Ptak82" + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/setMonth": { - "modified": "2019-03-23T23:43:31.314Z", + "Web/JavaScript/Reference/Global_Objects/Math/acos": { + "modified": "2019-03-23T23:47:58.749Z", "contributors": [ "teoli", - "Ptak82" + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/setSeconds": { - "modified": "2019-03-23T23:43:26.818Z", + "Web/JavaScript/Reference/Global_Objects/Math/asin": { + "modified": "2019-03-23T23:47:52.375Z", "contributors": [ "teoli", - "Ptak82" + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/setTime": { - "modified": "2019-03-23T23:43:26.218Z", + "Web/JavaScript/Reference/Global_Objects/Math/atan": { + "modified": "2019-03-23T23:47:58.908Z", "contributors": [ "teoli", - "Ptak82" + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/setUTCDate": { - "modified": "2019-03-23T23:43:19.551Z", + "Web/JavaScript/Reference/Global_Objects/Math/atan2": { + "modified": "2019-03-23T23:48:00.596Z", "contributors": [ "teoli", - "Ptak82" + "Mgjbot", + "Ptak82", + "Takenbot", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/setUTCFullYear": { - "modified": "2019-03-23T23:43:22.591Z", + "Web/JavaScript/Reference/Global_Objects/Math/ceil": { + "modified": "2019-03-23T23:47:58.042Z", "contributors": [ "teoli", - "Ptak82" + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/setUTCHours": { - "modified": "2019-03-23T23:43:27.771Z", + "Web/JavaScript/Reference/Global_Objects/Math/cos": { + "modified": "2019-03-23T23:48:06.241Z", "contributors": [ "teoli", - "Ptak82" + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/setUTCMilliseconds": { - "modified": "2019-03-23T23:43:32.840Z", + "Web/JavaScript/Reference/Global_Objects/Math/E": { + "modified": "2019-03-23T23:47:55.039Z", "contributors": [ "teoli", - "Ptak82" + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/setUTCMinutes": { - "modified": "2019-03-23T23:43:24.515Z", + "Web/JavaScript/Reference/Global_Objects/Math/exp": { + "modified": "2019-03-23T23:48:06.373Z", "contributors": [ "teoli", - "Ptak82" + "Mgjbot", + "Ptak82", + "Takenbot", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/setUTCMonth": { - "modified": "2019-03-23T23:43:31.194Z", + "Web/JavaScript/Reference/Global_Objects/Math/floor": { + "modified": "2019-03-23T23:48:01.006Z", "contributors": [ "teoli", - "Ptak82" + "Mgjbot", + "Ptak82", + "Takenbot", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/setUTCSeconds": { - "modified": "2019-03-23T23:43:28.708Z", + "Web/JavaScript/Reference/Global_Objects/Math": { + "modified": "2019-11-16T16:52:10.805Z", "contributors": [ + "Iicytower", "teoli", - "Ptak82" + "Mgjbot", + "Balon", + "Ptak82", + "Faxe", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/setYear": { - "modified": "2019-03-23T23:43:29.991Z", + "Web/JavaScript/Reference/Global_Objects/Math/LN10": { + "modified": "2019-03-23T23:47:54.538Z", "contributors": [ "teoli", - "Ptak82" + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/toGMTString": { - "modified": "2019-03-23T23:43:24.162Z", + "Web/JavaScript/Reference/Global_Objects/Math/LN2": { + "modified": "2019-03-23T23:47:52.019Z", "contributors": [ "teoli", - "Ptak82" + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/toJSON": { - "modified": "2020-10-15T22:09:56.845Z", + "Web/JavaScript/Reference/Global_Objects/Math/log": { + "modified": "2019-03-23T23:48:08.846Z", "contributors": [ - "chlebek" + "teoli", + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/toLocaleDateString": { - "modified": "2019-03-18T20:39:59.044Z", + "Web/JavaScript/Reference/Global_Objects/Math/LOG10E": { + "modified": "2019-03-23T23:47:59.792Z", "contributors": [ "teoli", - "Ptak82" + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/toLocaleString": { - "modified": "2019-03-18T20:39:59.243Z", + "Web/JavaScript/Reference/Global_Objects/Math/LOG2E": { + "modified": "2019-03-23T23:47:53.913Z", "contributors": [ "teoli", - "Ptak82" + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/toLocaleTimeString": { - "modified": "2019-03-23T23:43:29.100Z", + "Web/JavaScript/Reference/Global_Objects/Math/max": { + "modified": "2019-03-23T23:48:02.936Z", "contributors": [ + "ppasieka", "teoli", - "Ptak82" + "safjanowski", + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/toSource": { - "modified": "2019-03-23T23:43:26.646Z", + "Web/JavaScript/Reference/Global_Objects/Math/min": { + "modified": "2019-03-23T23:48:05.366Z", "contributors": [ + "SphinxKnight", + "zdolny", "teoli", - "Ptak82" + "Mgjbot", + "Ptak82", + "Takenbot", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/toString": { - "modified": "2019-03-23T23:46:38.804Z", + "Web/JavaScript/Reference/Global_Objects/Math/PI": { + "modified": "2019-03-23T23:47:56.906Z", "contributors": [ "teoli", + "Mgjbot", "Ptak82", "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/toUTCString": { - "modified": "2019-03-23T23:43:28.172Z", + "Web/JavaScript/Reference/Global_Objects/Math/pow": { + "modified": "2019-03-23T23:48:05.015Z", "contributors": [ "teoli", - "Ptak82" + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Date/valueOf": { - "modified": "2019-03-23T23:43:28.602Z", + "Web/JavaScript/Reference/Global_Objects/Math/random": { + "modified": "2020-10-15T21:17:12.658Z", "contributors": [ + "Sqrcz", + "kanapka94", "teoli", - "Ptak82" + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Error": { - "modified": "2020-10-15T21:37:48.928Z", + "Web/JavaScript/Reference/Global_Objects/Math/round": { + "modified": "2019-03-23T23:48:04.166Z", "contributors": [ - "ZiomaleQ", - "mitelak", - "fscholz" + "teoli", + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Error/Stack": { - "modified": "2020-10-15T22:30:56.297Z", + "Web/JavaScript/Reference/Global_Objects/Math/sign": { + "modified": "2019-03-23T23:13:52.324Z", "contributors": [ - "jangromko" + "SphinxKnight", + "teoli", + "PawelDudek" ] }, - "Web/JavaScript/Referencje/Obiekty/Error/columnNumber": { - "modified": "2019-03-23T22:50:40.876Z", + "Web/JavaScript/Reference/Global_Objects/Math/sin": { + "modified": "2019-03-23T23:48:09.765Z", "contributors": [ "teoli", - "fscholz" + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Error/fileName": { - "modified": "2020-10-15T22:30:02.676Z", + "Web/JavaScript/Reference/Global_Objects/Math/sqrt": { + "modified": "2019-03-23T23:48:04.728Z", "contributors": [ - "jangromko" + "teoli", + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Error/lineNumber": { - "modified": "2020-10-15T22:30:02.665Z", + "Web/JavaScript/Reference/Global_Objects/Math/SQRT1_2": { + "modified": "2019-03-23T23:47:57.323Z", "contributors": [ - "jangromko" + "teoli", + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Error/message": { - "modified": "2019-03-23T22:51:09.554Z", + "Web/JavaScript/Reference/Global_Objects/Math/SQRT2": { + "modified": "2019-03-23T23:47:59.037Z", "contributors": [ - "fscholz", - "adam-tokarski" + "teoli", + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Error/name": { - "modified": "2019-03-23T22:51:10.374Z", + "Web/JavaScript/Reference/Global_Objects/Math/tan": { + "modified": "2019-03-23T23:48:02.693Z", "contributors": [ - "fscholz", - "adam-tokarski" + "teoli", + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Error/prototype": { - "modified": "2020-10-15T21:37:55.917Z", + "Web/JavaScript/Reference/Global_Objects/NaN": { + "modified": "2020-03-12T19:37:38.834Z", "contributors": [ - "mitelak", - "fscholz" + "teoli", + "Mgjbot", + "Ptak82", + "Takenbot", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Error/toSource": { - "modified": "2020-10-15T22:32:18.167Z", + "Web/JavaScript/Reference/Global_Objects/null": { + "modified": "2020-03-12T19:45:50.208Z", "contributors": [ - "jangromko" + "JacobDesight" ] }, - "Web/JavaScript/Referencje/Obiekty/Error/toString": { - "modified": "2020-10-15T22:32:18.562Z", + "Web/JavaScript/Reference/Global_Objects/Number/EPSILON": { + "modified": "2020-10-15T22:24:18.127Z", "contributors": [ - "jangromko" + "krupinskij" ] }, - "Web/JavaScript/Referencje/Obiekty/EvalError": { - "modified": "2020-10-15T22:33:25.487Z", + "Web/JavaScript/Reference/Global_Objects/Number": { + "modified": "2019-03-23T23:50:26.634Z", "contributors": [ - "jangromko" + "Piterunihongo", + "teoli", + "fscholz", + "Diablownik", + "Chrisraven", + "Mgjbot", + "Ptak82", + "Marcoos", + "VooEak" ] }, - "Web/JavaScript/Referencje/Obiekty/Function": { - "modified": "2019-03-23T22:57:36.964Z", + "Web/JavaScript/Reference/Global_Objects/Number/isInteger": { + "modified": "2020-10-15T21:56:18.899Z", "contributors": [ - "pkubowicz", - "thigrand", - "teoli" + "PaG", + "morthan" ] }, - "Web/JavaScript/Referencje/Obiekty/Function/apply": { - "modified": "2019-03-23T22:26:19.022Z", + "Web/JavaScript/Reference/Global_Objects/Number/isNaN": { + "modified": "2020-10-15T22:24:16.707Z", "contributors": [ - "jangromko", - "pceuropa" + "krupinskij" ] }, - "Web/JavaScript/Referencje/Obiekty/Function/arguments": { - "modified": "2019-03-23T23:51:16.714Z", + "Web/JavaScript/Reference/Global_Objects/Number/MAX_VALUE": { + "modified": "2019-03-23T23:46:06.341Z", "contributors": [ "teoli", - "Diablownik", + "Ptak82", "Mgjbot", - "Ptak82" - ] - }, - "Web/JavaScript/Referencje/Obiekty/Function/bind": { - "modified": "2020-11-29T17:45:12.082Z", - "contributors": [ - "derekqq", - "RobertGelu" + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Function/caller": { - "modified": "2019-03-23T23:54:03.104Z", + "Web/JavaScript/Reference/Global_Objects/Number/MIN_VALUE": { + "modified": "2019-03-23T23:47:03.042Z", "contributors": [ "teoli", + "Ptak82", "Mgjbot", - "Marcoos", - "Ptak82" + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Function/displayName": { - "modified": "2019-03-23T22:33:56.919Z", + "Web/JavaScript/Reference/Global_Objects/Number/NaN": { + "modified": "2019-03-23T23:45:44.372Z", "contributors": [ "teoli", - "sefel" + "Mgjbot", + "Ptak82", + "Diablownik" ] }, - "Web/JavaScript/Referencje/Obiekty/Function/length": { - "modified": "2019-03-23T23:53:59.423Z", + "Web/JavaScript/Reference/Global_Objects/Number/NEGATIVE_INFINITY": { + "modified": "2019-03-23T23:47:08.730Z", "contributors": [ "teoli", + "Diablownik", "Mgjbot", - "Ptak82", - "Internauta1024A" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Function/toString": { - "modified": "2019-03-23T23:54:00.212Z", + "Web/JavaScript/Reference/Global_Objects/Number/POSITIVE_INFINITY": { + "modified": "2019-03-23T23:47:06.877Z", "contributors": [ "teoli", - "ethertank", - "Mgjbot", "Ptak82", - "Diablownik" + "Diablownik", + "Mgjbot" ] }, - "Web/JavaScript/Referencje/Obiekty/Generator": { - "modified": "2019-03-23T22:15:20.748Z", + "Web/JavaScript/Reference/Global_Objects/Number/toExponential": { + "modified": "2019-03-23T23:47:01.823Z", "contributors": [ - "labs4apps" + "teoli", + "Diablownik", + "Mgjbot", + "Internauta1024A", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Infinity": { - "modified": "2020-03-12T19:37:41.172Z", + "Web/JavaScript/Reference/Global_Objects/Number/toFixed": { + "modified": "2019-03-23T23:24:37.690Z", "contributors": [ - "gaazkam", "teoli", + "Diablownik", "Mgjbot", - "Ptak82", - "Takenbot", - "Marcoos" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/JSON": { - "modified": "2020-10-15T22:24:07.363Z", + "Web/JavaScript/Reference/Global_Objects/Number/toLocaleString": { + "modified": "2020-10-15T21:57:55.583Z", "contributors": [ - "krupinskij" + "narghar", + "eLGi" ] }, - "Web/JavaScript/Referencje/Obiekty/Map": { - "modified": "2020-09-01T10:21:27.914Z", + "Web/JavaScript/Reference/Global_Objects/Number/toPrecision": { + "modified": "2019-03-23T23:46:55.576Z", "contributors": [ - "struginskij", - "KonradLinkowski", - "108adams", - "Asek90", - "xgarrett", - "broslukasz" + "teoli", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Map/clear": { - "modified": "2020-10-15T22:01:01.515Z", + "Web/JavaScript/Reference/Global_Objects/Number/toString": { + "modified": "2019-03-23T23:49:39.505Z", "contributors": [ - "MarekHuckmann" + "teoli", + "Diablownik", + "Mgjbot", + "Internauta1024A", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Map/delete": { - "modified": "2020-10-15T22:01:01.152Z", + "Web/JavaScript/Reference/Global_Objects/Object/assign": { + "modified": "2019-08-15T08:41:27.590Z", "contributors": [ - "MarekHuckmann" + "oddehh", + "tkitynski", + "belfz", + "kkowalczuk", + "drzazga", + "JacobDesight" ] }, - "Web/JavaScript/Referencje/Obiekty/Map/entries": { - "modified": "2019-03-18T21:42:37.088Z", + "Web/JavaScript/Reference/Global_Objects/Object/constructor": { + "modified": "2019-03-23T23:50:18.166Z", "contributors": [ - "MarekHuckmann" + "teoli", + "Sheppy", + "Wookieb", + "Marcoos", + "Mgjbot", + "Ptak82", + "Takenbot" ] }, - "Web/JavaScript/Referencje/Obiekty/Map/forEach": { - "modified": "2020-10-15T22:01:04.417Z", + "Web/JavaScript/Reference/Global_Objects/Object/freeze": { + "modified": "2020-10-15T21:49:25.848Z", "contributors": [ - "MarekHuckmann" + "PiosDamian", + "Arkej", + "kdex", + "piecioshka", + "aquz" ] }, - "Web/JavaScript/Referencje/Obiekty/Map/get": { - "modified": "2020-10-15T22:01:06.016Z", + "Web/JavaScript/Reference/Global_Objects/Object/getOwnPropertyDescriptor": { + "modified": "2020-10-15T21:51:58.332Z", "contributors": [ - "MarekHuckmann" + "fscholz", + "piecioshka", + "andersz-artur", + "mateusz-pietruch" ] }, - "Web/JavaScript/Referencje/Obiekty/Map/has": { - "modified": "2020-10-15T22:01:05.981Z", + "Web/JavaScript/Reference/Global_Objects/Object/hasOwnProperty": { + "modified": "2020-10-15T21:37:23.621Z", "contributors": [ - "MarekHuckmann" + "JB1905", + "kanapka94", + "s1awek", + "dianafa" ] }, - "Web/JavaScript/Referencje/Obiekty/Map/keys": { - "modified": "2020-10-15T22:01:06.126Z", + "Web/JavaScript/Reference/Global_Objects/Object": { + "modified": "2019-03-23T23:51:13.882Z", "contributors": [ - "MarekHuckmann" + "JacobDesight", + "teoli", + "fscholz", + "Diablownik", + "Ptak82", + "Mgjbot", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Map/set": { - "modified": "2020-10-15T22:01:06.173Z", + "Web/JavaScript/Reference/Global_Objects/Object/proto": { + "modified": "2019-03-23T22:15:34.204Z", "contributors": [ - "MarekHuckmann" + "JacobDesight" ] }, - "Web/JavaScript/Referencje/Obiekty/Map/size": { - "modified": "2020-10-15T22:17:26.741Z", + "Web/JavaScript/Reference/Global_Objects/Object/seal": { + "modified": "2019-03-23T22:50:09.394Z", "contributors": [ - "tipakA" + "arturkulig", + "piecioshka", + "MichalZalecki", + "mhadas" ] }, - "Web/JavaScript/Referencje/Obiekty/Map/values": { - "modified": "2020-10-15T22:01:06.933Z", + "Web/JavaScript/Reference/Global_Objects/Object/toLocaleString": { + "modified": "2019-03-23T23:44:51.103Z", "contributors": [ - "MarekHuckmann" + "kwarpechowski", + "teoli", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Math": { - "modified": "2019-11-16T16:52:10.805Z", + "Web/JavaScript/Reference/Global_Objects/Object/toSource": { + "modified": "2019-03-23T23:53:51.317Z", "contributors": [ - "Iicytower", "teoli", "Mgjbot", - "Balon", "Ptak82", - "Faxe", + "Takenbot", "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/E": { - "modified": "2019-03-23T23:47:55.039Z", + "Web/JavaScript/Reference/Global_Objects/Object/toString": { + "modified": "2019-03-23T23:48:38.071Z", "contributors": [ "teoli", "Mgjbot", @@ -9192,2558 +8986,2764 @@ "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/LN10": { - "modified": "2019-03-23T23:47:54.538Z", + "Web/JavaScript/Reference/Global_Objects/Object/valueOf": { + "modified": "2019-03-23T23:50:47.663Z", "contributors": [ "teoli", + "ethertank", "Mgjbot", + "Internauta1024A", "Ptak82", + "Takenbot", "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/LN2": { - "modified": "2019-03-23T23:47:52.019Z", + "Web/JavaScript/Reference/Global_Objects/parseFloat": { + "modified": "2020-03-12T19:37:26.647Z", "contributors": [ "teoli", "Mgjbot", + "Internauta1024A", + "Marcoos", + "Staszyna", + "Sheppy", "Ptak82", - "Marcoos" + "VooEak" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/LOG10E": { - "modified": "2019-03-23T23:47:59.792Z", + "Web/JavaScript/Reference/Global_Objects/parseInt": { + "modified": "2020-03-12T19:37:29.845Z", "contributors": [ "teoli", "Mgjbot", + "Marcoos", "Ptak82", - "Marcoos" + "VooEak" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/LOG2E": { - "modified": "2019-03-23T23:47:53.913Z", + "Web/JavaScript/Reference/Global_Objects/Promise": { + "modified": "2020-11-11T08:51:14.847Z", "contributors": [ - "teoli", - "Mgjbot", - "Ptak82", - "Marcoos" + "r2kode", + "mich_cz", + "SkillGG", + "szopenkrk" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/PI": { - "modified": "2019-03-23T23:47:56.906Z", + "Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/apply": { + "modified": "2020-10-15T22:18:47.930Z", "contributors": [ - "teoli", - "Mgjbot", - "Ptak82", - "Marcoos" + "magmast" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/SQRT1_2": { - "modified": "2019-03-23T23:47:57.323Z", + "Web/JavaScript/Reference/Global_Objects/Proxy": { + "modified": "2020-10-15T22:01:30.452Z", "contributors": [ - "teoli", - "Mgjbot", - "Ptak82", - "Marcoos" + "0ctothorp", + "andrzejkrecicki" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/SQRT2": { - "modified": "2019-03-23T23:47:59.037Z", + "Web/JavaScript/Reference/Global_Objects/RangeError": { + "modified": "2019-03-23T22:51:19.492Z", "contributors": [ - "teoli", - "Mgjbot", - "Ptak82", - "Marcoos" + "adam-tokarski" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/abs": { - "modified": "2019-03-23T23:47:55.610Z", + "Web/JavaScript/Reference/Global_Objects/RegExp/exec": { + "modified": "2019-03-23T23:47:09.516Z", "contributors": [ + "kowal.alek", "teoli", - "Mgjbot", "Ptak82", - "Marcoos" + "Mgjbot", + "Bedi" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/acos": { - "modified": "2019-03-23T23:47:58.749Z", + "Web/JavaScript/Reference/Global_Objects/RegExp/global": { + "modified": "2019-03-23T23:47:12.777Z", "contributors": [ "teoli", + "Diablownik", + "Internauta1024A", "Mgjbot", - "Ptak82", - "Marcoos" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/asin": { - "modified": "2019-03-23T23:47:52.375Z", + "Web/JavaScript/Reference/Global_Objects/RegExp/ignoreCase": { + "modified": "2019-03-23T23:47:14.670Z", "contributors": [ "teoli", + "Diablownik", + "Internauta1024A", "Mgjbot", - "Ptak82", - "Marcoos" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/atan": { - "modified": "2019-03-23T23:47:58.908Z", + "Web/JavaScript/Reference/Global_Objects/RegExp": { + "modified": "2019-03-23T23:59:43.766Z", "contributors": [ + "wbamberg", + "lunesco", + "kisiiel", + "morthan", + "tomash18r", "teoli", - "Mgjbot", + "Nux", + "Mysz", "Ptak82", - "Marcoos" + "Mgjbot", + "Marcoos", + "VooEak" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/atan2": { - "modified": "2019-03-23T23:48:00.596Z", + "Web/JavaScript/Reference/Global_Objects/RegExp/lastMatch": { + "modified": "2020-10-15T22:02:47.225Z", "contributors": [ - "teoli", - "Mgjbot", - "Ptak82", - "Takenbot", - "Marcoos" + "xShadow" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/ceil": { - "modified": "2019-03-23T23:47:58.042Z", + "Web/JavaScript/Reference/Global_Objects/RegExp/source": { + "modified": "2019-03-23T23:44:52.062Z", "contributors": [ "teoli", "Mgjbot", - "Ptak82", - "Marcoos" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/cos": { - "modified": "2019-03-23T23:48:06.241Z", + "Web/JavaScript/Reference/Global_Objects/RegExp/test": { + "modified": "2019-03-23T23:47:41.762Z", "contributors": [ "teoli", - "Mgjbot", + "Chrisraven", "Ptak82", - "Marcoos" + "Nux", + "Mgjbot" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/exp": { - "modified": "2019-03-23T23:48:06.373Z", + "Web/JavaScript/Reference/Global_Objects/RegExp/toSource": { + "modified": "2019-03-23T23:47:09.941Z", "contributors": [ "teoli", - "Mgjbot", "Ptak82", - "Takenbot", - "Marcoos" + "Mgjbot" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/floor": { - "modified": "2019-03-23T23:48:01.006Z", + "Web/JavaScript/Reference/Global_Objects/RegExp/toString": { + "modified": "2019-03-23T23:47:08.946Z", "contributors": [ "teoli", - "Mgjbot", "Ptak82", - "Takenbot", - "Marcoos" + "Mgjbot" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/log": { - "modified": "2019-03-23T23:48:08.846Z", + "Web/JavaScript/Reference/Global_Objects/Set": { + "modified": "2019-03-23T22:07:58.875Z", "contributors": [ - "teoli", - "Mgjbot", - "Ptak82", - "Marcoos" + "PiosDamian", + "klusaktomasz" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/max": { - "modified": "2019-03-23T23:48:02.936Z", + "Web/JavaScript/Reference/Global_Objects/Set/add": { + "modified": "2019-03-23T22:07:51.409Z", "contributors": [ - "ppasieka", - "teoli", - "safjanowski", - "Mgjbot", - "Ptak82", - "Marcoos" + "klusaktomasz" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/min": { - "modified": "2019-03-23T23:48:05.366Z", + "Web/JavaScript/Reference/Global_Objects/Set/clear": { + "modified": "2019-03-23T22:08:01.977Z", "contributors": [ - "SphinxKnight", - "zdolny", - "teoli", - "Mgjbot", - "Ptak82", - "Takenbot", - "Marcoos" + "klusaktomasz" + ] + }, + "Web/JavaScript/Reference/Global_Objects/Set/delete": { + "modified": "2020-10-15T21:56:04.971Z", + "contributors": [ + "trusohamn", + "klusaktomasz" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/pow": { - "modified": "2019-03-23T23:48:05.015Z", + "Web/JavaScript/Reference/Global_Objects/String/anchor": { + "modified": "2019-03-23T23:48:21.565Z", "contributors": [ "teoli", "Mgjbot", - "Ptak82", - "Marcoos" + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/random": { - "modified": "2020-10-15T21:17:12.658Z", + "Web/JavaScript/Reference/Global_Objects/String/big": { + "modified": "2019-03-23T23:48:11.354Z", "contributors": [ - "Sqrcz", - "kanapka94", "teoli", "Mgjbot", "Ptak82", - "Marcoos" + "Internauta1024A" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/round": { - "modified": "2019-03-23T23:48:04.166Z", + "Web/JavaScript/Reference/Global_Objects/String/blink": { + "modified": "2019-03-23T23:48:18.653Z", "contributors": [ "teoli", "Mgjbot", - "Ptak82", - "Marcoos" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/sign": { - "modified": "2019-03-23T23:13:52.324Z", + "Web/JavaScript/Reference/Global_Objects/String/bold": { + "modified": "2019-03-23T23:48:19.144Z", "contributors": [ - "SphinxKnight", "teoli", - "PawelDudek" + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/sin": { - "modified": "2019-03-23T23:48:09.765Z", + "Web/JavaScript/Reference/Global_Objects/String/charAt": { + "modified": "2019-03-23T23:48:20.523Z", "contributors": [ "teoli", "Mgjbot", "Ptak82", - "Marcoos" + "Diablownik" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/sqrt": { - "modified": "2019-03-23T23:48:04.728Z", + "Web/JavaScript/Reference/Global_Objects/String/charCodeAt": { + "modified": "2019-03-23T23:48:21.451Z", "contributors": [ "teoli", "Mgjbot", "Ptak82", - "Marcoos" + "Diablownik" ] }, - "Web/JavaScript/Referencje/Obiekty/Math/tan": { - "modified": "2019-03-23T23:48:02.693Z", + "Web/JavaScript/Reference/Global_Objects/String/concat": { + "modified": "2019-05-14T05:09:36.210Z", "contributors": [ "teoli", "Mgjbot", "Ptak82", + "Diablownik", "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/NaN": { - "modified": "2020-03-12T19:37:38.834Z", + "Web/JavaScript/Reference/Global_Objects/String/fontcolor": { + "modified": "2019-03-23T23:47:08.399Z", "contributors": [ "teoli", - "Mgjbot", "Ptak82", - "Takenbot", - "Marcoos" + "Mgjbot" ] }, - "Web/JavaScript/Referencje/Obiekty/Number": { - "modified": "2019-03-23T23:50:26.634Z", + "Web/JavaScript/Reference/Global_Objects/String/fontsize": { + "modified": "2019-03-23T23:47:17.415Z", "contributors": [ - "Piterunihongo", "teoli", - "fscholz", - "Diablownik", - "Chrisraven", - "Mgjbot", "Ptak82", - "Marcoos", - "VooEak" + "Mgjbot" ] }, - "Web/JavaScript/Referencje/Obiekty/Number/EPSILON": { - "modified": "2020-10-15T22:24:18.127Z", + "Web/JavaScript/Reference/Global_Objects/String/fromCharCode": { + "modified": "2019-03-23T23:48:13.561Z", "contributors": [ - "krupinskij" + "tomasz-janicki", + "teoli", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Number/MAX_VALUE": { - "modified": "2019-03-23T23:46:06.341Z", + "Web/JavaScript/Reference/Global_Objects/String/fromCodePoint": { + "modified": "2020-10-15T22:35:16.217Z", "contributors": [ - "teoli", - "Ptak82", - "Mgjbot", - "Marcoos" + "Lukasz257" ] }, - "Web/JavaScript/Referencje/Obiekty/Number/MIN_VALUE": { - "modified": "2019-03-23T23:47:03.042Z", + "Web/JavaScript/Reference/Global_Objects/String": { + "modified": "2020-12-07T03:40:21.998Z", "contributors": [ + "SphinxKnight", + "matipicia", + "wbamberg", "teoli", + "grzegorz", "Ptak82", + "Internauta1024A", "Mgjbot", - "Marcoos" + "JasonSpiro", + "VooEak" ] }, - "Web/JavaScript/Referencje/Obiekty/Number/NEGATIVE_INFINITY": { - "modified": "2019-03-23T23:47:08.730Z", + "Web/JavaScript/Reference/Global_Objects/String/italics": { + "modified": "2019-03-23T23:48:17.339Z", "contributors": [ "teoli", - "Diablownik", "Mgjbot", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Number/NaN": { - "modified": "2019-03-23T23:45:44.372Z", + "Web/JavaScript/Reference/Global_Objects/String/link": { + "modified": "2019-03-23T23:48:15.378Z", "contributors": [ "teoli", "Mgjbot", - "Ptak82", - "Diablownik" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Number/POSITIVE_INFINITY": { - "modified": "2019-03-23T23:47:06.877Z", + "Web/JavaScript/Reference/Global_Objects/String/repeat": { + "modified": "2019-03-23T22:21:59.718Z", "contributors": [ - "teoli", - "Ptak82", - "Diablownik", - "Mgjbot" + "kamce" ] }, - "Web/JavaScript/Referencje/Obiekty/Number/constructor": { - "modified": "2019-01-16T16:01:19.654Z", + "Web/JavaScript/Reference/Global_Objects/String/search": { + "modified": "2019-03-23T23:48:27.010Z", "contributors": [ "teoli", - "Marcoos", "Mgjbot", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Number/isInteger": { - "modified": "2020-10-15T21:56:18.899Z", - "contributors": [ - "PaG", - "morthan" - ] - }, - "Web/JavaScript/Referencje/Obiekty/Number/isNaN": { - "modified": "2020-10-15T22:24:16.707Z", + "Web/JavaScript/Reference/Global_Objects/String/slice": { + "modified": "2019-09-04T05:49:33.261Z", "contributors": [ - "krupinskij" + "huberts", + "teoli", + "Mgjbot", + "Ptak82", + "Diablownik" ] }, - "Web/JavaScript/Referencje/Obiekty/Number/toExponential": { - "modified": "2019-03-23T23:47:01.823Z", + "Web/JavaScript/Reference/Global_Objects/String/small": { + "modified": "2019-03-24T00:07:45.142Z", "contributors": [ "teoli", - "Diablownik", + "Krzysiek6", "Mgjbot", - "Internauta1024A", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Number/toFixed": { - "modified": "2019-03-23T23:24:37.690Z", + "Web/JavaScript/Reference/Global_Objects/String/strike": { + "modified": "2019-03-23T23:48:13.069Z", "contributors": [ "teoli", - "Diablownik", "Mgjbot", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Number/toLocaleString": { - "modified": "2020-10-15T21:57:55.583Z", + "Web/JavaScript/Reference/Global_Objects/String/sub": { + "modified": "2019-03-23T23:48:16.934Z", "contributors": [ - "narghar", - "eLGi" + "teoli", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Number/toPrecision": { - "modified": "2019-03-23T23:46:55.576Z", + "Web/JavaScript/Reference/Global_Objects/String/substr": { + "modified": "2019-03-23T23:59:55.346Z", "contributors": [ + "dzek69", + "KonradKubiec", "teoli", - "Diablownik", + "Julien.stuby", "Mgjbot", - "Ptak82" + "Ptak82", + "Diablownik" ] }, - "Web/JavaScript/Referencje/Obiekty/Number/toString": { - "modified": "2019-03-23T23:49:39.505Z", + "Web/JavaScript/Reference/Global_Objects/String/substring": { + "modified": "2019-03-18T20:35:08.725Z", "contributors": [ + "Rafiki", "teoli", - "Diablownik", "Mgjbot", - "Internauta1024A", + "Nux", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Object": { - "modified": "2019-03-23T23:51:13.882Z", + "Web/JavaScript/Reference/Global_Objects/String/sup": { + "modified": "2019-03-18T21:16:52.805Z", "contributors": [ - "JacobDesight", "teoli", - "fscholz", - "Diablownik", "Ptak82", - "Mgjbot", - "Marcoos" + "Mgjbot" ] }, - "Web/JavaScript/Referencje/Obiekty/Object/assign": { - "modified": "2019-08-15T08:41:27.590Z", + "Web/JavaScript/Reference/Global_Objects/String/toLowerCase": { + "modified": "2019-03-23T23:48:17.530Z", "contributors": [ - "oddehh", - "tkitynski", - "belfz", - "kkowalczuk", - "drzazga", - "JacobDesight" + "teoli", + "Mgjbot", + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Object/constructor": { - "modified": "2019-03-23T23:50:18.166Z", + "Web/JavaScript/Reference/Global_Objects/String/toSource": { + "modified": "2019-03-23T23:45:16.121Z", "contributors": [ "teoli", - "Sheppy", - "Wookieb", - "Marcoos", "Mgjbot", "Ptak82", - "Takenbot" - ] - }, - "Web/JavaScript/Referencje/Obiekty/Object/freeze": { - "modified": "2020-10-15T21:49:25.848Z", - "contributors": [ - "PiosDamian", - "Arkej", - "kdex", - "piecioshka", - "aquz" - ] - }, - "Web/JavaScript/Referencje/Obiekty/Object/getOwnPropertyDescriptor": { - "modified": "2020-10-15T21:51:58.332Z", - "contributors": [ - "fscholz", - "piecioshka", - "andersz-artur", - "mateusz-pietruch" + "Diablownik" ] }, - "Web/JavaScript/Referencje/Obiekty/Object/hasOwnProperty": { - "modified": "2020-10-15T21:37:23.621Z", + "Web/JavaScript/Reference/Global_Objects/String/toString": { + "modified": "2019-03-23T23:48:31.894Z", "contributors": [ - "JB1905", - "kanapka94", - "s1awek", - "dianafa" + "teoli", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Object/proto": { - "modified": "2019-03-23T22:15:34.204Z", + "Web/JavaScript/Reference/Global_Objects/String/toUpperCase": { + "modified": "2019-03-23T23:48:18.924Z", "contributors": [ - "JacobDesight" + "teoli", + "Mgjbot", + "Diablownik", + "Internauta1024A", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Object/prototype": { - "modified": "2019-03-23T23:53:56.350Z", + "Web/JavaScript/Reference/Global_Objects/String/valueOf": { + "modified": "2019-03-23T23:48:27.633Z", "contributors": [ - "macborowy", - "rwa_kulszowa", - "dianafa", "teoli", "Mgjbot", "Ptak82", - "Marcoos" + "Diablownik" ] }, - "Web/JavaScript/Referencje/Obiekty/Object/seal": { - "modified": "2019-03-23T22:50:09.394Z", + "Web/JavaScript/Reference/Global_Objects/Symbol": { + "modified": "2020-10-15T22:02:20.124Z", "contributors": [ - "arturkulig", - "piecioshka", - "MichalZalecki", - "mhadas" + "kjarmicki" ] }, - "Web/JavaScript/Referencje/Obiekty/Object/toLocaleString": { - "modified": "2019-03-23T23:44:51.103Z", + "Web/JavaScript/Reference/Global_Objects/SyntaxError": { + "modified": "2020-10-15T22:30:06.264Z", "contributors": [ - "kwarpechowski", - "teoli", - "Mgjbot", - "Ptak82" + "jangromko" ] }, - "Web/JavaScript/Referencje/Obiekty/Object/toSource": { - "modified": "2019-03-23T23:53:51.317Z", + "Web/JavaScript/Reference/Global_Objects/Uint16Array": { + "modified": "2019-03-23T23:21:49.403Z", "contributors": [ "teoli", - "Mgjbot", - "Ptak82", - "Takenbot", - "Marcoos" + "Kuzirashi" ] }, - "Web/JavaScript/Referencje/Obiekty/Object/toString": { - "modified": "2019-03-23T23:48:38.071Z", + "Web/JavaScript/Reference/Global_Objects/undefined": { + "modified": "2020-03-12T19:37:31.553Z", "contributors": [ + "itsfaint", "teoli", "Mgjbot", "Ptak82", "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Object/valueOf": { - "modified": "2019-03-23T23:50:47.663Z", + "Web/JavaScript/Reference/Operators/Destructuring_assignment": { + "modified": "2020-12-07T05:10:17.259Z", "contributors": [ - "teoli", - "ethertank", - "Mgjbot", - "Internauta1024A", - "Ptak82", - "Takenbot", - "Marcoos" + "LukaszFormela", + "Saalin", + "danielrakoczy", + "kdex", + "grzim" ] }, - "Web/JavaScript/Referencje/Obiekty/Promise": { - "modified": "2020-11-11T08:51:14.847Z", + "Web/JavaScript/Reference/Operators/function*": { + "modified": "2020-10-15T22:17:45.458Z", "contributors": [ - "r2kode", - "mich_cz", - "SkillGG", - "szopenkrk" + "jangromko" + ] + }, + "Web/JavaScript/Reference/Operators/Grouping": { + "modified": "2020-10-15T22:13:17.987Z", + "contributors": [ + "jangromko" ] }, - "Web/JavaScript/Referencje/Obiekty/Proxy": { - "modified": "2020-10-15T22:01:30.452Z", + "Web/JavaScript/Reference/Operators": { + "modified": "2020-03-12T19:36:59.316Z", "contributors": [ - "0ctothorp", - "andrzejkrecicki" + "ewelinakrawczak", + "teoli", + "Mgjbot", + "Ptak82", + "Bedi", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/Proxy/handler": { - "modified": "2020-10-15T22:01:32.237Z", + "Web/JavaScript/Reference/Operators/new.target": { + "modified": "2020-03-12T19:45:06.300Z", "contributors": [ - "andrzejkrecicki" + "ssuperczynski" ] }, - "Web/JavaScript/Referencje/Obiekty/Proxy/handler/apply": { - "modified": "2020-10-15T22:18:47.930Z", + "Web/JavaScript/Reference/Operators/Nullish_coalescing_operator": { + "modified": "2020-10-15T22:31:22.874Z", "contributors": [ - "magmast" + "brightdogs" ] }, - "Web/JavaScript/Referencje/Obiekty/RangeError": { - "modified": "2019-03-23T22:51:19.492Z", + "Web/JavaScript/Reference/Operators/Object_initializer": { + "modified": "2020-03-12T19:44:27.454Z", "contributors": [ - "adam-tokarski" + "mateuszkrzak", + "JacobDesight", + "bouzlibop" ] }, - "Web/JavaScript/Referencje/Obiekty/RangeError/prototype": { - "modified": "2019-03-23T22:51:15.660Z", + "Web/JavaScript/Reference/Operators/delete": { + "modified": "2020-03-12T19:37:39.689Z", "contributors": [ - "adam-tokarski" + "gebi", + "teoli", + "Internauta1024A", + "Mgjbot", + "Ptak82", + "Diablownik" ] }, - "Web/JavaScript/Referencje/Obiekty/RegExp": { - "modified": "2019-03-23T23:59:43.766Z", + "Web/JavaScript/Reference/Operators/function": { + "modified": "2019-03-23T23:48:46.411Z", "contributors": [ - "wbamberg", - "lunesco", - "kisiiel", - "morthan", - "tomash18r", + "Miras", "teoli", - "Nux", - "Mysz", - "Ptak82", "Mgjbot", - "Marcoos", - "VooEak" + "Ptak82", + "Diablownik" ] }, - "Web/JavaScript/Referencje/Obiekty/RegExp/exec": { - "modified": "2019-03-23T23:47:09.516Z", + "Web/JavaScript/Reference/Operators/in": { + "modified": "2019-03-23T23:45:55.097Z", "contributors": [ - "kowal.alek", "teoli", - "Ptak82", "Mgjbot", - "Bedi" + "Ptak82", + "Diablownik" ] }, - "Web/JavaScript/Referencje/Obiekty/RegExp/global": { - "modified": "2019-03-23T23:47:12.777Z", + "Web/JavaScript/Reference/Operators/instanceof": { + "modified": "2020-10-15T21:16:54.657Z", "contributors": [ + "PawelPapuli", + "SphinxKnight", + "mmiarecki", "teoli", - "Diablownik", - "Internauta1024A", "Mgjbot", - "Ptak82" + "Ipluta", + "Ptak82", + "Internauta1024A" ] }, - "Web/JavaScript/Referencje/Obiekty/RegExp/ignoreCase": { - "modified": "2019-03-23T23:47:14.670Z", + "Web/JavaScript/Reference/Operators/new": { + "modified": "2020-10-26T06:11:51.853Z", "contributors": [ + "szymonb", + "michal100032", + "SphinxKnight", "teoli", - "Diablownik", - "Internauta1024A", + "splewako", "Mgjbot", + "Diablownik", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/RegExp/lastMatch": { - "modified": "2020-10-15T22:02:47.225Z", + "Web/JavaScript/Reference/Operators/Pipeline_operator": { + "modified": "2020-10-15T22:08:04.976Z", "contributors": [ - "xShadow" + "jangromko" ] }, - "Web/JavaScript/Referencje/Obiekty/RegExp/prototype": { - "modified": "2019-03-23T23:44:47.433Z", + "Web/JavaScript/Reference/Operators/Comma_Operator": { + "modified": "2020-08-18T11:17:02.737Z", "contributors": [ + "CodyKobe", "teoli", "Mgjbot", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/RegExp/source": { - "modified": "2019-03-23T23:44:52.062Z", + "Web/JavaScript/Reference/Operators/typeof": { + "modified": "2019-03-23T23:48:37.240Z", "contributors": [ + "9739654", + "Moniaesz", + "Maciej_Grycz", "teoli", "Mgjbot", - "Ptak82" + "Ptak82", + "Sheppy" ] }, - "Web/JavaScript/Referencje/Obiekty/RegExp/test": { - "modified": "2019-03-23T23:47:41.762Z", + "Web/JavaScript/Reference/Operators/void": { + "modified": "2019-03-23T23:48:45.984Z", "contributors": [ + "jamOne-", "teoli", - "Chrisraven", + "Mgjbot", "Ptak82", - "Nux", - "Mgjbot" + "Diablownik" ] }, - "Web/JavaScript/Referencje/Obiekty/RegExp/toSource": { - "modified": "2019-03-23T23:47:09.941Z", + "Web/JavaScript/Reference/Operators/Conditional_Operator": { + "modified": "2020-03-12T19:36:21.149Z", "contributors": [ "teoli", - "Ptak82", - "Mgjbot" + "bronek", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/RegExp/toString": { - "modified": "2019-03-23T23:47:08.946Z", + "Web/JavaScript/Reference/Operators/Property_Accessors": { + "modified": "2020-03-12T19:36:58.666Z", + "contributors": [ + "JacobDesight", + "teoli", + "ethertank", + "zarat", + "Mgjbot", + "Abc", + "Internauta1024A", + "Ptak82" + ] + }, + "Web/JavaScript/Reference/Operators/Operator_Precedence": { + "modified": "2020-07-11T12:40:07.488Z", "contributors": [ + "Emploxard", + "jangromko", "teoli", + "Mgjbot", "Ptak82", - "Mgjbot" + "Internauta1024A" ] }, - "Web/JavaScript/Referencje/Obiekty/Set": { - "modified": "2019-03-23T22:07:58.875Z", + "Web/JavaScript/Reference/Operators/Spread_syntax": { + "modified": "2020-10-15T22:13:18.819Z", "contributors": [ - "PiosDamian", - "klusaktomasz" + "jangromko" ] }, - "Web/JavaScript/Referencje/Obiekty/Set/Set.prototype.add()": { - "modified": "2019-03-23T22:07:51.409Z", + "Web/JavaScript/Reference/Operators/super": { + "modified": "2020-10-15T22:29:09.089Z", "contributors": [ - "klusaktomasz" + "michalmarchewczyk", + "jabedek" ] }, - "Web/JavaScript/Referencje/Obiekty/Set/Set.prototype.clear()": { - "modified": "2019-03-23T22:08:01.977Z", + "Web/JavaScript/Reference/Operators/this": { + "modified": "2020-03-12T19:40:39.396Z", "contributors": [ - "klusaktomasz" + "Majek", + "koczas" ] }, - "Web/JavaScript/Referencje/Obiekty/Set/Set.prototype.delete()": { - "modified": "2020-10-15T21:56:04.971Z", + "Web/JavaScript/Reference/Operators/yield*": { + "modified": "2020-03-12T19:45:54.936Z", "contributors": [ - "trusohamn", - "klusaktomasz" + "108adams", + "labs4apps" ] }, - "Web/JavaScript/Referencje/Obiekty/String": { - "modified": "2020-12-07T03:40:21.998Z", + "Web/JavaScript/Reference/Operators/yield": { + "modified": "2020-03-12T19:45:57.099Z", "contributors": [ - "SphinxKnight", - "matipicia", - "wbamberg", - "teoli", - "grzegorz", - "Ptak82", - "Internauta1024A", - "Mgjbot", - "JasonSpiro", - "VooEak" + "labs4apps" ] }, - "Web/JavaScript/Referencje/Obiekty/String/anchor": { - "modified": "2019-03-23T23:48:21.565Z", + "Web/JavaScript/Reference/Statements/block": { + "modified": "2020-10-15T21:16:48.113Z", "contributors": [ + "pawelk92", "teoli", "Mgjbot", - "Diablownik", - "Ptak82" + "Ptak82", + "Diablownik" ] }, - "Web/JavaScript/Referencje/Obiekty/String/big": { - "modified": "2019-03-23T23:48:11.354Z", + "Web/JavaScript/Reference/Statements/break": { + "modified": "2019-01-16T15:52:46.901Z", "contributors": [ "teoli", "Mgjbot", "Ptak82", - "Internauta1024A" + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/String/blink": { - "modified": "2019-03-23T23:48:18.653Z", + "Web/JavaScript/Reference/Statements/class": { + "modified": "2020-10-15T22:23:12.456Z", + "contributors": [ + "jangromko" + ] + }, + "Web/JavaScript/Reference/Statements/const": { + "modified": "2019-01-16T15:50:46.419Z", "contributors": [ "teoli", + "Internauta1024A", "Mgjbot", - "Ptak82" + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/String/bold": { - "modified": "2019-03-23T23:48:19.144Z", + "Web/JavaScript/Reference/Statements/continue": { + "modified": "2020-10-15T22:21:31.132Z", + "contributors": [ + "Xupi", + "JB1905", + "jangromko" + ] + }, + "Web/JavaScript/Reference/Statements/debugger": { + "modified": "2020-03-12T19:46:20.726Z", + "contributors": [ + "antoni" + ] + }, + "Web/JavaScript/Reference/Statements/do...while": { + "modified": "2019-01-16T15:52:54.601Z", "contributors": [ "teoli", "Mgjbot", - "Ptak82" + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/String/charAt": { - "modified": "2019-03-23T23:48:20.523Z", + "Web/JavaScript/Reference/Statements/Empty": { + "modified": "2020-10-15T22:33:29.682Z", + "contributors": [ + "jangromko" + ] + }, + "Web/JavaScript/Reference/Statements/label": { + "modified": "2019-01-16T15:52:24.751Z", "contributors": [ "teoli", "Mgjbot", "Ptak82", - "Diablownik" + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/String/charCodeAt": { - "modified": "2019-03-23T23:48:21.451Z", + "Web/JavaScript/Reference/Statements/export": { + "modified": "2019-01-16T15:46:36.049Z", "contributors": [ "teoli", "Mgjbot", + "Diablownik", "Ptak82", - "Diablownik" + "Internauta1024A" ] }, - "Web/JavaScript/Referencje/Obiekty/String/concat": { - "modified": "2019-05-14T05:09:36.210Z", + "Web/JavaScript/Reference/Statements/for...in": { + "modified": "2020-10-15T22:24:07.320Z", + "contributors": [ + "whpac", + "jangromko" + ] + }, + "Web/JavaScript/Reference/Statements/for": { + "modified": "2019-01-16T15:52:32.477Z", "contributors": [ "teoli", "Mgjbot", "Ptak82", "Diablownik", - "Marcoos" + "Kjj2" ] }, - "Web/JavaScript/Referencje/Obiekty/String/fontcolor": { - "modified": "2019-03-23T23:47:08.399Z", + "Web/JavaScript/Reference/Statements/function*": { + "modified": "2020-03-12T19:45:57.895Z", "contributors": [ - "teoli", - "Ptak82", - "Mgjbot" + "AndrzejSala", + "labs4apps" ] }, - "Web/JavaScript/Referencje/Obiekty/String/fontsize": { - "modified": "2019-03-23T23:47:17.415Z", + "Web/JavaScript/Reference/Statements/function": { + "modified": "2019-01-16T15:52:26.032Z", "contributors": [ "teoli", + "Mgjbot", "Ptak82", - "Mgjbot" + "Diablownik" ] }, - "Web/JavaScript/Referencje/Obiekty/String/fromCharCode": { - "modified": "2019-03-23T23:48:13.561Z", + "Web/JavaScript/Reference/Statements/async_function": { + "modified": "2020-10-15T22:24:48.218Z", "contributors": [ - "tomasz-janicki", - "teoli", - "Mgjbot", - "Ptak82" + "drm404" ] }, - "Web/JavaScript/Referencje/Obiekty/String/fromCodePoint": { - "modified": "2020-10-15T22:35:16.217Z", + "Web/JavaScript/Reference/Statements/if...else": { + "modified": "2019-01-16T15:55:18.475Z", "contributors": [ - "Lukasz257" + "teoli", + "Mgjbot", + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/String/italics": { - "modified": "2019-03-23T23:48:17.339Z", + "Web/JavaScript/Reference/Statements/import": { + "modified": "2019-01-16T15:46:37.420Z", "contributors": [ "teoli", "Mgjbot", - "Ptak82" + "Diablownik", + "Ptak82", + "Internauta1024A" ] }, - "Web/JavaScript/Referencje/Obiekty/String/link": { - "modified": "2019-03-23T23:48:15.378Z", + "Web/JavaScript/Reference/Statements": { + "modified": "2020-10-15T21:14:48.479Z", "contributors": [ + "SphinxKnight", "teoli", + "splewako", + "Gompka", "Mgjbot", - "Ptak82" + "Ptak82", + "Diablownik", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/String/prototype": { - "modified": "2019-03-18T20:37:36.182Z", + "Web/JavaScript/Reference/Statements/return": { + "modified": "2019-01-16T15:53:40.686Z", "contributors": [ - "ktxc", "teoli", "Mgjbot", - "Ptak82" + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/String/repeat": { - "modified": "2019-03-23T22:21:59.718Z", + "Web/JavaScript/Reference/Statements/switch": { + "modified": "2020-10-15T21:17:02.196Z", "contributors": [ - "kamce" + "1MrHous1", + "SphinxKnight", + "teoli", + "Rokuzo", + "Mgjbot", + "Ptak82", + "Diablownik" ] }, - "Web/JavaScript/Referencje/Obiekty/String/search": { - "modified": "2019-03-23T23:48:27.010Z", + "Web/JavaScript/Reference/Statements/throw": { + "modified": "2020-10-15T21:16:56.629Z", "contributors": [ + "SphinxKnight", "teoli", + "Rokuzo", "Mgjbot", - "Ptak82" + "Ptak82", + "Diablownik" ] }, - "Web/JavaScript/Referencje/Obiekty/String/slice": { - "modified": "2019-09-04T05:49:33.261Z", + "Web/JavaScript/Reference/Statements/var": { + "modified": "2019-01-16T15:49:48.835Z", "contributors": [ - "huberts", "teoli", "Mgjbot", "Ptak82", "Diablownik" ] }, - "Web/JavaScript/Referencje/Obiekty/String/small": { - "modified": "2019-03-24T00:07:45.142Z", + "Web/JavaScript/Reference/Statements/while": { + "modified": "2019-03-23T23:49:29.695Z", "contributors": [ "teoli", - "Krzysiek6", "Mgjbot", - "Ptak82" + "Ptak82", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/String/strike": { - "modified": "2019-03-23T23:48:13.069Z", + "Web/JavaScript/Reference/Deprecated_and_obsolete_features": { + "modified": "2020-03-12T19:37:30.978Z", "contributors": [ + "SphinxKnight", "teoli", + "Bedi", "Mgjbot", - "Ptak82" + "Diablownik", + "Ptak82", + "Koziolek", + "Marcoos" ] }, - "Web/JavaScript/Referencje/Obiekty/String/sub": { - "modified": "2019-03-23T23:48:16.934Z", + "Web/JavaScript/Data_structures": { + "modified": "2020-06-14T13:44:23.074Z", "contributors": [ - "teoli", - "Mgjbot", - "Ptak82" + "AvantaR" ] }, - "Web/JavaScript/Referencje/Obiekty/String/substr": { - "modified": "2019-03-23T23:59:55.346Z", + "Web/JavaScript/Language_Resources": { + "modified": "2019-01-16T16:04:32.529Z", "contributors": [ - "dzek69", - "KonradKubiec", "teoli", - "Julien.stuby", - "Mgjbot", + "Diablownik", "Ptak82", - "Diablownik" + "Mgjbot" ] }, - "Web/JavaScript/Referencje/Obiekty/String/substring": { - "modified": "2019-03-18T20:35:08.725Z", + "Learn/Server-side/Configuring_server_MIME_types": { + "modified": "2020-07-16T22:36:04.529Z", "contributors": [ - "Rafiki", - "teoli", - "Mgjbot", - "Nux", - "Ptak82" + "drm404" ] }, - "Web/JavaScript/Referencje/Obiekty/String/sup": { - "modified": "2019-03-18T21:16:52.805Z", + "Web/SVG/Element/circle": { + "modified": "2020-10-15T22:12:21.905Z", + "contributors": [ + "webcarrot", + "SphinxKnight", + "Rafal76" + ] + }, + "Web/SVG/Other_Resources": { + "modified": "2019-01-16T15:45:05.453Z", "contributors": [ "teoli", "Ptak82", - "Mgjbot" + "Sullei", + "gandalf" ] }, - "Web/JavaScript/Referencje/Obiekty/String/toLowerCase": { - "modified": "2019-03-23T23:48:17.530Z", + "Web/SVG/Tutorial": { + "modified": "2019-03-20T10:58:52.573Z", "contributors": [ + "pan-rzeznik", "teoli", - "Mgjbot", - "Diablownik", - "Ptak82" + "Bedi" ] }, - "Web/JavaScript/Referencje/Obiekty/String/toSource": { - "modified": "2019-03-23T23:45:16.121Z", + "Web/SVG/Tutorial/SVG_In_HTML_Introduction": { + "modified": "2019-01-16T16:17:00.898Z", "contributors": [ - "teoli", + "chrisdavidmills", + "Ptak82", + "gandalf", + "Takenbot", + "Dria", + "Marcoos" + ] + }, + "Web/XML/XML_introduction": { + "modified": "2019-05-01T21:53:56.163Z", + "contributors": [ + "ExE-Boss", "Mgjbot", + "Bedi", + "Iorlef", "Ptak82", - "Diablownik" + "Marcoos", + "Takenbot", + "Gjaryczewski", + "Anonymous" ] }, - "Web/JavaScript/Referencje/Obiekty/String/toString": { - "modified": "2019-03-23T23:48:31.894Z", + "Web/XPath/Functions/boolean": { + "modified": "2019-01-16T15:50:21.080Z", "contributors": [ - "teoli", + "ExE-Boss", "Mgjbot", + "Diablownik", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/String/toUpperCase": { - "modified": "2019-03-23T23:48:18.924Z", + "Web/XPath/Functions/ceiling": { + "modified": "2019-01-16T15:50:29.009Z", "contributors": [ - "teoli", + "ExE-Boss", "Mgjbot", "Diablownik", - "Internauta1024A", "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/String/valueOf": { - "modified": "2019-03-23T23:48:27.633Z", + "Web/XPath/Functions/concat": { + "modified": "2019-01-16T15:50:21.356Z", "contributors": [ - "teoli", + "ExE-Boss", "Mgjbot", - "Ptak82", - "Diablownik" + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Symbol": { - "modified": "2020-10-15T22:02:20.124Z", + "Web/XPath/Functions/contains": { + "modified": "2019-01-16T15:50:22.632Z", "contributors": [ - "kjarmicki" + "ExE-Boss", + "Mgjbot", + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/SyntaxError": { - "modified": "2020-10-15T22:30:06.264Z", + "Web/XPath/Functions/count": { + "modified": "2019-01-16T15:50:18.931Z", "contributors": [ - "jangromko" + "ExE-Boss", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/Uint16Array": { - "modified": "2019-03-23T23:21:49.403Z", + "Web/XPath/Functions/current": { + "modified": "2019-01-16T15:54:07.231Z", "contributors": [ - "teoli", - "Kuzirashi" + "ExE-Boss", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/decodeURI": { - "modified": "2020-03-12T19:37:41.064Z", + "Web/XPath/Functions/document": { + "modified": "2019-01-16T15:54:08.509Z", "contributors": [ - "teoli", - "Mgjbot", + "ExE-Boss", "Diablownik", - "Internauta1024A", - "Ptak82", - "VooEak" + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/decodeURIComponent": { - "modified": "2020-03-12T19:37:32.361Z", + "Web/XPath/Functions/element-available": { + "modified": "2019-01-16T15:54:24.632Z", "contributors": [ - "teoli", + "ExE-Boss", + "Diablownik", + "KRZ", "Mgjbot", - "Ptak82", - "VooEak" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/encodeURI": { - "modified": "2020-03-12T19:37:30.589Z", + "Web/XPath/Functions/false": { + "modified": "2019-01-16T15:50:11.644Z", "contributors": [ - "teoli", + "ExE-Boss", "Mgjbot", - "Quest-88", - "Ptak82", - "VooEak" + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/encodeURIComponent": { - "modified": "2020-03-12T19:37:35.220Z", + "Web/XPath/Functions/floor": { + "modified": "2019-01-16T15:50:15.420Z", "contributors": [ - "teoli", + "ExE-Boss", "Mgjbot", - "Quest-88", - "Ptak82", - "VooEak" + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/escape": { - "modified": "2020-03-12T19:43:04.815Z", + "Web/XPath/Functions/format-number": { + "modified": "2019-01-16T15:54:05.462Z", "contributors": [ - "kamce" + "ExE-Boss", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/isFinite": { - "modified": "2020-03-12T19:37:33.636Z", + "Web/XPath/Functions/function-available": { + "modified": "2019-01-16T15:54:33.591Z", "contributors": [ - "teoli", - "Mgjbot", + "ExE-Boss", "Diablownik", - "Internauta1024A", - "Marcoos", - "Ptak82", - "VooEak" + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/isNaN": { - "modified": "2020-03-12T19:37:31.060Z", + "Web/XPath/Functions/generate-id": { + "modified": "2019-01-16T15:54:20.993Z", "contributors": [ - "teoli", + "ExE-Boss", + "Diablownik", "Mgjbot", - "Marcoos", - "Sheppy", - "Ptak82", - "Internauta1024A", - "Takenbot" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/null": { - "modified": "2020-03-12T19:45:50.208Z", + "Web/XPath/Functions/id": { + "modified": "2019-01-16T15:50:05.440Z", "contributors": [ - "JacobDesight" + "ExE-Boss", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/parseFloat": { - "modified": "2020-03-12T19:37:26.647Z", + "Web/XPath/Functions": { + "modified": "2019-03-23T23:54:13.300Z", "contributors": [ + "ExE-Boss", "teoli", "Mgjbot", - "Internauta1024A", - "Marcoos", - "Staszyna", - "Sheppy", - "Ptak82", - "VooEak" + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/parseInt": { - "modified": "2020-03-12T19:37:29.845Z", + "Web/XPath/Functions/key": { + "modified": "2019-01-16T15:54:07.018Z", "contributors": [ - "teoli", + "ExE-Boss", + "Diablownik", "Mgjbot", - "Marcoos", - "Ptak82", - "VooEak" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Obiekty/undefined": { - "modified": "2020-03-12T19:37:31.553Z", + "Web/XPath/Functions/lang": { + "modified": "2019-01-16T15:50:00.856Z", "contributors": [ - "itsfaint", - "teoli", + "ExE-Boss", "Mgjbot", + "Diablownik", "Ptak82", - "Marcoos" + "Bedi" ] }, - "Web/JavaScript/Referencje/Operatory": { - "modified": "2020-03-12T19:36:59.316Z", - "contributors": [ - "ewelinakrawczak", - "teoli", + "Web/XPath/Functions/last": { + "modified": "2019-01-16T15:50:13.769Z", + "contributors": [ + "ExE-Boss", "Mgjbot", "Ptak82", - "Bedi", - "Marcoos" + "Diablownik" ] }, - "Web/JavaScript/Referencje/Operatory/Bitwise_Operators": { - "modified": "2020-10-15T22:25:46.843Z", + "Web/XPath/Functions/local-name": { + "modified": "2019-01-16T15:50:08.618Z", "contributors": [ - "jangromko" + "ExE-Boss", + "Mgjbot", + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/Destructuring_assignment": { - "modified": "2020-12-07T05:10:17.259Z", + "Web/XPath/Functions/name": { + "modified": "2019-01-16T15:50:11.434Z", "contributors": [ - "LukaszFormela", - "Saalin", - "danielrakoczy", - "kdex", - "grzim" + "ExE-Boss", + "Mgjbot", + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/Grouping": { - "modified": "2020-10-15T22:13:17.987Z", + "Web/XPath/Functions/namespace-uri": { + "modified": "2019-01-16T15:50:11.817Z", "contributors": [ - "jangromko" + "ExE-Boss", + "Mgjbot", + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/Logical_Operators": { - "modified": "2020-10-15T22:08:04.815Z", + "Web/XPath/Functions/normalize-space": { + "modified": "2019-01-16T15:50:17.331Z", "contributors": [ - "jangromko" + "ExE-Boss", + "Mgjbot", + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/Nullish_coalescing_operator": { - "modified": "2020-10-15T22:31:22.874Z", + "Web/XPath/Functions/not": { + "modified": "2019-01-16T15:50:09.345Z", "contributors": [ - "brightdogs" + "ExE-Boss", + "Mgjbot", + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/Object_initializer": { - "modified": "2020-03-12T19:44:27.454Z", + "Web/XPath/Functions/number": { + "modified": "2019-01-16T15:49:59.758Z", "contributors": [ - "mateuszkrzak", - "JacobDesight", - "bouzlibop" + "ExE-Boss", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/Operator_delete": { - "modified": "2020-03-12T19:37:39.689Z", + "Web/XPath/Functions/position": { + "modified": "2020-12-13T04:53:06.789Z", "contributors": [ - "gebi", - "teoli", - "Internauta1024A", + "JWPB", + "ExE-Boss", "Mgjbot", "Ptak82", - "Diablownik" + "Diablownik", + "Bedi" ] }, - "Web/JavaScript/Referencje/Operatory/Operator_function": { - "modified": "2019-03-23T23:48:46.411Z", + "Web/XPath/Functions/round": { + "modified": "2019-01-16T15:50:04.322Z", "contributors": [ - "Miras", - "teoli", + "ExE-Boss", "Mgjbot", "Ptak82", "Diablownik" ] }, - "Web/JavaScript/Referencje/Operatory/Operator_in": { - "modified": "2019-03-23T23:45:55.097Z", + "Web/XPath/Functions/starts-with": { + "modified": "2019-01-16T15:50:02.374Z", "contributors": [ - "teoli", + "ExE-Boss", "Mgjbot", - "Ptak82", - "Diablownik" + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/Operator_instanceof": { - "modified": "2020-10-15T21:16:54.657Z", + "Web/XPath/Functions/string-length": { + "modified": "2019-01-16T15:50:11.197Z", "contributors": [ - "PawelPapuli", - "SphinxKnight", - "mmiarecki", - "teoli", + "ExE-Boss", "Mgjbot", - "Ipluta", - "Ptak82", - "Internauta1024A" + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/Operator_new": { - "modified": "2020-10-26T06:11:51.853Z", + "Web/XPath/Functions/string": { + "modified": "2019-01-16T15:50:13.315Z", "contributors": [ - "szymonb", - "michal100032", - "SphinxKnight", - "teoli", - "splewako", + "ExE-Boss", "Mgjbot", "Diablownik", "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/Operator_potoku": { - "modified": "2020-10-15T22:08:04.976Z", + "Web/XPath/Functions/substring-after": { + "modified": "2019-01-16T15:50:08.478Z", "contributors": [ - "jangromko" + "ExE-Boss", + "Mgjbot", + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/Operator_przecinkowy": { - "modified": "2020-08-18T11:17:02.737Z", + "Web/XPath/Functions/substring-before": { + "modified": "2019-01-16T15:50:03.131Z", "contributors": [ - "CodyKobe", - "teoli", + "ExE-Boss", "Mgjbot", + "Diablownik", "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/Operator_typeof": { - "modified": "2019-03-23T23:48:37.240Z", + "Web/XPath/Functions/substring": { + "modified": "2019-01-16T15:50:11.854Z", "contributors": [ - "9739654", - "Moniaesz", - "Maciej_Grycz", - "teoli", + "ExE-Boss", "Mgjbot", - "Ptak82", - "Sheppy" + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/Operator_void": { - "modified": "2019-03-23T23:48:45.984Z", + "Web/XPath/Functions/sum": { + "modified": "2019-01-16T15:50:11.203Z", "contributors": [ - "jamOne-", - "teoli", + "ExE-Boss", "Mgjbot", - "Ptak82", - "Diablownik" + "Diablownik", + "Bedi", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/Operator_warunkowy": { - "modified": "2020-03-12T19:36:21.149Z", + "Web/XPath/Functions/system-property": { + "modified": "2019-01-16T15:54:07.335Z", "contributors": [ - "teoli", - "bronek", + "ExE-Boss", + "Diablownik", "Mgjbot", "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/Operatory_arytmetyczne": { - "modified": "2020-03-12T19:36:55.090Z", + "Web/XPath/Functions/translate": { + "modified": "2019-03-23T23:49:24.212Z", "contributors": [ - "AndrzejSala", - "teoli", - "Niewiado", - "Ptak82", - "Kc604", + "ExE-Boss", + "AndrewPopenko", "Mgjbot", - "Internauta1024A" + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/Operatory_działające_na_ciągach_znaków": { - "modified": "2019-01-16T19:21:07.446Z", + "Web/XPath/Functions/true": { + "modified": "2019-01-16T15:50:14.395Z", "contributors": [ - "teoli", + "ExE-Boss", "Mgjbot", - "Ptak82", - "Anonymous", - "Marcoos" + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/Operatory_pamięci": { - "modified": "2020-03-12T19:36:58.666Z", + "Web/XPath/Functions/unparsed-entity-url": { + "modified": "2019-01-16T15:54:07.524Z", "contributors": [ - "JacobDesight", - "teoli", - "ethertank", - "zarat", + "ExE-Boss", + "Diablownik", "Mgjbot", - "Abc", - "Internauta1024A", "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/Operatory_porównania": { - "modified": "2020-03-12T19:37:40.853Z", + "Web/XPath/Axes": { + "modified": "2019-01-16T15:28:45.164Z", "contributors": [ - "marcinpgit", - "teoli", - "Ptak82", - "Internauta1024A", - "Mgjbot" + "ExE-Boss", + "Mgjbot", + "Diablownik", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/Operatory_przypisania": { - "modified": "2020-03-12T19:37:41.089Z", + "Web/XSLT/Element/apply-imports": { + "modified": "2019-01-16T16:04:10.129Z", "contributors": [ - "teoli", + "chrisdavidmills", + "Diablownik", "Mgjbot", - "Ptak82", - "Marcoos" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/Pierwszeństwo_operatorów": { - "modified": "2020-07-11T12:40:07.488Z", + "Web/XSLT/Element/apply-templates": { + "modified": "2019-01-16T15:56:15.770Z", "contributors": [ - "Emploxard", - "jangromko", - "teoli", + "chrisdavidmills", + "Diablownik", "Mgjbot", - "Ptak82", - "Internauta1024A" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/Składnia_rozwinięcia": { - "modified": "2020-10-15T22:13:18.819Z", + "Web/XSLT/Element/attribute-set": { + "modified": "2019-01-16T16:04:06.202Z", "contributors": [ - "jangromko" + "chrisdavidmills", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/Spread_operator": { - "modified": "2020-03-12T19:44:36.805Z", + "Web/XSLT/Element/attribute": { + "modified": "2019-01-16T16:04:08.328Z", "contributors": [ - "Konrad007", - "greg606", - "artus9033", - "kdex", - "kamce", - "grzim" + "chrisdavidmills", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/function*": { - "modified": "2020-10-15T22:17:45.458Z", + "Web/XSLT/Element/call-template": { + "modified": "2019-01-16T16:04:02.137Z", "contributors": [ - "jangromko" + "chrisdavidmills", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/new.target": { - "modified": "2020-03-12T19:45:06.300Z", + "Web/XSLT/Element/choose": { + "modified": "2019-01-16T15:43:24.557Z", "contributors": [ - "ssuperczynski" + "chrisdavidmills", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/super": { - "modified": "2020-10-15T22:29:09.089Z", + "Web/XSLT/Element/comment": { + "modified": "2019-01-16T16:04:07.126Z", "contributors": [ - "michalmarchewczyk", - "jabedek" + "chrisdavidmills", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/this": { - "modified": "2020-03-12T19:40:39.396Z", + "Web/XSLT/Element/copy-of": { + "modified": "2019-01-16T15:56:06.624Z", "contributors": [ - "Majek", - "koczas" + "chrisdavidmills", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/yield": { - "modified": "2020-03-12T19:45:57.099Z", + "Web/XSLT/Element/copy": { + "modified": "2019-01-16T16:04:06.489Z", "contributors": [ - "labs4apps" + "chrisdavidmills", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Operatory/yield*": { - "modified": "2020-03-12T19:45:54.936Z", + "Web/XSLT/Element/decimal-format": { + "modified": "2019-01-16T16:04:06.645Z", "contributors": [ - "108adams", - "labs4apps" + "chrisdavidmills", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Polecenia": { - "modified": "2020-10-15T21:14:48.479Z", + "Web/XSLT/Element/fallback": { + "modified": "2019-01-16T16:04:02.164Z", "contributors": [ - "SphinxKnight", - "teoli", - "splewako", - "Gompka", - "Mgjbot", - "Ptak82", + "chrisdavidmills", "Diablownik", - "Marcoos" + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Polecenia/Empty": { - "modified": "2020-10-15T22:33:29.682Z", + "Web/XSLT/Element/for-each": { + "modified": "2019-01-16T16:03:48.737Z", "contributors": [ - "jangromko" + "chrisdavidmills", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Polecenia/block": { - "modified": "2020-10-15T21:16:48.113Z", + "Web/XSLT/Element/if": { + "modified": "2019-03-23T23:46:04.423Z", "contributors": [ - "pawelk92", - "teoli", + "chrisdavidmills", + "Diablownik", "Mgjbot", - "Ptak82", - "Diablownik" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Polecenia/break": { - "modified": "2019-01-16T15:52:46.901Z", + "Web/XSLT/Element/import": { + "modified": "2019-01-16T16:04:02.775Z", "contributors": [ - "teoli", + "chrisdavidmills", + "Diablownik", "Mgjbot", - "Ptak82", - "Marcoos" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Polecenia/class": { - "modified": "2020-10-15T22:23:12.456Z", + "Web/XSLT/Element/include": { + "modified": "2019-01-16T16:04:00.167Z", "contributors": [ - "jangromko" + "chrisdavidmills", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Polecenia/const": { - "modified": "2019-01-16T15:50:46.419Z", + "Web/XSLT/Element/key": { + "modified": "2019-01-16T16:04:00.126Z", "contributors": [ - "teoli", - "Internauta1024A", + "chrisdavidmills", + "Diablownik", "Mgjbot", "Ptak82", - "Marcoos" + "Bedi" ] }, - "Web/JavaScript/Referencje/Polecenia/continue": { - "modified": "2020-10-15T22:21:31.132Z", + "Web/XSLT/Element/message": { + "modified": "2019-01-16T15:55:54.853Z", "contributors": [ - "Xupi", - "JB1905", - "jangromko" + "chrisdavidmills", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Polecenia/debugger": { - "modified": "2020-03-12T19:46:20.726Z", + "Web/XSLT/Element/namespace-alias": { + "modified": "2019-01-16T16:03:46.013Z", "contributors": [ - "antoni" + "chrisdavidmills", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Polecenia/default": { - "modified": "2020-10-15T22:19:18.627Z", + "Web/XSLT/Element/number": { + "modified": "2019-03-23T23:47:56.436Z", "contributors": [ - "jangromko" + "chrisdavidmills", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Polecenia/do...while": { - "modified": "2019-01-16T15:52:54.601Z", + "Web/XSLT/Element/otherwise": { + "modified": "2019-01-16T16:04:00.381Z", "contributors": [ - "teoli", + "chrisdavidmills", + "Diablownik", "Mgjbot", - "Ptak82", - "Marcoos" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Polecenia/etykieta": { - "modified": "2019-01-16T15:52:24.751Z", + "Web/XSLT/Element/output": { + "modified": "2019-01-16T16:04:00.215Z", "contributors": [ - "teoli", + "chrisdavidmills", + "Diablownik", "Mgjbot", "Ptak82", - "Marcoos" + "Bedi", + "Michal borek pl" ] }, - "Web/JavaScript/Referencje/Polecenia/export": { - "modified": "2019-01-16T15:46:36.049Z", + "Web/XSLT/Element/param": { + "modified": "2019-01-16T16:04:00.223Z", "contributors": [ - "teoli", - "Mgjbot", + "chrisdavidmills", "Diablownik", - "Ptak82", - "Internauta1024A" + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Polecenia/for": { - "modified": "2019-01-16T15:52:32.477Z", + "Web/XSLT/Element/preserve-space": { + "modified": "2019-01-16T16:04:00.228Z", "contributors": [ - "teoli", - "Mgjbot", - "Ptak82", + "chrisdavidmills", "Diablownik", - "Kjj2" + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Polecenia/for...in": { - "modified": "2020-10-15T22:24:07.320Z", + "Web/XSLT/Element/processing-instruction": { + "modified": "2019-01-16T16:04:00.064Z", "contributors": [ - "whpac", - "jangromko" + "chrisdavidmills", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Polecenia/function": { - "modified": "2019-01-16T15:52:26.032Z", + "Web/XSLT/Element/sort": { + "modified": "2019-01-16T16:02:15.902Z", "contributors": [ - "teoli", + "chrisdavidmills", + "Diablownik", "Mgjbot", - "Ptak82", - "Diablownik" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Polecenia/function*": { - "modified": "2020-03-12T19:45:57.895Z", + "Web/XSLT/Element/strip-space": { + "modified": "2019-01-16T16:04:00.187Z", "contributors": [ - "AndrzejSala", - "labs4apps" + "chrisdavidmills", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Polecenia/funkcja_async": { - "modified": "2020-10-15T22:24:48.218Z", + "Web/XSLT/Element/stylesheet": { + "modified": "2019-01-16T14:50:04.672Z", "contributors": [ - "drm404" + "chrisdavidmills", + "Filemon", + "Diablownik", + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Polecenia/if...else": { - "modified": "2019-01-16T15:55:18.475Z", + "Web/XSLT/Element/template": { + "modified": "2019-01-16T15:56:09.826Z", "contributors": [ - "teoli", + "chrisdavidmills", + "Diablownik", "Mgjbot", "Ptak82", - "Marcoos" + "Michal borek pl" ] }, - "Web/JavaScript/Referencje/Polecenia/import": { - "modified": "2019-01-16T15:46:37.420Z", + "Web/XSLT/Element/text": { + "modified": "2019-03-23T23:45:58.964Z", "contributors": [ - "teoli", + "chrisdavidmills", + "Diablownik", "Mgjbot", + "Ptak82" + ] + }, + "Web/XSLT/Element/transform": { + "modified": "2019-01-16T15:56:10.001Z", + "contributors": [ + "chrisdavidmills", "Diablownik", - "Ptak82", - "Internauta1024A" + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Polecenia/return": { - "modified": "2019-01-16T15:53:40.686Z", + "Web/XSLT/Transforming_XML_with_XSLT/The_Netscape_XSLT_XPath_Reference": { + "modified": "2019-01-16T16:12:39.198Z", "contributors": [ - "teoli", + "chrisdavidmills", "Mgjbot", - "Ptak82", - "Marcoos" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Polecenia/switch": { - "modified": "2020-10-15T21:17:02.196Z", + "Web/XSLT/Transforming_XML_with_XSLT": { + "modified": "2019-03-23T23:43:19.830Z", "contributors": [ - "1MrHous1", "SphinxKnight", - "teoli", - "Rokuzo", + "chrisdavidmills", "Mgjbot", - "Ptak82", - "Diablownik" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Polecenia/throw": { - "modified": "2020-10-15T21:16:56.629Z", + "Web/XSLT/Transforming_XML_with_XSLT/For_Further_Reading": { + "modified": "2019-03-23T23:48:25.932Z", "contributors": [ "SphinxKnight", - "teoli", - "Rokuzo", + "chrisdavidmills", + "Diablownik", "Mgjbot", - "Ptak82", - "Diablownik" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Polecenia/var": { - "modified": "2019-01-16T15:49:48.835Z", + "Web/XSLT/Element/value-of": { + "modified": "2019-03-23T23:46:05.049Z", "contributors": [ - "teoli", + "chrisdavidmills", + "Diablownik", "Mgjbot", - "Ptak82", - "Diablownik" + "Michal borek pl", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Polecenia/while": { - "modified": "2019-03-23T23:49:29.695Z", + "Web/XSLT/Element/variable": { + "modified": "2019-01-16T16:03:49.132Z", "contributors": [ - "teoli", + "chrisdavidmills", + "Diablownik", "Mgjbot", - "Ptak82", - "Marcoos" + "Ptak82" ] }, - "Web/JavaScript/Referencje/Przestarzałe_własności_i_metody": { - "modified": "2020-03-12T19:37:30.978Z", + "Web/XSLT/Element/when": { + "modified": "2019-01-16T16:03:46.040Z", "contributors": [ - "SphinxKnight", - "teoli", - "Bedi", - "Mgjbot", + "chrisdavidmills", "Diablownik", - "Ptak82", - "Koziolek", - "Marcoos" + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/Referencje/Słowa_zarezerwowane": { - "modified": "2019-01-16T14:51:07.291Z", + "Web/XSLT/Element/with-param": { + "modified": "2019-01-16T16:03:44.076Z", "contributors": [ - "teoli", - "Ptak82", + "chrisdavidmills", + "Diablownik", "Mgjbot", - "Marcoos" + "Ptak82" ] }, - "Web/JavaScript/Shells": { - "modified": "2020-03-12T19:48:00.854Z", + "Web/API/WebSockets_API": { + "modified": "2019-04-12T05:40:44.038Z", "contributors": [ - "PiotrMuskalski" + "sunpietro", + "DawidNowak", + "Jacqbus" ] }, - "Web/JavaScript/Typed_arrays": { - "modified": "2020-03-12T19:39:10.889Z", + "orphaned/Wsparcie_przeglądarek_dla_elementów_HTML": { + "modified": "2019-03-23T23:50:15.322Z", "contributors": [ - "teoli", - "Kuzirashi" + "Mgjbot", + "Ptak82", + "Emil" ] }, - "Web/JavaScript/Wprowadzenie_do_programowania_obiektowego_w_jezyku_JavaScript": { - "modified": "2019-03-23T23:13:29.216Z", + "Glossary/XHTML": { + "modified": "2019-03-23T23:46:31.012Z", "contributors": [ - "Xelix196", - "matewka" + "Diablownik", + "Ptak82", + "gandalf" + ] + }, + "Web/API/XMLHttpRequest": { + "modified": "2019-03-23T23:55:55.505Z", + "contributors": [ + "fnevgeny", + "Flaneur", + "Bedi", + "Mgjbot", + "Ptak82", + "Ziombka", + "gandalf" ] }, - "Web/JavaScript/Zasoby_języka_JavaScript": { - "modified": "2019-01-16T16:04:32.529Z", + "Web/API/XMLHttpRequest/Using_XMLHttpRequest": { + "modified": "2019-03-23T23:07:00.318Z", "contributors": [ - "teoli", - "Diablownik", - "Ptak82", - "Mgjbot" + "sopi" ] }, - "Web/JavaScript/dziedziczenie_lancuch_prototypow": { - "modified": "2020-03-12T19:43:36.110Z", + "conflicting/Glossary/Chrome": { + "modified": "2019-03-23T23:44:52.281Z", "contributors": [ - "hyvyys", - "binarysailor", - "RudyPL", - "mat-bi", - "vonsko", - "labs4apps", - "pceuropa" + "Mgjbot", + "Ptak82" ] }, - "Web/JavaScript/typy_oraz_struktury_danych": { - "modified": "2020-06-14T13:44:23.074Z", + "conflicting/Web/OpenSearch": { + "modified": "2019-01-16T15:27:45.981Z", "contributors": [ - "AvantaR" + "Mgjbot", + "Killerowski", + "Diablownik", + "Marcoos", + "Ptak82" ] }, - "Web/MathML": { - "modified": "2019-03-24T00:03:16.756Z", + "conflicting/Web/API/Document_Object_Model": { + "modified": "2019-03-23T23:47:41.657Z", "contributors": [ - "tjasinski", - "teoli", - "fred.wang", - "Bedi", + "khalid32", + "safjanowski", + "Ranides", + "Mgjbot", "Ptak82", - "gandalf" + "Bedi", + "Akustyk" ] }, - "Web/Progressive_web_apps": { - "modified": "2020-03-21T20:07:05.090Z", + "Web/Guide/Events/Creating_and_triggering_events": { + "modified": "2019-03-23T23:50:28.341Z", "contributors": [ - "abes21111984" + "khalid32", + "Mgjbot", + "Ptak82", + "Jan Dudek" ] }, - "Web/SVG": { - "modified": "2019-03-23T23:48:48.350Z", + "conflicting/Web/API/Document_Object_Model_7d961b8030c6099ee907f4f4b5fe6b3d": { + "modified": "2019-03-23T23:54:33.828Z", "contributors": [ - "KateSturmey", - "teoli", + "ethertank", + "Mgjbot", "Bedi", "Ptak82", - "Verruckt", - "Mgjbot", "Takenbot", + "Zwierz", "gandalf", + "Jan Dudek", + "Anonymous", "Dria" ] }, - "Web/SVG/Element": { - "modified": "2019-03-23T22:14:00.084Z", + "MDN/Tools": { + "modified": "2019-01-16T20:46:53.090Z", "contributors": [ - "Jeremie" + "wbamberg", + "Mlodyemoka" ] }, - "Web/SVG/Element/a": { - "modified": "2019-03-23T22:13:56.546Z", + "conflicting/Tools/Performance": { + "modified": "2020-07-16T22:35:28.987Z", "contributors": [ - "devMike" + "iwona1111" ] }, - "Web/SVG/Element/animateTransform": { - "modified": "2020-10-15T21:53:46.335Z", + "Web/HTTP/Basics_of_HTTP/MIME_types": { + "modified": "2019-01-16T14:38:41.628Z", "contributors": [ - "SphinxKnight", - "devMike" + "fscholz", + "Mgjbot", + "Ptak82", + "Takenbot", + "gandalf", + "Jan Dudek" ] }, - "Web/SVG/Element/okrąg": { - "modified": "2020-10-15T22:12:21.905Z", + "conflicting/Web/API/Document_Object_Model_e07446e4017cbd3df6b1d4405d407501": { + "modified": "2019-01-16T14:38:39.407Z", "contributors": [ - "webcarrot", - "SphinxKnight", - "Rafal76" + "fscholz", + "Mgjbot", + "Ptak82", + "Takenbot", + "Jan Dudek" ] }, - "Web/SVG/Inne_zasoby": { - "modified": "2019-01-16T15:45:05.453Z", + "conflicting/Web/CSS/CSS_Basic_User_Interface/Using_URL_values_for_the_cursor_property": { + "modified": "2019-03-23T23:41:07.782Z", "contributors": [ "teoli", "Ptak82", - "Sullei", - "gandalf" + "Mwd", + "gandalf", + "Dria" ] }, - "Web/SVG/Przewodnik": { - "modified": "2019-03-20T10:58:52.573Z", + "conflicting/Web/Guide": { + "modified": "2019-03-23T23:43:53.027Z", "contributors": [ - "pan-rzeznik", - "teoli", - "Bedi" + "Mgjbot", + "Ptak82", + "gandalf", + "Anonymous", + "StevenGarrity", + "Dria" ] }, - "Web/SVG/Przewodnik/SVG_w_XHTML_-_Wprowadzenie": { - "modified": "2019-01-16T16:17:00.898Z", + "conflicting/Mozilla/Add-ons": { + "modified": "2019-03-23T23:59:43.298Z", "contributors": [ - "chrisdavidmills", + "fscholz", + "teoli", + "tregagnon", + "RLR", + "Adrianer", + "Bedi", + "Yozh88", + "Mgjbot", + "Sopel1000", + "Diablownik", + "Marcoos", + "Adriator", "Ptak82", + "Verruckt", + "Kyllan", + "Kabar", + "Kjj2", "gandalf", + "Indigo", "Takenbot", - "Dria", - "Marcoos" - ] - }, - "Web/Security/Securing_your_site": { - "modified": "2019-11-23T17:31:47.688Z", - "contributors": [ - "mfuji09" - ] - }, - "Web/Security/Securing_your_site/Konfiguracja_MIME_na_serwerze": { - "modified": "2020-07-16T22:36:04.529Z", - "contributors": [ - "drm404" - ] - }, - "Web/Tutorials": { - "modified": "2019-03-23T23:07:22.234Z", - "contributors": [ - "mat-bi", - "RafalDe", - "heretyk52", - "Tomek+" + "Pbm", + "Emil" ] }, - "Web/XML": { - "modified": "2020-10-12T08:15:16.866Z", + "Web/API/DocumentOrShadowRoot/activeElement": { + "modified": "2019-03-23T23:53:13.275Z", "contributors": [ - "SphinxKnight", - "adrianpiatkiewicz280", - "MattMaestro123", - "ExE-Boss" + "teoli", + "AshfaqHossain", + "Mgjbot", + "Flaneur" ] }, - "Web/XML/Wprowadzenie_do_XML-a": { - "modified": "2019-05-01T21:53:56.163Z", + "conflicting/Web/API/Node/firstChild": { + "modified": "2019-03-23T23:53:15.004Z", "contributors": [ - "ExE-Boss", + "teoli", + "jsx", "Mgjbot", - "Bedi", - "Iorlef", - "Ptak82", - "Marcoos", - "Takenbot", - "Gjaryczewski", - "Anonymous" + "Jan Dudek" ] }, - "Web/XPath": { - "modified": "2019-01-16T14:32:59.084Z", + "conflicting/Web/API/Node/namespaceURI": { + "modified": "2019-03-23T23:44:00.886Z", "contributors": [ - "ExE-Boss", - "fscholz", + "teoli", + "khalid32", "Mgjbot", - "Flaneur", - "Bedi", "Ptak82", - "Marcoos", - "gandalf" + "Jan Dudek" ] }, - "Web/XPath/Funkcje": { - "modified": "2019-03-23T23:54:13.300Z", + "Web/API/DocumentOrShadowRoot/styleSheets": { + "modified": "2019-03-23T23:48:20.614Z", "contributors": [ - "ExE-Boss", "teoli", + "jsx", + "Robson", "Mgjbot", - "Diablownik", - "Ptak82" + "Jan Dudek" ] }, - "Web/XPath/Funkcje/boolean": { - "modified": "2019-01-16T15:50:21.080Z", + "conflicting/Web/API": { + "modified": "2019-03-24T00:13:13.340Z", "contributors": [ - "ExE-Boss", + "teoli", + "khalid32", + "dextra", "Mgjbot", - "Diablownik", + "Jan Dudek", "Ptak82" ] }, - "Web/XPath/Funkcje/ceiling": { - "modified": "2019-01-16T15:50:29.009Z", + "Web/API/MouseEvent/altKey": { + "modified": "2019-03-23T23:48:10.716Z", "contributors": [ - "ExE-Boss", + "teoli", + "jsx", "Mgjbot", - "Diablownik", + "Jan Dudek", "Ptak82" ] }, - "Web/XPath/Funkcje/concat": { - "modified": "2019-01-16T15:50:21.356Z", + "Web/API/MouseEvent/button": { + "modified": "2019-03-23T23:48:07.041Z", "contributors": [ - "ExE-Boss", + "teoli", + "jsx", "Mgjbot", - "Diablownik", + "Jan Dudek", "Ptak82" ] }, - "Web/XPath/Funkcje/contains": { - "modified": "2019-01-16T15:50:22.632Z", + "Web/API/MouseEvent/clientX": { + "modified": "2019-03-23T23:41:14.486Z", "contributors": [ - "ExE-Boss", - "Mgjbot", - "Diablownik", + "teoli", + "jsx", + "Jan Dudek", "Ptak82" ] }, - "Web/XPath/Funkcje/count": { - "modified": "2019-01-16T15:50:18.931Z", + "Web/API/MouseEvent/clientY": { + "modified": "2019-03-23T23:41:13.474Z", "contributors": [ - "ExE-Boss", - "Diablownik", - "Mgjbot", + "teoli", + "jsx", + "Jan Dudek", "Ptak82" ] }, - "Web/XPath/Funkcje/current": { - "modified": "2019-01-16T15:54:07.231Z", + "Web/API/MouseEvent/ctrlKey": { + "modified": "2019-03-23T23:41:13.226Z", "contributors": [ - "ExE-Boss", - "Diablownik", - "Mgjbot", + "teoli", + "khalid32", + "Jan Dudek", "Ptak82" ] }, - "Web/XPath/Funkcje/document": { - "modified": "2019-01-16T15:54:08.509Z", + "Web/API/KeyboardEvent/keyCode": { + "modified": "2019-03-23T23:41:14.121Z", "contributors": [ - "ExE-Boss", - "Diablownik", - "Mgjbot", + "teoli", + "khalid32", + "Jan Dudek", "Ptak82" ] }, - "Web/XPath/Funkcje/element-available": { - "modified": "2019-01-16T15:54:24.632Z", + "Web/API/MouseEvent/metaKey": { + "modified": "2019-03-23T23:54:16.778Z", "contributors": [ - "ExE-Boss", - "Diablownik", - "KRZ", - "Mgjbot", + "teoli", + "khalid32", + "Dabear", + "Jan Dudek", "Ptak82" ] }, - "Web/XPath/Funkcje/false": { - "modified": "2019-01-16T15:50:11.644Z", + "Web/API/MouseEvent/relatedTarget": { + "modified": "2019-03-23T23:41:15.246Z", "contributors": [ - "ExE-Boss", - "Mgjbot", - "Diablownik", + "teoli", + "khalid32", + "Jan Dudek", "Ptak82" ] }, - "Web/XPath/Funkcje/floor": { - "modified": "2019-01-16T15:50:15.420Z", + "Web/API/MouseEvent/screenX": { + "modified": "2019-03-23T23:41:13.675Z", "contributors": [ - "ExE-Boss", - "Mgjbot", - "Diablownik", + "teoli", + "khalid32", + "Jan Dudek", "Ptak82" ] }, - "Web/XPath/Funkcje/format-number": { - "modified": "2019-01-16T15:54:05.462Z", + "Web/API/MouseEvent/screenY": { + "modified": "2019-03-23T23:41:13.789Z", "contributors": [ - "ExE-Boss", - "Diablownik", - "Mgjbot", + "teoli", + "khalid32", + "Jan Dudek", "Ptak82" ] }, - "Web/XPath/Funkcje/function-available": { - "modified": "2019-01-16T15:54:33.591Z", + "Web/API/MouseEvent/shiftKey": { + "modified": "2019-03-23T23:41:14.937Z", "contributors": [ - "ExE-Boss", - "Diablownik", - "Mgjbot", + "teoli", + "jsx", + "Jan Dudek", "Ptak82" ] }, - "Web/XPath/Funkcje/generate-id": { - "modified": "2019-01-16T15:54:20.993Z", + "Web/API/Web_Storage_API": { + "modified": "2019-03-23T23:50:43.254Z", "contributors": [ - "ExE-Boss", - "Diablownik", + "rudol", + "teoli", + "AshfaqHossain", "Mgjbot", - "Ptak82" + "Ptak82", + "Rev", + "Bedi", + "Internauta1024A" ] }, - "Web/XPath/Funkcje/id": { - "modified": "2019-01-16T15:50:05.440Z", + "Web/API/WindowOrWorkerGlobalScope": { + "modified": "2019-03-23T23:01:35.375Z", "contributors": [ - "ExE-Boss", - "Diablownik", - "Mgjbot", - "Ptak82" + "teoli" ] }, - "Web/XPath/Funkcje/key": { - "modified": "2019-01-16T15:54:07.018Z", + "Web/CSS/outline-color": { + "modified": "2019-01-16T13:39:33.289Z", "contributors": [ - "ExE-Boss", - "Diablownik", + "teoli", + "FredB", "Mgjbot", - "Ptak82" + "Ptak82", + "Witia" ] }, - "Web/XPath/Funkcje/lang": { - "modified": "2019-01-16T15:50:00.856Z", + "Web/CSS/CSS_Color": { + "modified": "2019-03-23T22:10:25.437Z", "contributors": [ - "ExE-Boss", + "Krenair" + ] + }, + "conflicting/Web/CSS": { + "modified": "2019-01-16T16:10:29.072Z", + "contributors": [ + "teoli", "Mgjbot", - "Diablownik", "Ptak82", - "Bedi" + "gandalf", + "Dria" ] }, - "Web/XPath/Funkcje/last": { - "modified": "2019-01-16T15:50:13.769Z", + "Learn/CSS/Building_blocks": { + "modified": "2019-03-23T23:59:15.814Z", "contributors": [ - "ExE-Boss", - "Mgjbot", + "teoli", + "lukasz.jezierski", + "Verruckt", + "gandalf", + "Takenbot", "Ptak82", - "Diablownik" + "Przemys", + "Anonymous", + "Witia" ] }, - "Web/XPath/Funkcje/local-name": { - "modified": "2019-01-16T15:50:08.618Z", + "Learn/CSS/First_steps/How_CSS_works": { + "modified": "2019-03-23T23:43:31.084Z", "contributors": [ - "ExE-Boss", + "bazilazi", + "teoli", + "Verruckt", "Mgjbot", - "Diablownik", - "Ptak82" + "gandalf", + "Takenbot", + "Ptak82", + "Taken", + "Witia", + "Anonymous", + "Marcoos", + "Dria" ] }, - "Web/XPath/Funkcje/name": { - "modified": "2019-01-16T15:50:11.434Z", + "Learn/CSS/First_steps/How_CSS_is_structured": { + "modified": "2019-03-23T23:47:41.199Z", "contributors": [ - "ExE-Boss", + "teoli", "Mgjbot", - "Diablownik", - "Ptak82" + "Verruckt", + "gandalf", + "Takenbot", + "Ptak82", + "Ruby", + "Sheppy", + "Anonymous", + "Witia" ] }, - "Web/XPath/Funkcje/namespace-uri": { - "modified": "2019-01-16T15:50:11.817Z", + "Learn/CSS/First_steps": { + "modified": "2019-03-23T23:43:32.380Z", "contributors": [ - "ExE-Boss", + "teoli", + "thebodzio", + "Ptak82", + "Verruckt", "Mgjbot", - "Diablownik", - "Ptak82" + "gandalf", + "Takenbot", + "Zwierz", + "Witia", + "Anonymous", + "Marcoos", + "Dria" ] }, - "Web/XPath/Funkcje/normalize-space": { - "modified": "2019-01-16T15:50:17.331Z", + "conflicting/Learn/CSS/First_steps/How_CSS_works": { + "modified": "2019-03-23T23:43:25.888Z", "contributors": [ - "ExE-Boss", + "teoli", + "Verruckt", + "Ptak82", + "Zibek", "Mgjbot", - "Diablownik", - "Ptak82" + "gandalf", + "Takenbot", + "Ruby", + "Anonymous", + "Witia", + "Marcoos", + "Dria" ] }, - "Web/XPath/Funkcje/not": { - "modified": "2019-01-16T15:50:09.345Z", + "Learn/JavaScript/Client-side_web_APIs/Manipulating_documents": { + "modified": "2019-03-23T23:43:40.283Z", "contributors": [ - "ExE-Boss", - "Mgjbot", - "Diablownik", - "Ptak82" + "teoli", + "Verruckt", + "gandalf", + "Takenbot", + "Ptak82", + "Anonymous", + "Witia" ] }, - "Web/XPath/Funkcje/number": { - "modified": "2019-01-16T15:49:59.758Z", + "Learn/CSS/Building_blocks/Cascade_and_inheritance": { + "modified": "2019-03-23T23:43:24.400Z", "contributors": [ - "ExE-Boss", - "Diablownik", + "teoli", + "Verruckt", "Mgjbot", - "Ptak82" + "gandalf", + "Takenbot", + "Ptak82", + "Sheppy", + "Witia", + "Anonymous" ] }, - "Web/XPath/Funkcje/position": { - "modified": "2020-12-13T04:53:06.789Z", + "Learn/CSS/Building_blocks/Values_and_units": { + "modified": "2019-03-23T23:48:35.027Z", "contributors": [ - "JWPB", - "ExE-Boss", + "teoli", "Mgjbot", + "Verruckt", "Ptak82", - "Diablownik", - "Bedi" + "gandalf", + "Takenbot", + "Ruby", + "Anonymous", + "Mikolaj" ] }, - "Web/XPath/Funkcje/round": { - "modified": "2019-01-16T15:50:04.322Z", + "Learn/CSS/Styling_text/Styling_lists": { + "modified": "2019-03-23T23:44:37.412Z", "contributors": [ - "ExE-Boss", - "Mgjbot", + "teoli", + "Sheppy", + "Delor", + "Verruckt", + "gandalf", + "Takenbot", "Ptak82", - "Diablownik" + "Anonymous", + "Witia" ] }, - "Web/XPath/Funkcje/starts-with": { - "modified": "2019-01-16T15:50:02.374Z", + "conflicting/Learn/CSS/First_steps/How_CSS_works_21be2ff13a08a8866d772c3a5e975193": { + "modified": "2019-03-23T23:43:30.892Z", "contributors": [ - "ExE-Boss", + "teoli", + "Verruckt", "Mgjbot", - "Diablownik", - "Ptak82" + "gandalf", + "Takenbot", + "Ptak82", + "Taken", + "Ruby", + "Witia", + "Anonymous", + "Marcoos", + "Dria" ] }, - "Web/XPath/Funkcje/string": { - "modified": "2019-01-16T15:50:13.315Z", + "Learn/CSS/Building_blocks/Selectors": { + "modified": "2019-03-23T23:59:17.263Z", "contributors": [ - "ExE-Boss", + "Miras", + "teoli", + "lukasz.jezierski", "Mgjbot", - "Diablownik", - "Ptak82" + "Verruckt", + "gandalf", + "Takenbot", + "Ptak82", + "Ruby", + "Cleriic", + "Witia", + "Anonymous" ] }, - "Web/XPath/Funkcje/string-length": { - "modified": "2019-01-16T15:50:11.197Z", + "Learn/CSS/Styling_text/Fundamentals": { + "modified": "2019-03-23T23:47:47.884Z", "contributors": [ - "ExE-Boss", + "teoli", "Mgjbot", - "Diablownik", - "Ptak82" + "Verruckt", + "Ptak82", + "Psz", + "gandalf", + "Takenbot", + "Sheppy", + "Witia", + "Anonymous" ] }, - "Web/XPath/Funkcje/substring": { - "modified": "2019-01-16T15:50:11.854Z", + "Learn/CSS/Building_blocks/Styling_tables": { + "modified": "2019-03-23T23:43:41.150Z", "contributors": [ - "ExE-Boss", - "Mgjbot", - "Diablownik", - "Ptak82" + "teoli", + "ethertank", + "Verruckt", + "gandalf", + "Takenbot", + "Ptak82", + "Ruby", + "Anonymous", + "Witia" ] }, - "Web/XPath/Funkcje/substring-after": { - "modified": "2019-01-16T15:50:08.478Z", + "conflicting/Learn/CSS/CSS_layout": { + "modified": "2019-03-23T23:44:36.876Z", "contributors": [ - "ExE-Boss", - "Mgjbot", - "Diablownik", - "Ptak82" + "teoli", + "Sheppy", + "Delor", + "Verruckt", + "Witia", + "gandalf", + "Takenbot", + "Ptak82", + "Anonymous" ] }, - "Web/XPath/Funkcje/substring-before": { - "modified": "2019-01-16T15:50:03.131Z", + "conflicting/Web/HTML/Global_attributes/spellcheck": { + "modified": "2019-03-23T23:54:20.997Z", "contributors": [ - "ExE-Boss", + "teoli", "Mgjbot", - "Diablownik", - "Ptak82" + "Bedi", + "Ptak82", + "VooEak" ] }, - "Web/XPath/Funkcje/sum": { - "modified": "2019-01-16T15:50:11.203Z", + "conflicting/Web/API/Document/hasFocus": { + "modified": "2019-01-16T15:45:12.939Z", "contributors": [ - "ExE-Boss", - "Mgjbot", - "Diablownik", - "Bedi", - "Ptak82" + "teoli", + "Flaneur" ] }, - "Web/XPath/Funkcje/system-property": { - "modified": "2019-01-16T15:54:07.335Z", + "conflicting/Learn/HTML/Introduction_to_HTML/Getting_started": { + "modified": "2019-03-23T23:53:28.126Z", "contributors": [ - "ExE-Boss", - "Diablownik", + "teoli", "Mgjbot", - "Ptak82" + "Ptak82", + "Nerf", + "Dria" ] }, - "Web/XPath/Funkcje/translate": { - "modified": "2019-03-23T23:49:24.212Z", + "conflicting/Web/JavaScript/Guide/Introduction": { + "modified": "2019-05-16T15:03:06.854Z", "contributors": [ - "ExE-Boss", - "AndrewPopenko", - "Mgjbot", - "Diablownik", - "Ptak82" + "wbamberg", + "teoli", + "gieerzetka" ] }, - "Web/XPath/Funkcje/true": { - "modified": "2019-01-16T15:50:14.395Z", + "conflicting/Web/JavaScript/Guide": { + "modified": "2019-01-16T17:47:38.082Z", "contributors": [ - "ExE-Boss", - "Mgjbot", - "Diablownik", - "Ptak82" + "teoli", + "Sheppy" ] }, - "Web/XPath/Funkcje/unparsed-entity-url": { - "modified": "2019-01-16T15:54:07.524Z", + "conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling": { + "modified": "2019-01-16T16:17:02.444Z", "contributors": [ - "ExE-Boss", - "Diablownik", + "teoli", "Mgjbot", "Ptak82" ] }, - "Web/XPath/Osie": { - "modified": "2019-01-16T15:28:45.164Z", + "conflicting/Web/JavaScript/Guide/Functions": { + "modified": "2019-03-24T00:10:24.919Z", "contributors": [ - "ExE-Boss", + "teoli", + "ethertank", + "szymie", + "Ptak82", "Mgjbot", - "Diablownik", - "Ptak82" + "Tmk" ] }, - "Web/XSLT": { - "modified": "2019-01-16T14:32:05.636Z", + "conflicting/Web/JavaScript/Guide/Functions_90ea47f6d07003af2efc0a1756da41e2": { + "modified": "2019-01-16T16:11:30.514Z", "contributors": [ - "chrisdavidmills", - "lukasz.jezierski", - "Verruckt", + "teoli", "Ptak82", - "Mgjbot", - "gandalf", - "Jan Dudek", - "Anonymous", - "Dria" + "Mgjbot" ] }, - "Web/XSLT/Element": { - "modified": "2019-03-23T23:47:58.568Z", + "conflicting/Web/JavaScript/Guide/Functions_2af756c37808c2f8e09add6cc9618178": { + "modified": "2019-01-16T16:17:02.297Z", "contributors": [ - "ExE-Boss", - "chrisdavidmills", - "Diablownik", + "teoli", "Mgjbot", "Ptak82" ] }, - "Web/XSLT/Element/element": { - "modified": "2019-01-16T16:02:07.174Z", + "conflicting/Web/JavaScript/Guide/Functions_8b84da88e673c0774c4f504a9be67268": { + "modified": "2019-01-16T16:17:02.471Z", "contributors": [ - "ExE-Boss", - "chrisdavidmills", - "Diablownik", + "teoli", "Mgjbot", "Ptak82" ] }, - "Web/XSLT/Transformacje_XML_z_XSLT": { - "modified": "2019-03-23T23:43:19.830Z", + "conflicting/Web/JavaScript/Guide/Functions_14ccabf533660cb9d0794a5a93287159": { + "modified": "2019-01-16T16:02:25.853Z", "contributors": [ - "SphinxKnight", - "chrisdavidmills", + "teoli", "Mgjbot", "Ptak82" ] }, - "Web/XSLT/Transformacje_XML_z_XSLT/Dokumentacja_XSLT_XPath": { - "modified": "2019-01-16T16:12:39.198Z", + "conflicting/Web/JavaScript/Guide/Functions_74f4afa40d626fed3cf9277e30d6d211": { + "modified": "2019-01-16T16:08:15.532Z", "contributors": [ - "chrisdavidmills", + "teoli", "Mgjbot", "Ptak82" ] }, - "Web/XSLT/Transformacje_XML_z_XSLT/Przeczytaj_więcej": { - "modified": "2019-03-23T23:48:25.932Z", + "conflicting/Web/JavaScript/Guide/Functions_915be6bbaf2578afefb6927c899d5f3d": { + "modified": "2019-01-16T16:02:33.260Z", "contributors": [ - "SphinxKnight", - "chrisdavidmills", - "Diablownik", + "teoli", "Mgjbot", - "Ptak82" + "Ptak82", + "Diablownik" ] }, - "Web/XSLT/apply-imports": { - "modified": "2019-01-16T16:04:10.129Z", + "conflicting/Web/JavaScript/Guide/Functions_b0ff3e89089de1f0a22029bbde807073": { + "modified": "2019-01-16T16:09:54.790Z", "contributors": [ - "chrisdavidmills", - "Diablownik", - "Mgjbot", - "Ptak82" + "teoli", + "Ptak82", + "Mgjbot" ] }, - "Web/XSLT/apply-templates": { - "modified": "2019-01-16T15:56:15.770Z", + "conflicting/Web/JavaScript/Guide_a026fc5d05de582c88d39cf9fd37870d": { + "modified": "2019-03-24T00:00:51.351Z", "contributors": [ - "chrisdavidmills", + "fscholz", + "teoli", + "atlavis", + "Ptak82", + "Bedi", + "Marcoos", "Diablownik", "Mgjbot", - "Ptak82" + "Grzybu", + "Takenbot", + "gandalf" ] }, - "Web/XSLT/attribute": { - "modified": "2019-01-16T16:04:08.328Z", + "conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_b955d4d09ed7fa71268639ed589f8702": { + "modified": "2019-01-16T16:07:38.682Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "teoli", "Mgjbot", "Ptak82" ] }, - "Web/XSLT/attribute-set": { - "modified": "2019-01-16T16:04:06.202Z", + "conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_1a7d2f7d8b159dce08254c88948bc74a": { + "modified": "2019-01-16T16:07:51.369Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "teoli", "Mgjbot", - "Ptak82" + "Ptak82", + "gandalf" ] }, - "Web/XSLT/call-template": { - "modified": "2019-01-16T16:04:02.137Z", + "conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_8f58cc44e17308f295c610e8acad2d99": { + "modified": "2019-01-16T15:30:59.621Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "teoli", + "Internauta1024A", + "Kazio", "Mgjbot", "Ptak82" ] }, - "Web/XSLT/choose": { - "modified": "2019-01-16T15:43:24.557Z", + "conflicting/Web/JavaScript/Guide/Grammar_and_types": { + "modified": "2019-01-16T15:28:47.167Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "teoli", "Mgjbot", - "Ptak82" + "Diablownik", + "Ptak82", + "Bedi", + "KrucaFuks", + "Takenbot" ] }, - "Web/XSLT/comment": { - "modified": "2019-01-16T16:04:07.126Z", + "Web/JavaScript/Guide/Working_with_Objects": { + "modified": "2019-01-16T16:04:02.144Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "teoli", "Mgjbot", - "Ptak82" + "Ptak82", + "Sheppy" ] }, - "Web/XSLT/copy": { - "modified": "2019-01-16T16:04:06.489Z", + "conflicting/Web/JavaScript/Guide_1093f218406d2d64ec91bb7a6bda93ce": { + "modified": "2019-01-16T16:07:28.346Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "teoli", "Mgjbot", "Ptak82" ] }, - "Web/XSLT/copy-of": { - "modified": "2019-01-16T15:56:06.624Z", + "Web/JavaScript/Guide/Expressions_and_Operators": { + "modified": "2019-01-16T15:45:03.435Z", "contributors": [ - "chrisdavidmills", - "Diablownik", - "Mgjbot", - "Ptak82" + "teoli", + "Ptak82", + "Re set", + "Internauta1024A", + "Mgjbot" ] }, - "Web/XSLT/decimal-format": { - "modified": "2019-01-16T16:04:06.645Z", + "conflicting/Web/JavaScript/Guide/Expressions_and_Operators": { + "modified": "2019-01-16T15:45:18.599Z", "contributors": [ - "chrisdavidmills", - "Diablownik", - "Mgjbot", - "Ptak82" + "teoli", + "Re set", + "Ptak82", + "Uryga", + "Mgjbot" ] }, - "Web/XSLT/fallback": { - "modified": "2019-01-16T16:04:02.164Z", + "conflicting/Web/JavaScript/Guide/Expressions_and_Operators_605f6491d97a62449200a9401cba82c7": { + "modified": "2019-01-16T15:45:06.608Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "teoli", + "Re set", "Mgjbot", "Ptak82" ] }, - "Web/XSLT/for-each": { - "modified": "2019-01-16T16:03:48.737Z", + "conflicting/Web/JavaScript/Guide/Expressions_and_Operators_173cc0f9e32f34b0483b45a29fa462e4": { + "modified": "2019-01-16T15:45:11.361Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "teoli", + "Ptak82", + "Re set", "Mgjbot", - "Ptak82" + "Anonymous" ] }, - "Web/XSLT/if": { - "modified": "2019-03-23T23:46:04.423Z", + "conflicting/Web/JavaScript/Guide/Expressions_and_Operators_510ae1f584cbdb5ca760b545f90c72ed": { + "modified": "2019-01-16T15:45:08.791Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "teoli", + "Ptak82", + "Re set", + "Mgjbot" + ] + }, + "conflicting/Web/JavaScript/Guide/Expressions_and_Operators_a3ce80967ffc4f60314caa4b05ec9c47": { + "modified": "2019-01-16T15:44:56.049Z", + "contributors": [ + "teoli", + "Re set", + "Stefan.power", + "Ptak82", + "Internauta1024A", "Mgjbot", - "Ptak82" + "Grzybu" ] }, - "Web/XSLT/import": { - "modified": "2019-01-16T16:04:02.775Z", + "Web/JavaScript/Guide/Details_of_the_Object_Model": { + "modified": "2019-01-16T16:02:28.093Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "teoli", "Mgjbot", + "Diablownik", "Ptak82" ] }, - "Web/XSLT/include": { - "modified": "2019-01-16T16:04:00.167Z", + "conflicting/Web/JavaScript/Guide/Details_of_the_Object_Model": { + "modified": "2019-01-16T15:51:13.285Z", "contributors": [ - "chrisdavidmills", + "teoli", "Diablownik", "Mgjbot", "Ptak82" ] }, - "Web/XSLT/key": { - "modified": "2019-01-16T16:04:00.126Z", + "Web/JavaScript/Guide/Regular_Expressions": { + "modified": "2019-01-16T15:31:49.852Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "teoli", "Mgjbot", - "Ptak82", - "Bedi" + "Diablownik", + "Ptak82" ] }, - "Web/XSLT/message": { - "modified": "2019-01-16T15:55:54.853Z", + "conflicting/Web/JavaScript/Guide/Grammar_and_types_d86447bbdab858af0abf9b17c9ec9dc9": { + "modified": "2019-01-16T14:49:38.955Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "teoli", + "Sheppy", + "falka", + "Ptak82", + "Re set", "Mgjbot", - "Ptak82" + "KrucaFuks", + "Takenbot" ] }, - "Web/XSLT/namespace-alias": { - "modified": "2019-01-16T16:03:46.013Z", + "conflicting/Web/JavaScript/Guide/Grammar_and_types_0f7acbcd2fa8bfb327628638da4e5166": { + "modified": "2019-01-16T15:45:06.657Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "teoli", + "Re set", "Mgjbot", - "Ptak82" + "Bedi", + "Internauta1024A", + "Ptak82", + "Leoniq" ] }, - "Web/XSLT/number": { - "modified": "2019-03-23T23:47:56.436Z", + "conflicting/Web/JavaScript/Guide/Grammar_and_types_1d6d13b355b9483ad46cf81082b7c261": { + "modified": "2019-01-16T15:28:38.496Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "teoli", "Mgjbot", - "Ptak82" + "Re set", + "Ptak82", + "KrucaFuks", + "Takenbot" ] }, - "Web/XSLT/otherwise": { - "modified": "2019-01-16T16:04:00.381Z", + "conflicting/Web/JavaScript/Guide/Expressions_and_Operators_c278b67ddd602343b8c21711abc1b17c": { + "modified": "2019-01-16T15:45:05.450Z", "contributors": [ - "chrisdavidmills", - "Diablownik", - "Mgjbot", - "Ptak82" + "teoli", + "Ptak82", + "Re set", + "Mgjbot" ] }, - "Web/XSLT/output": { - "modified": "2019-01-16T16:04:00.215Z", + "conflicting/Web/JavaScript/Guide/Functions_403e991db3105a03e0afc1a3cc821a01": { + "modified": "2019-03-23T23:59:05.678Z", "contributors": [ - "chrisdavidmills", - "Diablownik", - "Mgjbot", + "Mikad", + "teoli", + "Sheppy", + "diabelb", "Ptak82", "Bedi", - "Michal borek pl" + "Mgjbot" ] }, - "Web/XSLT/param": { - "modified": "2019-01-16T16:04:00.223Z", + "conflicting/Web/JavaScript/Guide/Grammar_and_types_14ae50e0032f9c0db4fe484288797da6": { + "modified": "2019-01-16T14:50:00.178Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "teoli", + "Sheppy", + "falka", "Mgjbot", - "Ptak82" + "Re set", + "Ptak82", + "Internauta1024A", + "Bratmn", + "KrucaFuks", + "Takenbot" ] }, - "Web/XSLT/preserve-space": { - "modified": "2019-01-16T16:04:00.228Z", + "Web/JavaScript/Reference/Lexical_grammar": { + "modified": "2019-03-23T23:46:42.565Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "teoli", + "Sheppy", + "ElKreciko", "Mgjbot", + "Internauta1024A", + "Marcoos", "Ptak82" ] }, - "Web/XSLT/processing-instruction": { - "modified": "2019-01-16T16:04:00.064Z", + "conflicting/Web/JavaScript/Reference/Global_Objects/Boolean": { + "modified": "2019-03-23T23:58:08.032Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "teoli", + "Witia", "Mgjbot", - "Ptak82" + "Diablownik", + "Ptak82", + "Marcoos" ] }, - "Web/XSLT/sort": { - "modified": "2019-01-16T16:02:15.902Z", + "conflicting/Web/JavaScript/Reference/Global_Objects/Date": { + "modified": "2019-01-16T14:55:06.466Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "teoli", + "Witia", + "Marcoos", "Mgjbot", "Ptak82" ] }, - "Web/XSLT/strip-space": { - "modified": "2019-01-16T16:04:00.187Z", + "conflicting/Web/JavaScript/Reference/Global_Objects/Date_73c046d653c590f4914731d078f3b2c5": { + "modified": "2019-03-23T23:53:54.438Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "teoli", "Mgjbot", + "Internauta1024A", + "Taken", "Ptak82" ] }, - "Web/XSLT/stylesheet": { - "modified": "2019-01-16T14:50:04.672Z", + "conflicting/Web/JavaScript/Reference/Global_Objects/Error": { + "modified": "2020-10-15T21:37:55.917Z", "contributors": [ - "chrisdavidmills", - "Filemon", - "Diablownik", - "Mgjbot", - "Ptak82" + "mitelak", + "fscholz" ] }, - "Web/XSLT/template": { - "modified": "2019-01-16T15:56:09.826Z", + "conflicting/Web/JavaScript/Reference/Global_Objects/Number": { + "modified": "2019-01-16T16:01:19.654Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "teoli", + "Marcoos", "Mgjbot", - "Ptak82", - "Michal borek pl" + "Ptak82" ] }, - "Web/XSLT/text": { - "modified": "2019-03-23T23:45:58.964Z", + "conflicting/Web/JavaScript/Reference/Global_Objects/Object": { + "modified": "2019-03-23T23:53:56.350Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "macborowy", + "rwa_kulszowa", + "dianafa", + "teoli", "Mgjbot", - "Ptak82" + "Ptak82", + "Marcoos" ] }, - "Web/XSLT/transform": { - "modified": "2019-01-16T15:56:10.001Z", + "Web/JavaScript/Reference/Global_Objects/Proxy/Proxy": { + "modified": "2020-10-15T22:01:32.237Z", "contributors": [ - "chrisdavidmills", - "Diablownik", - "Mgjbot", - "Ptak82" + "andrzejkrecicki" ] }, - "Web/XSLT/value-of": { - "modified": "2019-03-23T23:46:05.049Z", + "conflicting/Web/JavaScript/Reference/Global_Objects/RangeError": { + "modified": "2019-03-23T22:51:15.660Z", "contributors": [ - "chrisdavidmills", - "Diablownik", - "Mgjbot", - "Michal borek pl", - "Ptak82" + "adam-tokarski" ] }, - "Web/XSLT/variable": { - "modified": "2019-01-16T16:03:49.132Z", + "conflicting/Web/JavaScript/Reference/Global_Objects/RegExp": { + "modified": "2019-03-23T23:44:47.433Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "teoli", "Mgjbot", "Ptak82" ] }, - "Web/XSLT/when": { - "modified": "2019-01-16T16:03:46.040Z", + "conflicting/Web/JavaScript/Reference/Global_Objects/String": { + "modified": "2019-03-18T20:37:36.182Z", "contributors": [ - "chrisdavidmills", - "Diablownik", + "ktxc", + "teoli", "Mgjbot", "Ptak82" ] }, - "Web/XSLT/with-param": { - "modified": "2019-01-16T16:03:44.076Z", + "conflicting/Web/JavaScript/Reference/Operators": { + "modified": "2020-10-15T22:25:46.843Z", "contributors": [ - "chrisdavidmills", - "Diablownik", - "Mgjbot", - "Ptak82" + "jangromko" ] }, - "WebAssembly": { - "modified": "2020-05-12T10:24:52.590Z", + "conflicting/Web/JavaScript/Reference/Operators_8afb1abf2138289c890ee09e799ff26e": { + "modified": "2020-10-15T22:08:04.815Z", "contributors": [ - "mbiesiad", - "AndrzejSala" + "jangromko" ] }, - "WebSockets": { - "modified": "2019-04-12T05:40:44.038Z", + "conflicting/Web/JavaScript/Reference/Operators_1f6634ff6e3ccef661281d6e50002147": { + "modified": "2020-03-12T19:36:55.090Z", "contributors": [ - "sunpietro", - "DawidNowak", - "Jacqbus" + "AndrzejSala", + "teoli", + "Niewiado", + "Ptak82", + "Kc604", + "Mgjbot", + "Internauta1024A" ] }, - "Wsparcie_przeglądarek_dla_elementów_HTML": { - "modified": "2019-03-23T23:50:15.322Z", + "conflicting/Web/JavaScript/Reference/Operators_1d09774e621bf2431a4f5594a248dd21": { + "modified": "2019-01-16T19:21:07.446Z", "contributors": [ + "teoli", "Mgjbot", "Ptak82", - "Emil" + "Anonymous", + "Marcoos" ] }, - "XHTML": { - "modified": "2019-03-23T23:46:31.012Z", + "conflicting/Web/JavaScript/Reference/Operators_5ba63337c20d72b8f8747a954b9b6c94": { + "modified": "2020-03-12T19:37:40.853Z", "contributors": [ - "Diablownik", + "marcinpgit", + "teoli", "Ptak82", - "gandalf" + "Internauta1024A", + "Mgjbot" ] }, - "XMLHttpRequest": { - "modified": "2019-03-23T23:55:55.505Z", + "conflicting/Web/JavaScript/Reference/Operators_de3666cd349851054926d5e52fced70d": { + "modified": "2020-03-12T19:37:41.089Z", "contributors": [ - "fnevgeny", - "Flaneur", - "Bedi", + "teoli", "Mgjbot", "Ptak82", - "Ziombka", - "gandalf" + "Marcoos" ] }, - "XMLHttpRequest/Using_XMLHttpRequest": { - "modified": "2019-03-23T23:07:00.318Z", + "conflicting/Web/JavaScript/Reference/Operators/Spread_syntax": { + "modified": "2020-03-12T19:44:36.805Z", "contributors": [ - "sopi" + "Konrad007", + "greg606", + "artus9033", + "kdex", + "kamce", + "grzim" ] }, - "dziesiec_lat_mdn": { - "modified": "2019-03-23T22:43:45.633Z", + "conflicting/Web/JavaScript/Reference/Statements/switch": { + "modified": "2020-10-15T22:19:18.627Z", "contributors": [ - "RemigiuszBrzebrzycki", - "kamilcios" + "jangromko" ] }, - "nsIInputStream": { - "modified": "2019-04-20T03:56:57.732Z", + "conflicting/Web/JavaScript/Reference/Lexical_grammar": { + "modified": "2019-01-16T14:51:07.291Z", "contributors": [ - "wbamberg", - "Bedi", - "Ptak82" + "teoli", + "Ptak82", + "Mgjbot", + "Marcoos" ] }, - "nsIXULAppInfo": { - "modified": "2019-04-20T00:22:03.815Z", + "conflicting/Learn/JavaScript/Objects": { + "modified": "2019-03-23T23:13:29.216Z", "contributors": [ - "wbamberg", - "Diablownik", - "Bedi", - "Joeaccord" + "Xelix196", + "matewka" ] } } \ No newline at end of file diff --git a/files/pl/conflicting/glossary/chrome/index.html b/files/pl/conflicting/glossary/chrome/index.html index aa9e184b17..a6e31cec66 100644 --- a/files/pl/conflicting/glossary/chrome/index.html +++ b/files/pl/conflicting/glossary/chrome/index.html @@ -1,11 +1,12 @@ --- title: Chrome -slug: Chrome +slug: conflicting/Glossary/Chrome tags: - Toolkit API - Wszystkie_kategorie translation_of: Glossary/Chrome translation_of_original: Chrome +original_slug: Chrome ---

Chrome w całości jest zestawem elementów interfejsu użytkownika określonej aplikacji lub rozszerzenia. diff --git a/files/pl/conflicting/learn/css/css_layout/index.html b/files/pl/conflicting/learn/css/css_layout/index.html index d532771ddc..d60206b76e 100644 --- a/files/pl/conflicting/learn/css/css_layout/index.html +++ b/files/pl/conflicting/learn/css/css_layout/index.html @@ -1,10 +1,11 @@ --- title: Układ -slug: Web/CSS/Na_początek/Układ +slug: conflicting/Learn/CSS/CSS_layout tags: - - 'CSS:Na_początek' + - CSS:Na_początek translation_of: Learn/CSS/CSS_layout translation_of_original: Web/Guide/CSS/Getting_started/Layout +original_slug: Web/CSS/Na_początek/Układ ---

Ta strona opisuje kilka sposobów na modyfikację układu dokumentu. diff --git a/files/pl/conflicting/learn/css/first_steps/how_css_works/index.html b/files/pl/conflicting/learn/css/first_steps/how_css_works/index.html index 8ccbd65011..d0898cdca4 100644 --- a/files/pl/conflicting/learn/css/first_steps/how_css_works/index.html +++ b/files/pl/conflicting/learn/css/first_steps/how_css_works/index.html @@ -1,10 +1,11 @@ --- title: Jak działa CSS -slug: Web/CSS/Na_początek/Jak_działa_CSS +slug: conflicting/Learn/CSS/First_steps/How_CSS_works tags: - - 'CSS:Na_początek' + - CSS:Na_początek translation_of: Learn/CSS/First_steps/How_CSS_works translation_of_original: Web/Guide/CSS/Getting_started/How_CSS_works +original_slug: Web/CSS/Na_początek/Jak_działa_CSS ---

Ta strona wyjaśnia, jak działa CSS w przeglądarce. diff --git a/files/pl/conflicting/learn/css/first_steps/how_css_works_21be2ff13a08a8866d772c3a5e975193/index.html b/files/pl/conflicting/learn/css/first_steps/how_css_works_21be2ff13a08a8866d772c3a5e975193/index.html index 97c8144628..649013cfaa 100644 --- a/files/pl/conflicting/learn/css/first_steps/how_css_works_21be2ff13a08a8866d772c3a5e975193/index.html +++ b/files/pl/conflicting/learn/css/first_steps/how_css_works_21be2ff13a08a8866d772c3a5e975193/index.html @@ -1,10 +1,12 @@ --- title: Po co używać CSS -slug: Web/CSS/Na_początek/Po_co_używać_CSS +slug: >- + conflicting/Learn/CSS/First_steps/How_CSS_works_21be2ff13a08a8866d772c3a5e975193 tags: - - 'CSS:Na_początek' + - CSS:Na_początek translation_of: Learn/CSS/First_steps/How_CSS_works translation_of_original: Web/Guide/CSS/Getting_started/Why_use_CSS +original_slug: Web/CSS/Na_początek/Po_co_używać_CSS ---

Ta strona tłumaczy, do czego dokumenty wykorzystują CSS. diff --git a/files/pl/conflicting/learn/html/introduction_to_html/getting_started/index.html b/files/pl/conflicting/learn/html/introduction_to_html/getting_started/index.html index 336a21b7f6..5f0be720e5 100644 --- a/files/pl/conflicting/learn/html/introduction_to_html/getting_started/index.html +++ b/files/pl/conflicting/learn/html/introduction_to_html/getting_started/index.html @@ -1,11 +1,12 @@ --- title: Znaczenie poprawnego komentowania -slug: Web/HTML/Znaczenie_poprawnego_komentowania +slug: conflicting/Learn/HTML/Introduction_to_HTML/Getting_started tags: - HTML - Wszystkie_kategorie translation_of: Learn/HTML/Introduction_to_HTML/Getting_started#HTML_comments translation_of_original: Web/Guide/HTML/The_Importance_of_Correct_HTML_Commenting +original_slug: Web/HTML/Znaczenie_poprawnego_komentowania ---

 

Znaczenie poprawnego komentowania

diff --git a/files/pl/conflicting/learn/javascript/objects/index.html b/files/pl/conflicting/learn/javascript/objects/index.html index cb26414814..eecd7b4e8a 100644 --- a/files/pl/conflicting/learn/javascript/objects/index.html +++ b/files/pl/conflicting/learn/javascript/objects/index.html @@ -1,8 +1,9 @@ --- title: Wprowadzenie do programowania obiektowego w języku JavaScript -slug: Web/JavaScript/Wprowadzenie_do_programowania_obiektowego_w_jezyku_JavaScript +slug: conflicting/Learn/JavaScript/Objects translation_of: Learn/JavaScript/Objects translation_of_original: Web/JavaScript/Introduction_to_Object-Oriented_JavaScript +original_slug: Web/JavaScript/Wprowadzenie_do_programowania_obiektowego_w_jezyku_JavaScript ---

JavaScript jest zorientowany obiektowo do szpiku kości dzięki potężnym, elastycznym możliwościom realizacji OOP. Ten artykuł zawiera wprowadzenie do programowania obiektowego (ogółem), analizuje model obiektowy w JavaScript i w końcu demonstruje aspekty programowania obiektowego w JavaScript.

diff --git a/files/pl/conflicting/mozilla/add-ons/index.html b/files/pl/conflicting/mozilla/add-ons/index.html index fc05606e60..f65bb1dd54 100644 --- a/files/pl/conflicting/mozilla/add-ons/index.html +++ b/files/pl/conflicting/mozilla/add-ons/index.html @@ -1,11 +1,12 @@ --- title: Tworzymy rozszerzenie -slug: Tworzymy_rozszerzenie +slug: conflicting/Mozilla/Add-ons tags: - Dodatki - Rozszerzenia translation_of: Mozilla/Add-ons translation_of_original: Building_an_Extension +original_slug: Tworzymy_rozszerzenie ---

Wprowadzenie

diff --git a/files/pl/conflicting/tools/performance/index.html b/files/pl/conflicting/tools/performance/index.html index 9b625dc613..680530d191 100644 --- a/files/pl/conflicting/tools/performance/index.html +++ b/files/pl/conflicting/tools/performance/index.html @@ -1,8 +1,9 @@ --- title: JavaScript Profiler -slug: Narzędzia/Profiler +slug: conflicting/Tools/Performance translation_of: Tools/Performance translation_of_original: Tools/Profiler +original_slug: Narzędzia/Profiler ---

Use the Profiler tool to find bottlenecks in your JavaScript code. The Profiler periodically samples the current JavaScript call stack and compiles statistics about the samples.

You can launch the Profiler by selecting "Profiler" from the "Web Developer" menu. You'll find the "Web Developer" menu under the "Tools" menu on Linux and OS X, and directly under the "Firefox" menu on Windows.

diff --git a/files/pl/conflicting/web/api/document/hasfocus/index.html b/files/pl/conflicting/web/api/document/hasfocus/index.html index de7af2ddfc..39a8ae5e56 100644 --- a/files/pl/conflicting/web/api/document/hasfocus/index.html +++ b/files/pl/conflicting/web/api/document/hasfocus/index.html @@ -1,6 +1,6 @@ --- title: Zarządzanie fokusem w HTML -slug: Web/HTML/Zarządzanie_fokusem_w_HTML +slug: conflicting/Web/API/Document/hasFocus tags: - DOM - Firefox 3 @@ -8,6 +8,7 @@ tags: - Wszystkie_kategorie translation_of: Web/API/Document/hasFocus translation_of_original: Web/HTML/Focus_management_in_HTML +original_slug: Web/HTML/Zarządzanie_fokusem_w_HTML ---

{{ Fx_minversion_header(3) }} {{ Draft() }} diff --git a/files/pl/conflicting/web/api/document_object_model/index.html b/files/pl/conflicting/web/api/document_object_model/index.html index 046ce870ca..23866fd108 100644 --- a/files/pl/conflicting/web/api/document_object_model/index.html +++ b/files/pl/conflicting/web/api/document_object_model/index.html @@ -1,6 +1,6 @@ --- title: Przedmowa -slug: Dokumentacja_Gecko_DOM/Przedmowa +slug: conflicting/Web/API/Document_Object_Model tags: - DOM - Dokumentacja_Gecko_DOM @@ -8,6 +8,7 @@ tags: - Wszystkie_kategorie translation_of: Web/API/Document_Object_Model translation_of_original: Web/API/Document_Object_Model/Preface +original_slug: Dokumentacja_Gecko_DOM/Przedmowa ---

{{ ApiRef() }}

O dokumentacji

diff --git a/files/pl/conflicting/web/api/document_object_model_7d961b8030c6099ee907f4f4b5fe6b3d/index.html b/files/pl/conflicting/web/api/document_object_model_7d961b8030c6099ee907f4f4b5fe6b3d/index.html index 052d86acc3..01b4e353ad 100644 --- a/files/pl/conflicting/web/api/document_object_model_7d961b8030c6099ee907f4f4b5fe6b3d/index.html +++ b/files/pl/conflicting/web/api/document_object_model_7d961b8030c6099ee907f4f4b5fe6b3d/index.html @@ -1,11 +1,12 @@ --- title: DOM -slug: DOM +slug: conflicting/Web/API/Document_Object_Model_7d961b8030c6099ee907f4f4b5fe6b3d tags: - DOM - Wszystkie_kategorie translation_of: Web/API/Document_Object_Model translation_of_original: DOM +original_slug: DOM ---
Użycie W3C DOM poziom 1
diff --git a/files/pl/conflicting/web/api/document_object_model_e07446e4017cbd3df6b1d4405d407501/index.html b/files/pl/conflicting/web/api/document_object_model_e07446e4017cbd3df6b1d4405d407501/index.html index 4cd0ac287c..3accab3cc2 100644 --- a/files/pl/conflicting/web/api/document_object_model_e07446e4017cbd3df6b1d4405d407501/index.html +++ b/files/pl/conflicting/web/api/document_object_model_e07446e4017cbd3df6b1d4405d407501/index.html @@ -1,11 +1,12 @@ --- title: O modelu obiektowym dokumentu -slug: O_modelu_obiektowym_dokumentu +slug: conflicting/Web/API/Document_Object_Model_e07446e4017cbd3df6b1d4405d407501 tags: - DOM - Wszystkie_kategorie translation_of: Web/API/Document_Object_Model translation_of_original: DOM/About_the_Document_Object_Model +original_slug: O_modelu_obiektowym_dokumentu ---

 

Czym jest DOM?

diff --git a/files/pl/conflicting/web/api/index.html b/files/pl/conflicting/web/api/index.html index 3923721e2a..128a20a2dd 100644 --- a/files/pl/conflicting/web/api/index.html +++ b/files/pl/conflicting/web/api/index.html @@ -1,6 +1,6 @@ --- title: element.name -slug: Web/API/Element/name +slug: conflicting/Web/API tags: - DOM - Dokumentacja_Gecko_DOM @@ -8,6 +8,7 @@ tags: - Wszystkie_kategorie translation_of: Web/API translation_of_original: Web/API/Element/name +original_slug: Web/API/Element/name ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/conflicting/web/api/node/firstchild/index.html b/files/pl/conflicting/web/api/node/firstchild/index.html index f53cd74778..defc694762 100644 --- a/files/pl/conflicting/web/api/node/firstchild/index.html +++ b/files/pl/conflicting/web/api/node/firstchild/index.html @@ -1,6 +1,6 @@ --- title: document.firstChild -slug: Web/API/Document/firstChild +slug: conflicting/Web/API/Node/firstChild tags: - DOM - Dokumentacja_Gecko_DOM @@ -8,6 +8,7 @@ tags: - Wszystkie_kategorie translation_of: Web/API/Node/firstChild translation_of_original: Web/API/document.firstChild +original_slug: Web/API/Document/firstChild ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/conflicting/web/api/node/namespaceuri/index.html b/files/pl/conflicting/web/api/node/namespaceuri/index.html index 51ad1e71c0..5cd6455b89 100644 --- a/files/pl/conflicting/web/api/node/namespaceuri/index.html +++ b/files/pl/conflicting/web/api/node/namespaceuri/index.html @@ -1,6 +1,6 @@ --- title: document.namespaceURI -slug: Web/API/Document/namespaceURI +slug: conflicting/Web/API/Node/namespaceURI tags: - DOM - Dokumentacja_Gecko_DOM @@ -8,6 +8,7 @@ tags: - Wszystkie_kategorie translation_of: Web/API/Node/namespaceURI translation_of_original: Web/API/Document/namespaceURI +original_slug: Web/API/Document/namespaceURI ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/conflicting/web/css/css_basic_user_interface/using_url_values_for_the_cursor_property/index.html b/files/pl/conflicting/web/css/css_basic_user_interface/using_url_values_for_the_cursor_property/index.html index 0cb39a7246..0f245caafb 100644 --- a/files/pl/conflicting/web/css/css_basic_user_interface/using_url_values_for_the_cursor_property/index.html +++ b/files/pl/conflicting/web/css/css_basic_user_interface/using_url_values_for_the_cursor_property/index.html @@ -1,11 +1,13 @@ --- title: Podaj Dłoń 'kursorowi' -slug: Podaj_Dłoń_'kursorowi' +slug: >- + conflicting/Web/CSS/CSS_Basic_User_Interface/Using_URL_values_for_the_cursor_property tags: - CSS - Wszystkie_kategorie translation_of: Web/CSS/CSS_Basic_User_Interface/Using_URL_values_for_the_cursor_property translation_of_original: Giving_'cursor'_a_Hand +original_slug: Podaj_Dłoń_'kursorowi' ---

 

Summary: Netscape 6 and Mozilla support cursor quite nicely, but that's not true of some other browsers. Happily, there's a fix. Find out how to get a hand from multiple browsers when you use this property. Wielu programistów pytało kiedy Mozilla i Netscape 6+ planuje zaimplementować obsługę własności cursor. Są oni zazwyczaj zaskoczeni odkrywając, że obie przeglądarki już od dawna wspierają ten standard. Obsługa jest oparta na zatwierdzonej specyfikacji W3C dla CSS2, w odróżnieniu od dodawania własnych pomysłów.

diff --git a/files/pl/conflicting/web/css/index.html b/files/pl/conflicting/web/css/index.html index f124f74fd7..865c5f60a1 100644 --- a/files/pl/conflicting/web/css/index.html +++ b/files/pl/conflicting/web/css/index.html @@ -1,11 +1,12 @@ --- title: Inne zasoby -slug: Web/CSS/Inne_zasoby +slug: conflicting/Web/CSS tags: - CSS - Wszystkie_kategorie translation_of: Web/CSS translation_of_original: Web/CSS/Other_Resources +original_slug: Web/CSS/Inne_zasoby ---

diff --git a/files/pl/conflicting/web/guide/index.html b/files/pl/conflicting/web/guide/index.html index cee79c572b..bb717e468d 100644 --- a/files/pl/conflicting/web/guide/index.html +++ b/files/pl/conflicting/web/guide/index.html @@ -1,11 +1,12 @@ --- title: Programowanie WWW -slug: Programowanie_WWW +slug: conflicting/Web/Guide tags: - Programowanie_WWW - Wszystkie_kategorie translation_of: Web/Guide translation_of_original: Web_Development +original_slug: Programowanie_WWW ---

diff --git a/files/pl/conflicting/web/html/global_attributes/spellcheck/index.html b/files/pl/conflicting/web/html/global_attributes/spellcheck/index.html index ee13232227..7de8cfbbdf 100644 --- a/files/pl/conflicting/web/html/global_attributes/spellcheck/index.html +++ b/files/pl/conflicting/web/html/global_attributes/spellcheck/index.html @@ -1,8 +1,9 @@ --- title: Kontrola sprawdzania pisowni w formularzach HTML -slug: Web/HTML/Kontrola_sprawdzania_pisowni_w_formularzach_HTML +slug: conflicting/Web/HTML/Global_attributes/spellcheck translation_of: Web/HTML/Global_attributes/spellcheck translation_of_original: Web/HTML/Controlling_spell_checking_in_HTML_forms +original_slug: Web/HTML/Kontrola_sprawdzania_pisowni_w_formularzach_HTML ---

 

Firefox 2 wprowadza wsparcie dla sprawdzania pisowni w polach i obszarach tekstowych w formularzach. Użytkownik może, używając interfejsu about:config, włączyć lub wyłączyć sprawdzanie pisowni oraz czy sprawdzać zawartość zarówno obszarów tekstowych jak również pól, czy tylko obszarów.

diff --git a/files/pl/conflicting/web/html/index.html b/files/pl/conflicting/web/html/index.html index 2bc10ea70b..dd089c1e10 100644 --- a/files/pl/conflicting/web/html/index.html +++ b/files/pl/conflicting/web/html/index.html @@ -1,13 +1,14 @@ --- title: 'HTML: Hipertekstowy Język Znaczników' -slug: Web/HTML(PL) +slug: conflicting/Web/HTML tags: - HTML - HTML5 - Landing - Web - - 'l10n:priority' + - l10n:priority translation_of: Web/HTML +original_slug: Web/HTML(PL) ---
{{HTMLSidebar}}
diff --git a/files/pl/conflicting/web/javascript/guide/control_flow_and_error_handling/index.html b/files/pl/conflicting/web/javascript/guide/control_flow_and_error_handling/index.html index c1da46484b..716dd9896c 100644 --- a/files/pl/conflicting/web/javascript/guide/control_flow_and_error_handling/index.html +++ b/files/pl/conflicting/web/javascript/guide/control_flow_and_error_handling/index.html @@ -1,12 +1,13 @@ --- title: Blok instrukcji -slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Blok_instrukcji +slug: conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling tags: - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Control_flow_and_error_handling translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Block_Statement +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Blok_instrukcji ---

diff --git a/files/pl/conflicting/web/javascript/guide/control_flow_and_error_handling_1a7d2f7d8b159dce08254c88948bc74a/index.html b/files/pl/conflicting/web/javascript/guide/control_flow_and_error_handling_1a7d2f7d8b159dce08254c88948bc74a/index.html index 94a07dc3f0..824fa7a16e 100644 --- a/files/pl/conflicting/web/javascript/guide/control_flow_and_error_handling_1a7d2f7d8b159dce08254c88948bc74a/index.html +++ b/files/pl/conflicting/web/javascript/guide/control_flow_and_error_handling_1a7d2f7d8b159dce08254c88948bc74a/index.html @@ -1,12 +1,14 @@ --- title: Instrukcje pętli slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli + conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_1a7d2f7d8b159dce08254c88948bc74a tags: - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Control_flow_and_error_handling translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Loop_Statements +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli ---

diff --git a/files/pl/conflicting/web/javascript/guide/control_flow_and_error_handling_8f58cc44e17308f295c610e8acad2d99/index.html b/files/pl/conflicting/web/javascript/guide/control_flow_and_error_handling_8f58cc44e17308f295c610e8acad2d99/index.html index ce106856b6..be5553f9c2 100644 --- a/files/pl/conflicting/web/javascript/guide/control_flow_and_error_handling_8f58cc44e17308f295c610e8acad2d99/index.html +++ b/files/pl/conflicting/web/javascript/guide/control_flow_and_error_handling_8f58cc44e17308f295c610e8acad2d99/index.html @@ -1,12 +1,14 @@ --- title: Instrukcje warunkowe slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_warunkowe + conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_8f58cc44e17308f295c610e8acad2d99 tags: - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Control_flow_and_error_handling translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Conditional_Statements +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_warunkowe ---

diff --git a/files/pl/conflicting/web/javascript/guide/control_flow_and_error_handling_b955d4d09ed7fa71268639ed589f8702/index.html b/files/pl/conflicting/web/javascript/guide/control_flow_and_error_handling_b955d4d09ed7fa71268639ed589f8702/index.html index b19c7ddd3f..a3a3294854 100644 --- a/files/pl/conflicting/web/javascript/guide/control_flow_and_error_handling_b955d4d09ed7fa71268639ed589f8702/index.html +++ b/files/pl/conflicting/web/javascript/guide/control_flow_and_error_handling_b955d4d09ed7fa71268639ed589f8702/index.html @@ -1,12 +1,14 @@ --- title: Instrukcje komentarzy slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_komentarzy + conflicting/Web/JavaScript/Guide/Control_flow_and_error_handling_b955d4d09ed7fa71268639ed589f8702 tags: - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Control_flow_and_error_handling translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Comments +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_komentarzy ---

diff --git a/files/pl/conflicting/web/javascript/guide/details_of_the_object_model/index.html b/files/pl/conflicting/web/javascript/guide/details_of_the_object_model/index.html index 493a6b4156..07c6cbccb9 100644 --- a/files/pl/conflicting/web/javascript/guide/details_of_the_object_model/index.html +++ b/files/pl/conflicting/web/javascript/guide/details_of_the_object_model/index.html @@ -1,7 +1,6 @@ --- title: Wartości lokalne vs. dziedziczone -slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności/Wartości_lokalne_vs._dziedziczone +slug: conflicting/Web/JavaScript/Guide/Details_of_the_Object_Model tags: - JavaScript - Przewodnik_JavaScript @@ -9,6 +8,8 @@ tags: translation_of: Web/JavaScript/Guide/Details_of_the_Object_Model translation_of_original: >- Web/JavaScript/Guide/Obsolete_Pages/Property_Inheritance_Revisited/Local_versus_Inherited_Values +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności/Wartości_lokalne_vs._dziedziczone ---

diff --git a/files/pl/conflicting/web/javascript/guide/expressions_and_operators/index.html b/files/pl/conflicting/web/javascript/guide/expressions_and_operators/index.html index 1df22570cf..f728b8bdd2 100644 --- a/files/pl/conflicting/web/javascript/guide/expressions_and_operators/index.html +++ b/files/pl/conflicting/web/javascript/guide/expressions_and_operators/index.html @@ -1,13 +1,14 @@ --- title: Operacje na łańcuchach -slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operacje_na_łańcuchach +slug: conflicting/Web/JavaScript/Guide/Expressions_and_Operators tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Expressions_and_Operators translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Operators/String_Operators +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operacje_na_łańcuchach ---

diff --git a/files/pl/conflicting/web/javascript/guide/expressions_and_operators_173cc0f9e32f34b0483b45a29fa462e4/index.html b/files/pl/conflicting/web/javascript/guide/expressions_and_operators_173cc0f9e32f34b0483b45a29fa462e4/index.html index 8b6b2c3751..2c01e6452f 100644 --- a/files/pl/conflicting/web/javascript/guide/expressions_and_operators_173cc0f9e32f34b0483b45a29fa462e4/index.html +++ b/files/pl/conflicting/web/javascript/guide/expressions_and_operators_173cc0f9e32f34b0483b45a29fa462e4/index.html @@ -1,13 +1,15 @@ --- title: Operatory logiczne slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_logiczne + conflicting/Web/JavaScript/Guide/Expressions_and_Operators_173cc0f9e32f34b0483b45a29fa462e4 tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Expressions_and_Operators translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Operators/Logical_Operators +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_logiczne ---

diff --git a/files/pl/conflicting/web/javascript/guide/expressions_and_operators_510ae1f584cbdb5ca760b545f90c72ed/index.html b/files/pl/conflicting/web/javascript/guide/expressions_and_operators_510ae1f584cbdb5ca760b545f90c72ed/index.html index 304b64d5d6..2f93e048e3 100644 --- a/files/pl/conflicting/web/javascript/guide/expressions_and_operators_510ae1f584cbdb5ca760b545f90c72ed/index.html +++ b/files/pl/conflicting/web/javascript/guide/expressions_and_operators_510ae1f584cbdb5ca760b545f90c72ed/index.html @@ -1,13 +1,15 @@ --- title: Operatory porównania slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_porównania + conflicting/Web/JavaScript/Guide/Expressions_and_Operators_510ae1f584cbdb5ca760b545f90c72ed tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Expressions_and_Operators translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Operators/Comparison_Operators +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_porównania ---

diff --git a/files/pl/conflicting/web/javascript/guide/expressions_and_operators_605f6491d97a62449200a9401cba82c7/index.html b/files/pl/conflicting/web/javascript/guide/expressions_and_operators_605f6491d97a62449200a9401cba82c7/index.html index e7e7099052..d2ae8e5b2e 100644 --- a/files/pl/conflicting/web/javascript/guide/expressions_and_operators_605f6491d97a62449200a9401cba82c7/index.html +++ b/files/pl/conflicting/web/javascript/guide/expressions_and_operators_605f6491d97a62449200a9401cba82c7/index.html @@ -1,12 +1,14 @@ --- title: Operatory arytmetyczne slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_arytmetyczne + conflicting/Web/JavaScript/Guide/Expressions_and_Operators_605f6491d97a62449200a9401cba82c7 tags: - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Expressions_and_Operators translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Operators/Arithmetic_Operators +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_arytmetyczne ---

diff --git a/files/pl/conflicting/web/javascript/guide/expressions_and_operators_a3ce80967ffc4f60314caa4b05ec9c47/index.html b/files/pl/conflicting/web/javascript/guide/expressions_and_operators_a3ce80967ffc4f60314caa4b05ec9c47/index.html index 8ce2683d3f..6d25e46eda 100644 --- a/files/pl/conflicting/web/javascript/guide/expressions_and_operators_a3ce80967ffc4f60314caa4b05ec9c47/index.html +++ b/files/pl/conflicting/web/javascript/guide/expressions_and_operators_a3ce80967ffc4f60314caa4b05ec9c47/index.html @@ -1,13 +1,15 @@ --- title: Operatory specjalne slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_specjalne + conflicting/Web/JavaScript/Guide/Expressions_and_Operators_a3ce80967ffc4f60314caa4b05ec9c47 tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Expressions_and_Operators translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Operators/Special_Operators +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_specjalne ---

diff --git a/files/pl/conflicting/web/javascript/guide/expressions_and_operators_c278b67ddd602343b8c21711abc1b17c/index.html b/files/pl/conflicting/web/javascript/guide/expressions_and_operators_c278b67ddd602343b8c21711abc1b17c/index.html index b3d0303eba..93b303df5f 100644 --- a/files/pl/conflicting/web/javascript/guide/expressions_and_operators_c278b67ddd602343b8c21711abc1b17c/index.html +++ b/files/pl/conflicting/web/javascript/guide/expressions_and_operators_c278b67ddd602343b8c21711abc1b17c/index.html @@ -1,13 +1,15 @@ --- title: Wyrażenia slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wyrażenia + conflicting/Web/JavaScript/Guide/Expressions_and_Operators_c278b67ddd602343b8c21711abc1b17c tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Expressions_and_Operators translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Expressions +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wyrażenia ---

diff --git a/files/pl/conflicting/web/javascript/guide/functions/index.html b/files/pl/conflicting/web/javascript/guide/functions/index.html index 7a3fc26637..a046c90a8d 100644 --- a/files/pl/conflicting/web/javascript/guide/functions/index.html +++ b/files/pl/conflicting/web/javascript/guide/functions/index.html @@ -1,13 +1,14 @@ --- title: Definiowanie funkcji -slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Definiowanie_funkcji +slug: conflicting/Web/JavaScript/Guide/Functions tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Functions translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Defining_Functions +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Definiowanie_funkcji ---

Definiowanie funkcji

Na definicję funkcji składają się słowa:

diff --git a/files/pl/conflicting/web/javascript/guide/functions_14ccabf533660cb9d0794a5a93287159/index.html b/files/pl/conflicting/web/javascript/guide/functions_14ccabf533660cb9d0794a5a93287159/index.html index 30a279079a..81e520ba0a 100644 --- a/files/pl/conflicting/web/javascript/guide/functions_14ccabf533660cb9d0794a5a93287159/index.html +++ b/files/pl/conflicting/web/javascript/guide/functions_14ccabf533660cb9d0794a5a93287159/index.html @@ -1,7 +1,6 @@ --- title: Funkcje escape i unescape -slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_escape_i_unescape +slug: conflicting/Web/JavaScript/Guide/Functions_14ccabf533660cb9d0794a5a93287159 tags: - JavaScript - Przewodnik_JavaScript @@ -9,6 +8,8 @@ tags: translation_of: Web/JavaScript/Guide/Functions translation_of_original: >- Web/JavaScript/Guide/Obsolete_Pages/Predefined_Functions/escape_and_unescape_Functions +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_escape_i_unescape ---

diff --git a/files/pl/conflicting/web/javascript/guide/functions_2af756c37808c2f8e09add6cc9618178/index.html b/files/pl/conflicting/web/javascript/guide/functions_2af756c37808c2f8e09add6cc9618178/index.html index 1f5191c526..c730a9d93e 100644 --- a/files/pl/conflicting/web/javascript/guide/functions_2af756c37808c2f8e09add6cc9618178/index.html +++ b/files/pl/conflicting/web/javascript/guide/functions_2af756c37808c2f8e09add6cc9618178/index.html @@ -1,12 +1,13 @@ --- title: Funkcja isFinite -slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isFinite +slug: conflicting/Web/JavaScript/Guide/Functions_2af756c37808c2f8e09add6cc9618178 tags: - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Functions translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Predefined_Functions/isFinite_Function +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isFinite ---

diff --git a/files/pl/conflicting/web/javascript/guide/functions_403e991db3105a03e0afc1a3cc821a01/index.html b/files/pl/conflicting/web/javascript/guide/functions_403e991db3105a03e0afc1a3cc821a01/index.html index 8a9cd42575..87e4f4de78 100644 --- a/files/pl/conflicting/web/javascript/guide/functions_403e991db3105a03e0afc1a3cc821a01/index.html +++ b/files/pl/conflicting/web/javascript/guide/functions_403e991db3105a03e0afc1a3cc821a01/index.html @@ -1,13 +1,14 @@ --- title: Wywołanie funkcji -slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wywołanie_funkcji +slug: conflicting/Web/JavaScript/Guide/Functions_403e991db3105a03e0afc1a3cc821a01 tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Functions translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Calling_Functions +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wywołanie_funkcji ---

 

diff --git a/files/pl/conflicting/web/javascript/guide/functions_74f4afa40d626fed3cf9277e30d6d211/index.html b/files/pl/conflicting/web/javascript/guide/functions_74f4afa40d626fed3cf9277e30d6d211/index.html index c474f760c8..b97d8fcb31 100644 --- a/files/pl/conflicting/web/javascript/guide/functions_74f4afa40d626fed3cf9277e30d6d211/index.html +++ b/files/pl/conflicting/web/javascript/guide/functions_74f4afa40d626fed3cf9277e30d6d211/index.html @@ -1,13 +1,14 @@ --- title: Funkcje Number i String -slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_Number_i_String +slug: conflicting/Web/JavaScript/Guide/Functions_74f4afa40d626fed3cf9277e30d6d211 tags: - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Functions translation_of_original: >- Web/JavaScript/Guide/Obsolete_Pages/Predefined_Functions/Number_and_String_Functions +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_Number_i_String ---

diff --git a/files/pl/conflicting/web/javascript/guide/functions_8b84da88e673c0774c4f504a9be67268/index.html b/files/pl/conflicting/web/javascript/guide/functions_8b84da88e673c0774c4f504a9be67268/index.html index a4aa3da4be..07eff36069 100644 --- a/files/pl/conflicting/web/javascript/guide/functions_8b84da88e673c0774c4f504a9be67268/index.html +++ b/files/pl/conflicting/web/javascript/guide/functions_8b84da88e673c0774c4f504a9be67268/index.html @@ -1,12 +1,13 @@ --- title: Funkcja isNaN -slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isNaN +slug: conflicting/Web/JavaScript/Guide/Functions_8b84da88e673c0774c4f504a9be67268 tags: - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Functions translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Predefined_Functions/isNaN_Function +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_isNaN ---

diff --git a/files/pl/conflicting/web/javascript/guide/functions_90ea47f6d07003af2efc0a1756da41e2/index.html b/files/pl/conflicting/web/javascript/guide/functions_90ea47f6d07003af2efc0a1756da41e2/index.html index dc80cd2a98..ed9f01a10c 100644 --- a/files/pl/conflicting/web/javascript/guide/functions_90ea47f6d07003af2efc0a1756da41e2/index.html +++ b/files/pl/conflicting/web/javascript/guide/functions_90ea47f6d07003af2efc0a1756da41e2/index.html @@ -1,13 +1,14 @@ --- title: Funkcja eval -slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_eval +slug: conflicting/Web/JavaScript/Guide/Functions_90ea47f6d07003af2efc0a1756da41e2 tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Functions translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Predefined_Functions/eval_Function +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcja_eval ---

diff --git a/files/pl/conflicting/web/javascript/guide/functions_915be6bbaf2578afefb6927c899d5f3d/index.html b/files/pl/conflicting/web/javascript/guide/functions_915be6bbaf2578afefb6927c899d5f3d/index.html index 2badc2fb2d..043598c1c3 100644 --- a/files/pl/conflicting/web/javascript/guide/functions_915be6bbaf2578afefb6927c899d5f3d/index.html +++ b/files/pl/conflicting/web/javascript/guide/functions_915be6bbaf2578afefb6927c899d5f3d/index.html @@ -1,7 +1,6 @@ --- title: Funkcje parseInt i parseFloat -slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_parseInt_i_parseFloat +slug: conflicting/Web/JavaScript/Guide/Functions_915be6bbaf2578afefb6927c899d5f3d tags: - JavaScript - Przewodnik_JavaScript @@ -9,6 +8,8 @@ tags: translation_of: Web/JavaScript/Guide/Functions translation_of_original: >- Web/JavaScript/Guide/Obsolete_Pages/Predefined_Functions/parseInt_and_parseFloat_Functions +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane/Funkcje_parseInt_i_parseFloat ---

diff --git a/files/pl/conflicting/web/javascript/guide/functions_b0ff3e89089de1f0a22029bbde807073/index.html b/files/pl/conflicting/web/javascript/guide/functions_b0ff3e89089de1f0a22029bbde807073/index.html index 2048814532..c27ddd3ca9 100644 --- a/files/pl/conflicting/web/javascript/guide/functions_b0ff3e89089de1f0a22029bbde807073/index.html +++ b/files/pl/conflicting/web/javascript/guide/functions_b0ff3e89089de1f0a22029bbde807073/index.html @@ -1,13 +1,14 @@ --- title: Funkcje predefiniowane -slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane +slug: conflicting/Web/JavaScript/Guide/Functions_b0ff3e89089de1f0a22029bbde807073 tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Functions translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Predefined_Functions +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Funkcje_predefiniowane ---

diff --git a/files/pl/conflicting/web/javascript/guide/grammar_and_types/index.html b/files/pl/conflicting/web/javascript/guide/grammar_and_types/index.html index 500db9cae6..b43979fc6d 100644 --- a/files/pl/conflicting/web/javascript/guide/grammar_and_types/index.html +++ b/files/pl/conflicting/web/javascript/guide/grammar_and_types/index.html @@ -1,13 +1,14 @@ --- title: Literały -slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Literały +slug: conflicting/Web/JavaScript/Guide/Grammar_and_types tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Grammar_and_types translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Literals +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Literały ---

diff --git a/files/pl/conflicting/web/javascript/guide/grammar_and_types_0f7acbcd2fa8bfb327628638da4e5166/index.html b/files/pl/conflicting/web/javascript/guide/grammar_and_types_0f7acbcd2fa8bfb327628638da4e5166/index.html index 2ab37e779b..ffa7741a78 100644 --- a/files/pl/conflicting/web/javascript/guide/grammar_and_types_0f7acbcd2fa8bfb327628638da4e5166/index.html +++ b/files/pl/conflicting/web/javascript/guide/grammar_and_types_0f7acbcd2fa8bfb327628638da4e5166/index.html @@ -1,13 +1,15 @@ --- title: Unicode slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Unicode + conflicting/Web/JavaScript/Guide/Grammar_and_types_0f7acbcd2fa8bfb327628638da4e5166 tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Grammar_and_types translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Unicode +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Unicode ---

diff --git a/files/pl/conflicting/web/javascript/guide/grammar_and_types_14ae50e0032f9c0db4fe484288797da6/index.html b/files/pl/conflicting/web/javascript/guide/grammar_and_types_14ae50e0032f9c0db4fe484288797da6/index.html index 3aad9ebd60..89adf19fbe 100644 --- a/files/pl/conflicting/web/javascript/guide/grammar_and_types_14ae50e0032f9c0db4fe484288797da6/index.html +++ b/files/pl/conflicting/web/javascript/guide/grammar_and_types_14ae50e0032f9c0db4fe484288797da6/index.html @@ -1,13 +1,15 @@ --- title: Zmienne slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zmienne + conflicting/Web/JavaScript/Guide/Grammar_and_types_14ae50e0032f9c0db4fe484288797da6 tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Grammar_and_types translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Variables +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zmienne ---

 

Trzeba całość wyczyścić i uzgodnić z wersją EN: zmiany 06-2006

diff --git a/files/pl/conflicting/web/javascript/guide/grammar_and_types_1d6d13b355b9483ad46cf81082b7c261/index.html b/files/pl/conflicting/web/javascript/guide/grammar_and_types_1d6d13b355b9483ad46cf81082b7c261/index.html index 7ee3aa056c..3831d177f8 100644 --- a/files/pl/conflicting/web/javascript/guide/grammar_and_types_1d6d13b355b9483ad46cf81082b7c261/index.html +++ b/files/pl/conflicting/web/javascript/guide/grammar_and_types_1d6d13b355b9483ad46cf81082b7c261/index.html @@ -1,13 +1,15 @@ --- title: Wartości slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wartości + conflicting/Web/JavaScript/Guide/Grammar_and_types_1d6d13b355b9483ad46cf81082b7c261 tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Grammar_and_types translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Values +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Wartości ---

diff --git a/files/pl/conflicting/web/javascript/guide/grammar_and_types_d86447bbdab858af0abf9b17c9ec9dc9/index.html b/files/pl/conflicting/web/javascript/guide/grammar_and_types_d86447bbdab858af0abf9b17c9ec9dc9/index.html index 2629bdaafc..abb2bd1217 100644 --- a/files/pl/conflicting/web/javascript/guide/grammar_and_types_d86447bbdab858af0abf9b17c9ec9dc9/index.html +++ b/files/pl/conflicting/web/javascript/guide/grammar_and_types_d86447bbdab858af0abf9b17c9ec9dc9/index.html @@ -1,12 +1,14 @@ --- title: Stałe -slug: Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Stałe +slug: >- + conflicting/Web/JavaScript/Guide/Grammar_and_types_d86447bbdab858af0abf9b17c9ec9dc9 tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Grammar_and_types translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Constants +original_slug: Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Stałe ---

 

Stałe

diff --git a/files/pl/conflicting/web/javascript/guide/index.html b/files/pl/conflicting/web/javascript/guide/index.html index 8b98a8450f..babb21e738 100644 --- a/files/pl/conflicting/web/javascript/guide/index.html +++ b/files/pl/conflicting/web/javascript/guide/index.html @@ -1,11 +1,12 @@ --- title: Obsolete Pages -slug: Web/JavaScript/Guide/Obsolete_Pages +slug: conflicting/Web/JavaScript/Guide tags: - NeedsTranslation - TopicStub translation_of: Web/JavaScript/Guide translation_of_original: Web/JavaScript/Guide/Obsolete_Pages +original_slug: Web/JavaScript/Guide/Obsolete_Pages ---

This is a list of pages that have been merged into chapters (in alphabetical order):

{{ tree() }}

diff --git a/files/pl/conflicting/web/javascript/guide/introduction/index.html b/files/pl/conflicting/web/javascript/guide/introduction/index.html index 1f54eaca0f..a41519db49 100644 --- a/files/pl/conflicting/web/javascript/guide/introduction/index.html +++ b/files/pl/conflicting/web/javascript/guide/introduction/index.html @@ -1,8 +1,9 @@ --- title: O tym przewodniku -slug: Web/JavaScript/Guide/o_tym_przewodniku +slug: conflicting/Web/JavaScript/Guide/Introduction translation_of: Web/JavaScript/Guide/Introduction translation_of_original: Web/JavaScript/Guide/About +original_slug: Web/JavaScript/Guide/o_tym_przewodniku ---

JavaScript jest międzyplatformowym, zorientowanym obiektowo językiem skryptowym. Poniższy przewodnik tłumaczy wszystko, co powinieneś wiedzieć abyś mógł posługiwać się JavaScriptem.

diff --git a/files/pl/conflicting/web/javascript/guide_1093f218406d2d64ec91bb7a6bda93ce/index.html b/files/pl/conflicting/web/javascript/guide_1093f218406d2d64ec91bb7a6bda93ce/index.html index 7a1b84d5a1..c1dd8a2d4e 100644 --- a/files/pl/conflicting/web/javascript/guide_1093f218406d2d64ec91bb7a6bda93ce/index.html +++ b/files/pl/conflicting/web/javascript/guide_1093f218406d2d64ec91bb7a6bda93ce/index.html @@ -1,13 +1,14 @@ --- title: Obiekty predefiniowane -slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane +slug: conflicting/Web/JavaScript/Guide_1093f218406d2d64ec91bb7a6bda93ce tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Predefined_Core_Objects +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane ---

diff --git a/files/pl/conflicting/web/javascript/guide_a026fc5d05de582c88d39cf9fd37870d/index.html b/files/pl/conflicting/web/javascript/guide_a026fc5d05de582c88d39cf9fd37870d/index.html index 3e5a4b8609..6f3d071e78 100644 --- a/files/pl/conflicting/web/javascript/guide_a026fc5d05de582c88d39cf9fd37870d/index.html +++ b/files/pl/conflicting/web/javascript/guide_a026fc5d05de582c88d39cf9fd37870d/index.html @@ -1,6 +1,6 @@ --- title: Przewodnik po języku JavaScript 1.5 -slug: Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5 +slug: conflicting/Web/JavaScript/Guide_a026fc5d05de582c88d39cf9fd37870d tags: - AJAX - JavaScript @@ -10,6 +10,7 @@ tags: - Wszystkie_kategorie translation_of: Web/JavaScript/Guide translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Table_of_Contents_2.0 +original_slug: Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5 ---

O tym przewodniku

diff --git a/files/pl/conflicting/web/javascript/reference/global_objects/boolean/index.html b/files/pl/conflicting/web/javascript/reference/global_objects/boolean/index.html index 26fe611df4..d736bbcb1f 100644 --- a/files/pl/conflicting/web/javascript/reference/global_objects/boolean/index.html +++ b/files/pl/conflicting/web/javascript/reference/global_objects/boolean/index.html @@ -1,6 +1,6 @@ --- title: Boolean.prototype -slug: Web/JavaScript/Referencje/Obiekty/Boolean/prototype +slug: conflicting/Web/JavaScript/Reference/Global_Objects/Boolean tags: - Dokumentacja_JavaScript - Dokumentacje @@ -9,6 +9,7 @@ tags: - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Boolean translation_of_original: Web/JavaScript/Reference/Global_Objects/Boolean/prototype +original_slug: Web/JavaScript/Referencje/Obiekty/Boolean/prototype ---
{{JSRef}}
diff --git a/files/pl/conflicting/web/javascript/reference/global_objects/date/index.html b/files/pl/conflicting/web/javascript/reference/global_objects/date/index.html index e95fcabc0c..86570633a1 100644 --- a/files/pl/conflicting/web/javascript/reference/global_objects/date/index.html +++ b/files/pl/conflicting/web/javascript/reference/global_objects/date/index.html @@ -1,6 +1,6 @@ --- title: constructor -slug: Web/JavaScript/Referencje/Obiekty/Date/constructor +slug: conflicting/Web/JavaScript/Reference/Global_Objects/Date tags: - Dokumentacja_JavaScript - Dokumentacje @@ -8,6 +8,7 @@ tags: - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Date translation_of_original: Web/JavaScript/Reference/Global_Objects/Date/constructor +original_slug: Web/JavaScript/Referencje/Obiekty/Date/constructor ---

diff --git a/files/pl/conflicting/web/javascript/reference/global_objects/date_73c046d653c590f4914731d078f3b2c5/index.html b/files/pl/conflicting/web/javascript/reference/global_objects/date_73c046d653c590f4914731d078f3b2c5/index.html index 209f7b25a8..ad6c81bce0 100644 --- a/files/pl/conflicting/web/javascript/reference/global_objects/date_73c046d653c590f4914731d078f3b2c5/index.html +++ b/files/pl/conflicting/web/javascript/reference/global_objects/date_73c046d653c590f4914731d078f3b2c5/index.html @@ -1,6 +1,7 @@ --- title: Date.prototype -slug: Web/JavaScript/Referencje/Obiekty/Date/prototype +slug: >- + conflicting/Web/JavaScript/Reference/Global_Objects/Date_73c046d653c590f4914731d078f3b2c5 tags: - Dokumentacja_JavaScript - Dokumentacje @@ -8,6 +9,7 @@ tags: - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Date translation_of_original: Web/JavaScript/Reference/Global_Objects/Date/prototype +original_slug: Web/JavaScript/Referencje/Obiekty/Date/prototype ---

{{JSRef}}

diff --git a/files/pl/conflicting/web/javascript/reference/global_objects/error/index.html b/files/pl/conflicting/web/javascript/reference/global_objects/error/index.html index 9bb3ccbf13..034b1c0fc9 100644 --- a/files/pl/conflicting/web/javascript/reference/global_objects/error/index.html +++ b/files/pl/conflicting/web/javascript/reference/global_objects/error/index.html @@ -1,12 +1,13 @@ --- title: Error.prototype -slug: Web/JavaScript/Referencje/Obiekty/Error/prototype +slug: conflicting/Web/JavaScript/Reference/Global_Objects/Error tags: - Error - JavaScript - Właściwość translation_of: Web/JavaScript/Reference/Global_Objects/Error translation_of_original: Web/JavaScript/Reference/Global_Objects/Error/prototype +original_slug: Web/JavaScript/Referencje/Obiekty/Error/prototype ---
{{JSRef}}
diff --git a/files/pl/conflicting/web/javascript/reference/global_objects/number/index.html b/files/pl/conflicting/web/javascript/reference/global_objects/number/index.html index 11b7dbe2de..c4e66d6674 100644 --- a/files/pl/conflicting/web/javascript/reference/global_objects/number/index.html +++ b/files/pl/conflicting/web/javascript/reference/global_objects/number/index.html @@ -1,6 +1,6 @@ --- title: constructor -slug: Web/JavaScript/Referencje/Obiekty/Number/constructor +slug: conflicting/Web/JavaScript/Reference/Global_Objects/Number tags: - Dokumentacja_JavaScript - Dokumentacje @@ -8,6 +8,7 @@ tags: - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Number translation_of_original: Web/JavaScript/Reference/Global_Objects/Number/constructor +original_slug: Web/JavaScript/Referencje/Obiekty/Number/constructor ---

diff --git a/files/pl/conflicting/web/javascript/reference/global_objects/object/index.html b/files/pl/conflicting/web/javascript/reference/global_objects/object/index.html index 85fbee9f9b..eb43453e16 100644 --- a/files/pl/conflicting/web/javascript/reference/global_objects/object/index.html +++ b/files/pl/conflicting/web/javascript/reference/global_objects/object/index.html @@ -1,6 +1,6 @@ --- title: Object.prototype -slug: Web/JavaScript/Referencje/Obiekty/Object/prototype +slug: conflicting/Web/JavaScript/Reference/Global_Objects/Object tags: - JavaScript - Obiekt @@ -9,6 +9,7 @@ tags: - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Object translation_of_original: Web/JavaScript/Reference/Global_Objects/Object/prototype +original_slug: Web/JavaScript/Referencje/Obiekty/Object/prototype ---

{{JSRef}}

diff --git a/files/pl/conflicting/web/javascript/reference/global_objects/rangeerror/index.html b/files/pl/conflicting/web/javascript/reference/global_objects/rangeerror/index.html index 38c00cc45b..ff970fa335 100644 --- a/files/pl/conflicting/web/javascript/reference/global_objects/rangeerror/index.html +++ b/files/pl/conflicting/web/javascript/reference/global_objects/rangeerror/index.html @@ -1,8 +1,9 @@ --- title: RangeError.prototype -slug: Web/JavaScript/Referencje/Obiekty/RangeError/prototype +slug: conflicting/Web/JavaScript/Reference/Global_Objects/RangeError translation_of: Web/JavaScript/Reference/Global_Objects/RangeError translation_of_original: Web/JavaScript/Reference/Global_Objects/RangeError/prototype +original_slug: Web/JavaScript/Referencje/Obiekty/RangeError/prototype ---
{{JSRef}}
diff --git a/files/pl/conflicting/web/javascript/reference/global_objects/regexp/index.html b/files/pl/conflicting/web/javascript/reference/global_objects/regexp/index.html index 84a0d73ccc..9f89b08978 100644 --- a/files/pl/conflicting/web/javascript/reference/global_objects/regexp/index.html +++ b/files/pl/conflicting/web/javascript/reference/global_objects/regexp/index.html @@ -1,6 +1,6 @@ --- title: RegExp.prototype -slug: Web/JavaScript/Referencje/Obiekty/RegExp/prototype +slug: conflicting/Web/JavaScript/Reference/Global_Objects/RegExp tags: - JavaScript - Property @@ -8,6 +8,7 @@ tags: - RegExp translation_of: Web/JavaScript/Reference/Global_Objects/RegExp translation_of_original: Web/JavaScript/Reference/Global_Objects/RegExp/prototype +original_slug: Web/JavaScript/Referencje/Obiekty/RegExp/prototype ---

{{JSRef}}

diff --git a/files/pl/conflicting/web/javascript/reference/global_objects/string/index.html b/files/pl/conflicting/web/javascript/reference/global_objects/string/index.html index 7785d0b34b..6711b8603c 100644 --- a/files/pl/conflicting/web/javascript/reference/global_objects/string/index.html +++ b/files/pl/conflicting/web/javascript/reference/global_objects/string/index.html @@ -1,6 +1,6 @@ --- title: String.prototype -slug: Web/JavaScript/Referencje/Obiekty/String/prototype +slug: conflicting/Web/JavaScript/Reference/Global_Objects/String tags: - JavaScript - Property @@ -8,6 +8,7 @@ tags: - String translation_of: Web/JavaScript/Reference/Global_Objects/String translation_of_original: Web/JavaScript/Reference/Global_Objects/String/prototype +original_slug: Web/JavaScript/Referencje/Obiekty/String/prototype ---

{{JSRef}}

diff --git a/files/pl/conflicting/web/javascript/reference/lexical_grammar/index.html b/files/pl/conflicting/web/javascript/reference/lexical_grammar/index.html index 38b693de3a..73526b9a19 100644 --- a/files/pl/conflicting/web/javascript/reference/lexical_grammar/index.html +++ b/files/pl/conflicting/web/javascript/reference/lexical_grammar/index.html @@ -1,6 +1,6 @@ --- title: Słowa zarezerwowane -slug: Web/JavaScript/Referencje/Słowa_zarezerwowane +slug: conflicting/Web/JavaScript/Reference/Lexical_grammar tags: - Dokumentacja_JavaScript - Dokumentacje @@ -8,6 +8,7 @@ tags: - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Lexical_grammar#Keywords translation_of_original: Web/JavaScript/Reference/Reserved_Words +original_slug: Web/JavaScript/Referencje/Słowa_zarezerwowane ---

 

Słowa zarezerwowane nie mogą być używane jako nazwy zmiennych, funkcji, metod ani obiektów języka JavaScript. Niektóre z nich są słowami kluczowymi języka JavaScript, inne zarezerwowano do przyszłych zastosowań.

diff --git a/files/pl/conflicting/web/javascript/reference/operators/index.html b/files/pl/conflicting/web/javascript/reference/operators/index.html index 2f4eddc1e9..06c78ff69e 100644 --- a/files/pl/conflicting/web/javascript/reference/operators/index.html +++ b/files/pl/conflicting/web/javascript/reference/operators/index.html @@ -1,11 +1,12 @@ --- title: Operatory bitowe -slug: Web/JavaScript/Referencje/Operatory/Bitwise_Operators +slug: conflicting/Web/JavaScript/Reference/Operators tags: - JavaScript - Operator translation_of: Web/JavaScript/Reference/Operators translation_of_original: Web/JavaScript/Reference/Operators/Bitwise_Operators +original_slug: Web/JavaScript/Referencje/Operatory/Bitwise_Operators ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/conflicting/web/javascript/reference/operators/spread_syntax/index.html b/files/pl/conflicting/web/javascript/reference/operators/spread_syntax/index.html index c8cc1533f8..99eb2d84ce 100644 --- a/files/pl/conflicting/web/javascript/reference/operators/spread_syntax/index.html +++ b/files/pl/conflicting/web/javascript/reference/operators/spread_syntax/index.html @@ -1,6 +1,6 @@ --- title: Spread syntax -slug: Web/JavaScript/Referencje/Operatory/Spread_operator +slug: conflicting/Web/JavaScript/Reference/Operators/Spread_syntax tags: - ECMAScript 2015 - Iterator @@ -8,6 +8,7 @@ tags: - Operator Rozwinięcia translation_of: Web/JavaScript/Reference/Operators/Spread_syntax translation_of_original: Web/JavaScript/Reference/Operators/Spread_operator +original_slug: Web/JavaScript/Referencje/Operatory/Spread_operator ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/conflicting/web/javascript/reference/operators_1d09774e621bf2431a4f5594a248dd21/index.html b/files/pl/conflicting/web/javascript/reference/operators_1d09774e621bf2431a4f5594a248dd21/index.html index 5b2c216efd..1e4414a9b9 100644 --- a/files/pl/conflicting/web/javascript/reference/operators_1d09774e621bf2431a4f5594a248dd21/index.html +++ b/files/pl/conflicting/web/javascript/reference/operators_1d09774e621bf2431a4f5594a248dd21/index.html @@ -1,6 +1,7 @@ --- title: Operatory działające na ciągach znaków -slug: Web/JavaScript/Referencje/Operatory/Operatory_działające_na_ciągach_znaków +slug: >- + conflicting/Web/JavaScript/Reference/Operators_1d09774e621bf2431a4f5594a248dd21 tags: - Dokumentacja_JavaScript - Dokumentacje @@ -8,6 +9,7 @@ tags: - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Operators/Arithmetic_Operators#Addition translation_of_original: Web/JavaScript/Reference/Operators/String_Operators +original_slug: Web/JavaScript/Referencje/Operatory/Operatory_działające_na_ciągach_znaków ---

diff --git a/files/pl/conflicting/web/javascript/reference/operators_1f6634ff6e3ccef661281d6e50002147/index.html b/files/pl/conflicting/web/javascript/reference/operators_1f6634ff6e3ccef661281d6e50002147/index.html index 474545150a..7c0455c3b9 100644 --- a/files/pl/conflicting/web/javascript/reference/operators_1f6634ff6e3ccef661281d6e50002147/index.html +++ b/files/pl/conflicting/web/javascript/reference/operators_1f6634ff6e3ccef661281d6e50002147/index.html @@ -1,11 +1,13 @@ --- title: Operatory arytmetyczne -slug: Web/JavaScript/Referencje/Operatory/Operatory_arytmetyczne +slug: >- + conflicting/Web/JavaScript/Reference/Operators_1f6634ff6e3ccef661281d6e50002147 tags: - JavaScript - Operator translation_of: Web/JavaScript/Reference/Operators translation_of_original: Web/JavaScript/Reference/Operators/Arithmetic_Operators +original_slug: Web/JavaScript/Referencje/Operatory/Operatory_arytmetyczne ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/conflicting/web/javascript/reference/operators_5ba63337c20d72b8f8747a954b9b6c94/index.html b/files/pl/conflicting/web/javascript/reference/operators_5ba63337c20d72b8f8747a954b9b6c94/index.html index 0184512551..1f8d01472c 100644 --- a/files/pl/conflicting/web/javascript/reference/operators_5ba63337c20d72b8f8747a954b9b6c94/index.html +++ b/files/pl/conflicting/web/javascript/reference/operators_5ba63337c20d72b8f8747a954b9b6c94/index.html @@ -1,11 +1,13 @@ --- title: Operatory porównania -slug: Web/JavaScript/Referencje/Operatory/Operatory_porównania +slug: >- + conflicting/Web/JavaScript/Reference/Operators_5ba63337c20d72b8f8747a954b9b6c94 tags: - JavaScript - Operator translation_of: Web/JavaScript/Reference/Operators translation_of_original: Web/JavaScript/Reference/Operators/Comparison_Operators +original_slug: Web/JavaScript/Referencje/Operatory/Operatory_porównania ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/conflicting/web/javascript/reference/operators_8afb1abf2138289c890ee09e799ff26e/index.html b/files/pl/conflicting/web/javascript/reference/operators_8afb1abf2138289c890ee09e799ff26e/index.html index e690c5a24d..3e1a60bdb4 100644 --- a/files/pl/conflicting/web/javascript/reference/operators_8afb1abf2138289c890ee09e799ff26e/index.html +++ b/files/pl/conflicting/web/javascript/reference/operators_8afb1abf2138289c890ee09e799ff26e/index.html @@ -1,8 +1,10 @@ --- title: Operatory logiczne -slug: Web/JavaScript/Referencje/Operatory/Logical_Operators +slug: >- + conflicting/Web/JavaScript/Reference/Operators_8afb1abf2138289c890ee09e799ff26e translation_of: Web/JavaScript/Reference/Operators translation_of_original: Web/JavaScript/Reference/Operators/Logical_Operators +original_slug: Web/JavaScript/Referencje/Operatory/Logical_Operators ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/conflicting/web/javascript/reference/operators_de3666cd349851054926d5e52fced70d/index.html b/files/pl/conflicting/web/javascript/reference/operators_de3666cd349851054926d5e52fced70d/index.html index 8c1e9b85f3..86a341668a 100644 --- a/files/pl/conflicting/web/javascript/reference/operators_de3666cd349851054926d5e52fced70d/index.html +++ b/files/pl/conflicting/web/javascript/reference/operators_de3666cd349851054926d5e52fced70d/index.html @@ -1,11 +1,13 @@ --- title: Operatory przypisania -slug: Web/JavaScript/Referencje/Operatory/Operatory_przypisania +slug: >- + conflicting/Web/JavaScript/Reference/Operators_de3666cd349851054926d5e52fced70d tags: - JavaScript - Operator translation_of: Web/JavaScript/Reference/Operators#Assignment_operators translation_of_original: Web/JavaScript/Reference/Operators/Assignment_Operators +original_slug: Web/JavaScript/Referencje/Operatory/Operatory_przypisania ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/conflicting/web/javascript/reference/statements/switch/index.html b/files/pl/conflicting/web/javascript/reference/statements/switch/index.html index 39641836b8..0563be20c9 100644 --- a/files/pl/conflicting/web/javascript/reference/statements/switch/index.html +++ b/files/pl/conflicting/web/javascript/reference/statements/switch/index.html @@ -1,11 +1,12 @@ --- title: default -slug: Web/JavaScript/Referencje/Polecenia/default +slug: conflicting/Web/JavaScript/Reference/Statements/switch tags: - JavaScript - słowo kluczowe translation_of: Web/JavaScript/Reference/Statements/switch translation_of_original: Web/JavaScript/Reference/Statements/default +original_slug: Web/JavaScript/Referencje/Polecenia/default ---
{{jsSidebar("Statements")}}
diff --git a/files/pl/conflicting/web/opensearch/index.html b/files/pl/conflicting/web/opensearch/index.html index b5c36f8cb1..4c47d2299d 100644 --- a/files/pl/conflicting/web/opensearch/index.html +++ b/files/pl/conflicting/web/opensearch/index.html @@ -1,12 +1,13 @@ --- title: Dodawanie wyszukiwarek z poziomu stron WWW -slug: Dodawanie_wyszukiwarek_z_poziomu_stron_WWW +slug: conflicting/Web/OpenSearch tags: - Dodatki - Wszystkie_kategorie - Wtyczki_wyszukiwarek translation_of: Web/OpenSearch translation_of_original: Web/API/Window/sidebar/Adding_search_engines_from_Web_pages +original_slug: Dodawanie_wyszukiwarek_z_poziomu_stron_WWW ---

Firefox zezwala, aby kod JavaScript instalował wtyczki wyszukiwarek, i obsługuje dwa formaty wtyczek: OpenSearch i Sherlock. diff --git a/files/pl/games/index.html b/files/pl/games/index.html index cd9a3cdb47..ea8705335b 100644 --- a/files/pl/games/index.html +++ b/files/pl/games/index.html @@ -1,7 +1,8 @@ --- title: Tworzenie gier -slug: Gry +slug: Games translation_of: Games +original_slug: Gry ---

{{GamesSidebar}}
diff --git a/files/pl/games/tutorials/2d_breakout_game_pure_javascript/bounce_off_the_walls/index.html b/files/pl/games/tutorials/2d_breakout_game_pure_javascript/bounce_off_the_walls/index.html index 6a50d3a083..296c443576 100644 --- a/files/pl/games/tutorials/2d_breakout_game_pure_javascript/bounce_off_the_walls/index.html +++ b/files/pl/games/tutorials/2d_breakout_game_pure_javascript/bounce_off_the_walls/index.html @@ -1,6 +1,6 @@ --- title: Odbijanie od ścian -slug: Games/Tutorials/2D_Breakout_game_pure_JavaScript/odbijanie_od_scian +slug: Games/Tutorials/2D_Breakout_game_pure_JavaScript/Bounce_off_the_walls tags: - Animacja - Canvas @@ -12,6 +12,7 @@ tags: - kolizja - wykrywanie translation_of: Games/Tutorials/2D_Breakout_game_pure_JavaScript/Bounce_off_the_walls +original_slug: Games/Tutorials/2D_Breakout_game_pure_JavaScript/odbijanie_od_scian ---
{{GamesSidebar}}
diff --git a/files/pl/games/tutorials/2d_breakout_game_pure_javascript/collision_detection/index.html b/files/pl/games/tutorials/2d_breakout_game_pure_javascript/collision_detection/index.html index fea9869173..f0883194a9 100644 --- a/files/pl/games/tutorials/2d_breakout_game_pure_javascript/collision_detection/index.html +++ b/files/pl/games/tutorials/2d_breakout_game_pure_javascript/collision_detection/index.html @@ -1,7 +1,8 @@ --- title: Wykrywanie kolizji -slug: Games/Tutorials/2D_Breakout_game_pure_JavaScript/wykrywanie_kolizji +slug: Games/Tutorials/2D_Breakout_game_pure_JavaScript/Collision_detection translation_of: Games/Tutorials/2D_Breakout_game_pure_JavaScript/Collision_detection +original_slug: Games/Tutorials/2D_Breakout_game_pure_JavaScript/wykrywanie_kolizji ---
{{GamesSidebar}}
diff --git a/files/pl/games/tutorials/2d_breakout_game_pure_javascript/create_the_canvas_and_draw_on_it/index.html b/files/pl/games/tutorials/2d_breakout_game_pure_javascript/create_the_canvas_and_draw_on_it/index.html index 72e920c9a8..8241f5e362 100644 --- a/files/pl/games/tutorials/2d_breakout_game_pure_javascript/create_the_canvas_and_draw_on_it/index.html +++ b/files/pl/games/tutorials/2d_breakout_game_pure_javascript/create_the_canvas_and_draw_on_it/index.html @@ -1,7 +1,7 @@ --- title: Stwórz element Canvas i rysuj na nim slug: >- - Games/Tutorials/2D_Breakout_game_pure_JavaScript/Stworz_element_Canvas_i_rysuj_na_nim + Games/Tutorials/2D_Breakout_game_pure_JavaScript/Create_the_Canvas_and_draw_on_it tags: - 2D - Canvas @@ -12,6 +12,8 @@ tags: - Poradnik translation_of: >- Games/Tutorials/2D_Breakout_game_pure_JavaScript/Create_the_Canvas_and_draw_on_it +original_slug: >- + Games/Tutorials/2D_Breakout_game_pure_JavaScript/Stworz_element_Canvas_i_rysuj_na_nim ---
{{GamesSidebar}}
diff --git a/files/pl/games/tutorials/2d_breakout_game_pure_javascript/move_the_ball/index.html b/files/pl/games/tutorials/2d_breakout_game_pure_javascript/move_the_ball/index.html index 3d21b5f72e..542352aa56 100644 --- a/files/pl/games/tutorials/2d_breakout_game_pure_javascript/move_the_ball/index.html +++ b/files/pl/games/tutorials/2d_breakout_game_pure_javascript/move_the_ball/index.html @@ -1,6 +1,6 @@ --- title: Porusz piłką -slug: Games/Tutorials/2D_Breakout_game_pure_JavaScript/posusz_pilka +slug: Games/Tutorials/2D_Breakout_game_pure_JavaScript/Move_the_ball tags: - 2D - Canvas @@ -11,6 +11,7 @@ tags: - Pętla - ruch translation_of: Games/Tutorials/2D_Breakout_game_pure_JavaScript/Move_the_ball +original_slug: Games/Tutorials/2D_Breakout_game_pure_JavaScript/posusz_pilka ---
{{GamesSidebar}}
diff --git a/files/pl/glossary/abstraction/index.html b/files/pl/glossary/abstraction/index.html index 0c56198083..e7fef940f0 100644 --- a/files/pl/glossary/abstraction/index.html +++ b/files/pl/glossary/abstraction/index.html @@ -1,7 +1,8 @@ --- title: Abstrakcja -slug: Glossary/Abstrakcja +slug: Glossary/Abstraction translation_of: Glossary/Abstraction +original_slug: Glossary/Abstrakcja ---

Abstrakcja w {{Glossary("computer programming")}} to sposób na zmniejszenie złożoności i umożliwienie wydajnego projektowania i wdrażania w złożonych systemach oprogramowania. Ukrywa złożoność techniczną systemów za prostszą {{Glossary("API", "APIs")}}.

diff --git a/files/pl/glossary/browser/index.html b/files/pl/glossary/browser/index.html index 82a7b0997b..3822de499c 100644 --- a/files/pl/glossary/browser/index.html +++ b/files/pl/glossary/browser/index.html @@ -1,10 +1,11 @@ --- title: Przeglądarka -slug: Glossary/Przegladarka +slug: Glossary/Browser tags: - Glossary - Navigation translation_of: Glossary/Browser +original_slug: Glossary/Przegladarka ---

Przeglądarka internetowa lub przeglądarka to program, który pobiera i wyświetla strony internetowe z {{Glossary("World Wide Web","Sieci Web")}} i umożliwia dostęp do kolejnych stron poprzez {{Glossary("hyperlink","hiperłącza")}}. Przeglądarka jest najbardziej znanym typem {{Glossary("user agent","agenta użytkownika")}}.

diff --git a/files/pl/glossary/class/index.html b/files/pl/glossary/class/index.html index 8782d0d017..6f66a349a9 100644 --- a/files/pl/glossary/class/index.html +++ b/files/pl/glossary/class/index.html @@ -1,9 +1,10 @@ --- title: Klasa -slug: Glossary/Klasa +slug: Glossary/Class tags: - glorariusz translation_of: Glossary/Class +original_slug: Glossary/Klasa ---

W {{glossary("OOP","programowaniu obiektowym")}} klasa określa cechy {{glossary("object","obiektu")}}. Klasa definiuje {{glossary("property","właściwości")}} i {{glossary("method","metody")}} obiektu, stanowi model, na podstawie którego tworzone są konkretne instancje klasy (obiekty). 

diff --git a/files/pl/glossary/cryptography/index.html b/files/pl/glossary/cryptography/index.html index e03fc5e0b1..81a9391c6e 100644 --- a/files/pl/glossary/cryptography/index.html +++ b/files/pl/glossary/cryptography/index.html @@ -1,7 +1,8 @@ --- title: Kryptografia -slug: Glossary/Kryptografia +slug: Glossary/Cryptography translation_of: Glossary/Cryptography +original_slug: Glossary/Kryptografia ---

Kryptografia lub kryptologia, to nauka, która bada jak kodować i przekazywać wiadomości w bezpieczny sposób. Projekty kryptograficzne i opracowane algorytmy są używane do kodowania i dekodowania wiadomości w niezabezpieczonym środowisku oraz ich aplikacji. Poza zagadnieniem poufności danych, kryptografia porusza również temat identyfikacji, uwierzytelniania, niezaprzeczalności i integralności danych. Dlatego też badania metod kryptografii są używane w kontekście, kryptosystemów.

diff --git a/files/pl/glossary/dhtml/index.html b/files/pl/glossary/dhtml/index.html index 5728cb4139..f6bc574815 100644 --- a/files/pl/glossary/dhtml/index.html +++ b/files/pl/glossary/dhtml/index.html @@ -1,10 +1,11 @@ --- title: DHTML -slug: DHTML +slug: Glossary/DHTML tags: - DHTML - Wszystkie_kategorie translation_of: Glossary/DHTML +original_slug: DHTML ---

diff --git a/files/pl/glossary/empty_element/index.html b/files/pl/glossary/empty_element/index.html index 9606f17176..eefa527484 100644 --- a/files/pl/glossary/empty_element/index.html +++ b/files/pl/glossary/empty_element/index.html @@ -1,11 +1,12 @@ --- title: Pusty element -slug: Glossary/Pusty_element +slug: Glossary/Empty_element tags: - CodingScripting - Glossary - Intermediate translation_of: Glossary/Empty_element +original_slug: Glossary/Pusty_element ---

Pusty element to {{Glossary("element")}} HTML, SVG lub MathML który nie może mieć żadnych węzłów dziecięcych (tj. elementów zagnieżdżonych lub węzłów tekstowych).

diff --git a/files/pl/glossary/hypertext/index.html b/files/pl/glossary/hypertext/index.html index e699949584..8ac8325c11 100644 --- a/files/pl/glossary/hypertext/index.html +++ b/files/pl/glossary/hypertext/index.html @@ -1,11 +1,12 @@ --- title: Hipertekst -slug: Glossary/Hipertekst +slug: Glossary/Hypertext tags: - Glossary - Web - WebMechanics translation_of: Glossary/Hypertext +original_slug: Glossary/Hipertekst ---

Hipertekst to tekst, który zawiera odnośniki do innych tekstów, w przeciwieństwie do pojedynczego przepływu liniowego jak w powieści.

diff --git a/files/pl/glossary/json/index.html b/files/pl/glossary/json/index.html index 6d023ee69c..85b0ff128b 100644 --- a/files/pl/glossary/json/index.html +++ b/files/pl/glossary/json/index.html @@ -1,7 +1,8 @@ --- title: JSON -slug: JSON +slug: Glossary/JSON translation_of: Glossary/JSON +original_slug: JSON ---

JSON (JavaScript Object Notation) jest formatem wymiany danych. Przypomina podzbiór składni JavaScriptu, choć nie jest nim w ścisłym sensie tego terminu. (Zobacz JSON w Dokumentacji JavaScript aby poznać szczegóły). Użyteczny w dowolnym rodzaju aplikacji opartej o JavaScript, m.in. na stronach internetowych i w rozszerzeniach przeglądarek. Przykładowo, dane użytkownika w formacie JSON mogą być przechowywane w ciasteczku (cookie), zaś preferencje rozszerzenia mogą być przechowywane w formacie JSON przez przeglądarkę.

JSON może przechowywać liczby (number), wartości logiczne (boolean), ciagi znaków (string), null, tablice (uporządkowane sekwencje wartości) oraz obiekty (zbiory odwzorowań ciąg znaków-wartość) złożone z powyższych wartości (lub z innych tablic i obiektów). Nie definiuje naturalnej reprezentacji dla bardziej złożonych typów danych, jak funkcje, wyrażenia regularne, daty itd. (Obiekty typu Date są domyślnie serializowane w postaci ciągu znaków zawierającego datę w formacie ISO, zatem choć nie zostają odtworzone w oryginalnym formacie, informacja nie jest bezpowrotnie tracona). Gdy niezbędne jest przechowanie tego rodzaju danych, można przekształcić wartości w momencie serializacji, lub przed ich deserializacją, umożliwiając w ten sposób przechowanie w JSON dodatkowych typów danych.

diff --git a/files/pl/glossary/localization/index.html b/files/pl/glossary/localization/index.html index 52d4237dc7..ffbee9e834 100644 --- a/files/pl/glossary/localization/index.html +++ b/files/pl/glossary/localization/index.html @@ -1,10 +1,11 @@ --- title: Lokalizacja -slug: Lokalizacja +slug: Glossary/Localization tags: - Lokalizacja - Wszystkie_kategorie translation_of: Glossary/Localization +original_slug: Lokalizacja ---

 

diff --git a/files/pl/glossary/object/index.html b/files/pl/glossary/object/index.html index 3c9dc807da..6dcac992ac 100644 --- a/files/pl/glossary/object/index.html +++ b/files/pl/glossary/object/index.html @@ -1,11 +1,12 @@ --- title: Obiekt -slug: Glossary/Obiekt +slug: Glossary/Object tags: - Obiekt - glosariusz - podstawy translation_of: Glossary/Object +original_slug: Glossary/Obiekt ---

Obiekt to struktura danych zawierająca dane i instrukcje odnoszące się do przetwarzania tych danych. Czasami obiekty odpowiadają prawdziwym przedmiotom, np. samochód lub mapa w grze wyścigowej. JavaScript, Java, C++, Python i Ruby to przykłady {{glossary("OOP","obiektowych")}} języków programowania.

diff --git a/files/pl/glossary/semantics/index.html b/files/pl/glossary/semantics/index.html index f05fe7c547..72cd9321d4 100644 --- a/files/pl/glossary/semantics/index.html +++ b/files/pl/glossary/semantics/index.html @@ -1,7 +1,8 @@ --- title: Semantyka -slug: Glossary/Semantyka +slug: Glossary/Semantics translation_of: Glossary/Semantics +original_slug: Glossary/Semantyka ---

W programowaniu Semantyka oznacza znaczenie kawałka kodu — na przykład: "Jaki efekt da ta linia kodu w JavaScripcie?" lub "Jaki cel lub rolę odgrywa ten element HTML?" (ale nie "Jak to wygląda?").

diff --git a/files/pl/glossary/xhtml/index.html b/files/pl/glossary/xhtml/index.html index f3b65d53ca..c5f56fb5be 100644 --- a/files/pl/glossary/xhtml/index.html +++ b/files/pl/glossary/xhtml/index.html @@ -1,10 +1,11 @@ --- title: XHTML -slug: XHTML +slug: Glossary/XHTML tags: - Wszystkie_kategorie - XHTML translation_of: Glossary/XHTML +original_slug: XHTML ---

XHTML ma się do XML-a tak, jak HTML do SGML-a. Znaczy to, że XHTML jest językiem znaczników podobnym do HTML-a, ale z bardziej surową składnią. Dwie wersje XHTML-a zostały ukończone przez W3C: diff --git a/files/pl/learn/common_questions/how_does_the_internet_work/index.html b/files/pl/learn/common_questions/how_does_the_internet_work/index.html index 1ee3d15096..13f7ead9b9 100644 --- a/files/pl/learn/common_questions/how_does_the_internet_work/index.html +++ b/files/pl/learn/common_questions/how_does_the_internet_work/index.html @@ -1,11 +1,12 @@ --- title: Jak działa Internet? -slug: Learn/Common_questions/Jak_dziala_Internet +slug: Learn/Common_questions/How_does_the_Internet_work tags: - Beginner - Tutorial - WebMechanics translation_of: Learn/Common_questions/How_does_the_Internet_work +original_slug: Learn/Common_questions/Jak_dziala_Internet ---

{{LearnSidebar}}
diff --git a/files/pl/learn/css/building_blocks/cascade_and_inheritance/index.html b/files/pl/learn/css/building_blocks/cascade_and_inheritance/index.html index f100424b2f..c6ca10a1c9 100644 --- a/files/pl/learn/css/building_blocks/cascade_and_inheritance/index.html +++ b/files/pl/learn/css/building_blocks/cascade_and_inheritance/index.html @@ -1,10 +1,11 @@ --- title: Kaskadowość i dziedziczenie -slug: Web/CSS/Na_początek/Kaskadowość_i_dziedziczenie +slug: Learn/CSS/Building_blocks/Cascade_and_inheritance tags: - - 'CSS:Na_początek' + - CSS:Na_początek translation_of: Learn/CSS/Building_blocks/Cascade_and_inheritance translation_of_original: Web/Guide/CSS/Getting_started/Cascading_and_inheritance +original_slug: Web/CSS/Na_początek/Kaskadowość_i_dziedziczenie ---

Ta strona tłumaczy jak arkusze stylów oddziaływują w kaskadzie, oraz jak elementy dziedziczą style od swoich rodziców. diff --git a/files/pl/learn/css/building_blocks/index.html b/files/pl/learn/css/building_blocks/index.html index d8edcc96fb..a62e5e31b7 100644 --- a/files/pl/learn/css/building_blocks/index.html +++ b/files/pl/learn/css/building_blocks/index.html @@ -1,10 +1,11 @@ --- title: Bloki -slug: Web/CSS/Na_początek/Bloki +slug: Learn/CSS/Building_blocks tags: - - 'CSS:Na_początek' + - CSS:Na_początek translation_of: Learn/CSS/Building_blocks translation_of_original: Web/Guide/CSS/Getting_started/Boxes +original_slug: Web/CSS/Na_początek/Bloki ---

 

Ta strona opisuje jak możesz użyć CSS do kontroli przestrzeni, którą zajmuje wyświetlany element.

diff --git a/files/pl/learn/css/building_blocks/selectors/index.html b/files/pl/learn/css/building_blocks/selectors/index.html index bf3edca6f9..71ec313979 100644 --- a/files/pl/learn/css/building_blocks/selectors/index.html +++ b/files/pl/learn/css/building_blocks/selectors/index.html @@ -1,10 +1,11 @@ --- title: Selektory -slug: Web/CSS/Na_początek/Selektory +slug: Learn/CSS/Building_blocks/Selectors tags: - - 'CSS:Na_początek' + - CSS:Na_początek translation_of: Learn/CSS/Building_blocks/Selectors translation_of_original: Web/Guide/CSS/Getting_started/Selectors +original_slug: Web/CSS/Na_początek/Selektory ---

Ta strona jest częścią piątą kursu CSS Getting Started. Wyjaśnia ona jak możesz używać stylów selektywnie, i jak różne typy selektorów mają różne priorytety. Dodasz pewne atrybuty do znaczników w swoim przykładowym dokumencie oraz użyjesz w nim tych atrybutów.

diff --git a/files/pl/learn/css/building_blocks/styling_tables/index.html b/files/pl/learn/css/building_blocks/styling_tables/index.html index 3e09737217..23e9302a21 100644 --- a/files/pl/learn/css/building_blocks/styling_tables/index.html +++ b/files/pl/learn/css/building_blocks/styling_tables/index.html @@ -1,10 +1,11 @@ --- title: Tabele -slug: Web/CSS/Na_początek/Tables +slug: Learn/CSS/Building_blocks/Styling_tables tags: - - 'CSS:Na_początek' + - CSS:Na_początek translation_of: Learn/CSS/Building_blocks/Styling_tables translation_of_original: Web/Guide/CSS/Getting_started/Tables +original_slug: Web/CSS/Na_początek/Tables ---

 

Ta strona bardziej szczegółowo opisuje selektory oraz sposoby tworzenia stylów dla tabel.

diff --git a/files/pl/learn/css/building_blocks/values_and_units/index.html b/files/pl/learn/css/building_blocks/values_and_units/index.html index db5bfd5e7d..e13cc8d2de 100644 --- a/files/pl/learn/css/building_blocks/values_and_units/index.html +++ b/files/pl/learn/css/building_blocks/values_and_units/index.html @@ -1,10 +1,11 @@ --- title: Kolor -slug: Web/CSS/Na_początek/Kolor +slug: Learn/CSS/Building_blocks/Values_and_units tags: - - 'CSS:Na_początek' + - CSS:Na_początek translation_of: Learn/CSS/Introduction_to_CSS/Values_and_units#Colors translation_of_original: Web/Guide/CSS/Getting_started/Color +original_slug: Web/CSS/Na_początek/Kolor ---

Ta strona dokładniej opisuje sposoby pracy z kolorami w CSS-ie. diff --git a/files/pl/learn/css/first_steps/how_css_is_structured/index.html b/files/pl/learn/css/first_steps/how_css_is_structured/index.html index 0e62945cbd..8dab9ba99d 100644 --- a/files/pl/learn/css/first_steps/how_css_is_structured/index.html +++ b/files/pl/learn/css/first_steps/how_css_is_structured/index.html @@ -1,10 +1,11 @@ --- title: Czytelny CSS -slug: Web/CSS/Na_początek/Czytelny_CSS +slug: Learn/CSS/First_steps/How_CSS_is_structured tags: - - 'CSS:Na_początek' + - CSS:Na_początek translation_of: Learn/CSS/Introduction_to_CSS/Syntax#Beyond_syntax_make_CSS_readable translation_of_original: Web/Guide/CSS/Getting_started/Readable_CSS +original_slug: Web/CSS/Na_początek/Czytelny_CSS ---

Ta strona opisuje styl i gramatykę języka CSS. diff --git a/files/pl/learn/css/first_steps/how_css_works/index.html b/files/pl/learn/css/first_steps/how_css_works/index.html index 4502cad557..5b00b91b96 100644 --- a/files/pl/learn/css/first_steps/how_css_works/index.html +++ b/files/pl/learn/css/first_steps/how_css_works/index.html @@ -1,10 +1,11 @@ --- title: Czym jest CSS -slug: Web/CSS/Na_początek/Czym_jest_CSS +slug: Learn/CSS/First_steps/How_CSS_works tags: - - 'CSS:Na_początek' + - CSS:Na_początek translation_of: Learn/CSS/First_steps/How_CSS_works translation_of_original: Web/Guide/CSS/Getting_started/What_is_CSS +original_slug: Web/CSS/Na_początek/Czym_jest_CSS ---

 

diff --git a/files/pl/learn/css/first_steps/index.html b/files/pl/learn/css/first_steps/index.html index 22b975504c..479321eb86 100644 --- a/files/pl/learn/css/first_steps/index.html +++ b/files/pl/learn/css/first_steps/index.html @@ -1,12 +1,13 @@ --- title: Na początek -slug: Web/CSS/Na_początek +slug: Learn/CSS/First_steps tags: - CSS - - 'CSS:Na_początek' + - CSS:Na_początek - Wszystkie_kategorie translation_of: Learn/CSS/First_steps translation_of_original: Web/Guide/CSS/Getting_started +original_slug: Web/CSS/Na_początek ---

 

Wprowadzenie

diff --git a/files/pl/learn/css/howto/css_faq/index.html b/files/pl/learn/css/howto/css_faq/index.html index 12a84d8c20..1dd18140a5 100644 --- a/files/pl/learn/css/howto/css_faq/index.html +++ b/files/pl/learn/css/howto/css_faq/index.html @@ -1,10 +1,11 @@ --- title: Częste pytania o CSS -slug: Web/CSS/Częste_pytania_o_CSS +slug: Learn/CSS/Howto/CSS_FAQ tags: - CSS - Wszystkie_kategorie translation_of: Learn/CSS/Howto/CSS_FAQ +original_slug: Web/CSS/Częste_pytania_o_CSS ---

diff --git a/files/pl/learn/css/styling_text/fundamentals/index.html b/files/pl/learn/css/styling_text/fundamentals/index.html index 69dfd39735..4f59ad1c69 100644 --- a/files/pl/learn/css/styling_text/fundamentals/index.html +++ b/files/pl/learn/css/styling_text/fundamentals/index.html @@ -1,10 +1,11 @@ --- title: Style tekstowe -slug: Web/CSS/Na_początek/Style_tekstowe +slug: Learn/CSS/Styling_text/Fundamentals tags: - - 'CSS:Na_początek' + - CSS:Na_początek translation_of: Learn/CSS/Styling_text/Fundamentals translation_of_original: Web/Guide/CSS/Getting_started/Text_styles +original_slug: Web/CSS/Na_początek/Style_tekstowe ---

Na tej stronie znajdziesz więcej przykładów stylów tekstowych. diff --git a/files/pl/learn/css/styling_text/styling_lists/index.html b/files/pl/learn/css/styling_text/styling_lists/index.html index 64f4218a9d..5d36de5295 100644 --- a/files/pl/learn/css/styling_text/styling_lists/index.html +++ b/files/pl/learn/css/styling_text/styling_lists/index.html @@ -1,10 +1,11 @@ --- title: Listy -slug: Web/CSS/Na_początek/Listy +slug: Learn/CSS/Styling_text/Styling_lists tags: - - 'CSS:Na_początek' + - CSS:Na_początek translation_of: Learn/CSS/Styling_text/Styling_lists translation_of_original: Web/Guide/CSS/Getting_started/Lists +original_slug: Web/CSS/Na_początek/Listy ---

Ta strona opisuje jak możesz użyć CSS-a do określania wyglądu list. diff --git a/files/pl/learn/getting_started_with_the_web/how_the_web_works/index.html b/files/pl/learn/getting_started_with_the_web/how_the_web_works/index.html index 6d1a97d33c..fb7fdd730e 100644 --- a/files/pl/learn/getting_started_with_the_web/how_the_web_works/index.html +++ b/files/pl/learn/getting_started_with_the_web/how_the_web_works/index.html @@ -1,6 +1,6 @@ --- title: Jak działa Sieć -slug: Learn/Getting_started_with_the_web/Jak_dziala_Siec +slug: Learn/Getting_started_with_the_web/How_the_Web_works tags: - Beginner - Client @@ -11,8 +11,9 @@ tags: - Learn - Server - TCP - - 'l10n:priority' + - l10n:priority translation_of: Learn/Getting_started_with_the_web/How_the_Web_works +original_slug: Learn/Getting_started_with_the_web/Jak_dziala_Siec ---

{{LearnSidebar}}
diff --git a/files/pl/learn/javascript/client-side_web_apis/manipulating_documents/index.html b/files/pl/learn/javascript/client-side_web_apis/manipulating_documents/index.html index 128ef84501..c9ed6ef957 100644 --- a/files/pl/learn/javascript/client-side_web_apis/manipulating_documents/index.html +++ b/files/pl/learn/javascript/client-side_web_apis/manipulating_documents/index.html @@ -1,10 +1,11 @@ --- title: JavaScript -slug: Web/CSS/Na_początek/JavaScript +slug: Learn/JavaScript/Client-side_web_APIs/Manipulating_documents tags: - - 'CSS:Na_początek' + - CSS:Na_początek translation_of: Learn/JavaScript/Client-side_web_APIs/Manipulating_documents translation_of_original: Web/Guide/CSS/Getting_started/JavaScript +original_slug: Web/CSS/Na_początek/JavaScript ---

Jest to druga część tego kursu. Część II zawiera trochę przykładów pokazujących zakres użycia CSS w Mozilli. diff --git a/files/pl/learn/javascript/first_steps/a_first_splash/index.html b/files/pl/learn/javascript/first_steps/a_first_splash/index.html index 0d0f49c69a..690de69753 100644 --- a/files/pl/learn/javascript/first_steps/a_first_splash/index.html +++ b/files/pl/learn/javascript/first_steps/a_first_splash/index.html @@ -1,7 +1,8 @@ --- title: A first splash into JavaScript -slug: Learn/JavaScript/Pierwsze_kroki/A_first_splash +slug: Learn/JavaScript/First_steps/A_first_splash translation_of: Learn/JavaScript/First_steps/A_first_splash +original_slug: Learn/JavaScript/Pierwsze_kroki/A_first_splash ---

{{LearnSidebar}}
diff --git a/files/pl/learn/javascript/first_steps/index.html b/files/pl/learn/javascript/first_steps/index.html index ab90523dce..c9b87b56f0 100644 --- a/files/pl/learn/javascript/first_steps/index.html +++ b/files/pl/learn/javascript/first_steps/index.html @@ -1,6 +1,6 @@ --- title: Pierwsze kroki w Javascript -slug: Learn/JavaScript/Pierwsze_kroki +slug: Learn/JavaScript/First_steps tags: - Artykuły - Liczby @@ -11,6 +11,7 @@ tags: - Pętle - Zmienne translation_of: Learn/JavaScript/First_steps +original_slug: Learn/JavaScript/Pierwsze_kroki ---
{{LearnSidebar}}
diff --git a/files/pl/learn/javascript/first_steps/math/index.html b/files/pl/learn/javascript/first_steps/math/index.html index 3e5563d0da..b1931711f1 100644 --- a/files/pl/learn/javascript/first_steps/math/index.html +++ b/files/pl/learn/javascript/first_steps/math/index.html @@ -1,7 +1,8 @@ --- title: Basic math in JavaScript — numbers and operators -slug: Learn/JavaScript/Pierwsze_kroki/Math +slug: Learn/JavaScript/First_steps/Math translation_of: Learn/JavaScript/First_steps/Math +original_slug: Learn/JavaScript/Pierwsze_kroki/Math ---
{{LearnSidebar}}
diff --git a/files/pl/learn/javascript/first_steps/variables/index.html b/files/pl/learn/javascript/first_steps/variables/index.html index d1b55aea20..4700074092 100644 --- a/files/pl/learn/javascript/first_steps/variables/index.html +++ b/files/pl/learn/javascript/first_steps/variables/index.html @@ -1,7 +1,8 @@ --- title: Przechowywanie potrzebnych informacji — Zmienne -slug: Learn/JavaScript/Pierwsze_kroki/Zmienne +slug: Learn/JavaScript/First_steps/Variables translation_of: Learn/JavaScript/First_steps/Variables +original_slug: Learn/JavaScript/Pierwsze_kroki/Zmienne ---
{{LearnSidebar}}
diff --git a/files/pl/learn/javascript/first_steps/what_is_javascript/index.html b/files/pl/learn/javascript/first_steps/what_is_javascript/index.html index 3898eb049c..0686f6bb16 100644 --- a/files/pl/learn/javascript/first_steps/what_is_javascript/index.html +++ b/files/pl/learn/javascript/first_steps/what_is_javascript/index.html @@ -1,7 +1,8 @@ --- title: Co to jest JavaScript? -slug: Learn/JavaScript/Pierwsze_kroki/What_is_JavaScript +slug: Learn/JavaScript/First_steps/What_is_JavaScript translation_of: Learn/JavaScript/First_steps/What_is_JavaScript +original_slug: Learn/JavaScript/Pierwsze_kroki/What_is_JavaScript ---
{{LearnSidebar}}
diff --git a/files/pl/learn/javascript/first_steps/what_went_wrong/index.html b/files/pl/learn/javascript/first_steps/what_went_wrong/index.html index 1a88f2b797..e4aa652ef7 100644 --- a/files/pl/learn/javascript/first_steps/what_went_wrong/index.html +++ b/files/pl/learn/javascript/first_steps/what_went_wrong/index.html @@ -1,7 +1,8 @@ --- title: Co poszło nie tak? Rozwiązywanie problemów w JavaScript -slug: Learn/JavaScript/Pierwsze_kroki/Co_poszlo_nie_tak +slug: Learn/JavaScript/First_steps/What_went_wrong translation_of: Learn/JavaScript/First_steps/What_went_wrong +original_slug: Learn/JavaScript/Pierwsze_kroki/Co_poszlo_nie_tak ---
{{LearnSidebar}}
diff --git a/files/pl/learn/javascript/objects/index.html b/files/pl/learn/javascript/objects/index.html index 9952e760a3..d514829256 100644 --- a/files/pl/learn/javascript/objects/index.html +++ b/files/pl/learn/javascript/objects/index.html @@ -1,12 +1,13 @@ --- title: Wprowadzenie do obiektów JavaScript -slug: Learn/JavaScript/Obiekty +slug: Learn/JavaScript/Objects tags: - JavaScript - Objekt - Początkujący - samouczek translation_of: Learn/JavaScript/Objects +original_slug: Learn/JavaScript/Obiekty ---
{{LearnSidebar}}
diff --git a/files/pl/learn/server-side/configuring_server_mime_types/index.html b/files/pl/learn/server-side/configuring_server_mime_types/index.html index 87aea6b3b3..afec7d1a7d 100644 --- a/files/pl/learn/server-side/configuring_server_mime_types/index.html +++ b/files/pl/learn/server-side/configuring_server_mime_types/index.html @@ -1,9 +1,10 @@ --- title: Poprawna kofiguracja MIME na serwerze -slug: Web/Security/Securing_your_site/Konfiguracja_MIME_na_serwerze +slug: Learn/Server-side/Configuring_server_MIME_types tags: - HTTP translation_of: Learn/Server-side/Configuring_server_MIME_types +original_slug: Web/Security/Securing_your_site/Konfiguracja_MIME_na_serwerze ---

Kontekst

diff --git a/files/pl/learn/server-side/express_nodejs/tutorial_local_library_website/index.html b/files/pl/learn/server-side/express_nodejs/tutorial_local_library_website/index.html index a23787a253..a7f52a59a8 100644 --- a/files/pl/learn/server-side/express_nodejs/tutorial_local_library_website/index.html +++ b/files/pl/learn/server-side/express_nodejs/tutorial_local_library_website/index.html @@ -1,9 +1,10 @@ --- title: 'Szkolenie z Express: Projekt aplikacji webowej "Biblioteka"' -slug: Learn/Server-side/Express_Nodejs/Szkolenie_aplikacja_biblioteka +slug: Learn/Server-side/Express_Nodejs/Tutorial_local_library_website tags: - Początkujący translation_of: Learn/Server-side/Express_Nodejs/Tutorial_local_library_website +original_slug: Learn/Server-side/Express_Nodejs/Szkolenie_aplikacja_biblioteka ---
{{LearnSidebar}}
diff --git a/files/pl/mdn/at_ten/index.html b/files/pl/mdn/at_ten/index.html index c802ba1a07..4a913177da 100644 --- a/files/pl/mdn/at_ten/index.html +++ b/files/pl/mdn/at_ten/index.html @@ -1,6 +1,6 @@ --- title: 10 lat MDN -slug: dziesiec_lat_mdn +slug: MDN/At_ten tags: - História - Internet @@ -8,6 +8,7 @@ tags: - Mozilla - Społeczność translation_of: MDN_at_ten +original_slug: dziesiec_lat_mdn --- diff --git a/files/pl/mdn/guidelines/writing_style_guide/index.html b/files/pl/mdn/guidelines/writing_style_guide/index.html index 370bd6714e..c3dd8bd2ab 100644 --- a/files/pl/mdn/guidelines/writing_style_guide/index.html +++ b/files/pl/mdn/guidelines/writing_style_guide/index.html @@ -1,6 +1,6 @@ --- title: Przewodnik po stylach dokumentacji MDN -slug: MDN/Guidelines/Style_guide +slug: MDN/Guidelines/Writing_style_guide tags: - Dokumentacja - Dokumenty MDN @@ -8,6 +8,7 @@ tags: - Przewodnik stylu MDN - Style w MDN translation_of: MDN/Guidelines/Writing_style_guide +original_slug: MDN/Guidelines/Style_guide ---
{{MDNSidebar}}
diff --git a/files/pl/mdn/tools/index.html b/files/pl/mdn/tools/index.html index fd60142577..ad6d18d577 100644 --- a/files/pl/mdn/tools/index.html +++ b/files/pl/mdn/tools/index.html @@ -1,8 +1,9 @@ --- title: MDN user guide -slug: MDN/User_guide +slug: MDN/Tools translation_of: MDN/Tools translation_of_original: MDN/User_guide +original_slug: MDN/User_guide ---
{{MDNSidebar}}

The Mozilla Developer Network site is an advanced system for finding, reading, and contributing to documentation and sample code for Web developers (as well as for Firefox and Firefox OS developers). The MDN user guide provides articles detailing how to use MDN to find the documentation you need, and, if you wish, how to help make the material better, more expansive, and more complete.

<> diff --git a/files/pl/mdn/yari/index.html b/files/pl/mdn/yari/index.html index 6c2be0c158..3e4cf0c5b3 100644 --- a/files/pl/mdn/yari/index.html +++ b/files/pl/mdn/yari/index.html @@ -1,10 +1,11 @@ --- title: 'Kuma: MDN''s wiki platform' -slug: MDN/Kuma +slug: MDN/Yari tags: - Kuma - MDN Meta translation_of: MDN/Kuma +original_slug: MDN/Kuma ---
{{MDNSidebar}}
diff --git a/files/pl/mozilla/add-ons/webextensions/your_first_webextension/index.html b/files/pl/mozilla/add-ons/webextensions/your_first_webextension/index.html index 94746493b6..712c57cda6 100644 --- a/files/pl/mozilla/add-ons/webextensions/your_first_webextension/index.html +++ b/files/pl/mozilla/add-ons/webextensions/your_first_webextension/index.html @@ -1,6 +1,6 @@ --- title: Twoje pierwsze rozszerzenie -slug: Mozilla/Add-ons/WebExtensions/Twój_pierwszy_WebExtension +slug: Mozilla/Add-ons/WebExtensions/Your_first_WebExtension tags: - Add-ons - Dodatki @@ -9,6 +9,7 @@ tags: - WebExtensions - Wtyczki translation_of: Mozilla/Add-ons/WebExtensions/Your_first_WebExtension +original_slug: Mozilla/Add-ons/WebExtensions/Twój_pierwszy_WebExtension ---
{{AddonSidebar}}
diff --git a/files/pl/mozilla/firefox/releases/1.5/adapting_xul_applications_for_firefox_1.5/index.html b/files/pl/mozilla/firefox/releases/1.5/adapting_xul_applications_for_firefox_1.5/index.html index 32337d1c31..c7d2ef6361 100644 --- a/files/pl/mozilla/firefox/releases/1.5/adapting_xul_applications_for_firefox_1.5/index.html +++ b/files/pl/mozilla/firefox/releases/1.5/adapting_xul_applications_for_firefox_1.5/index.html @@ -1,12 +1,13 @@ --- title: Dostosowanie aplikacji XUL do Firefoksa 1.5 -slug: Dostosowanie_aplikacji_XUL_do_Firefoksa_1.5 +slug: Mozilla/Firefox/Releases/1.5/Adapting_XUL_Applications_for_Firefox_1.5 tags: - Dodatki - Rozszerzenia - Wszystkie_kategorie - XUL translation_of: Mozilla/Firefox/Releases/1.5/Adapting_XUL_Applications_for_Firefox_1.5 +original_slug: Dostosowanie_aplikacji_XUL_do_Firefoksa_1.5 ---
{{FirefoxSidebar}}
diff --git a/files/pl/mozilla/firefox/releases/1.5/what_s_new_in_1.5_alpha/index.html b/files/pl/mozilla/firefox/releases/1.5/what_s_new_in_1.5_alpha/index.html index 4eafb791e4..625118be34 100644 --- a/files/pl/mozilla/firefox/releases/1.5/what_s_new_in_1.5_alpha/index.html +++ b/files/pl/mozilla/firefox/releases/1.5/what_s_new_in_1.5_alpha/index.html @@ -1,7 +1,8 @@ --- title: Co nowego w Deer Park Alpha -slug: Co_nowego_w_Deer_Park_Alpha +slug: Mozilla/Firefox/Releases/1.5/What_s_new_in_1.5_alpha translation_of: Mozilla/Firefox/Releases/1.5/What_s_new_in_1.5_alpha +original_slug: Co_nowego_w_Deer_Park_Alpha ---
{{FirefoxSidebar}}
diff --git a/files/pl/mozilla/firefox/releases/2/security_changes/index.html b/files/pl/mozilla/firefox/releases/2/security_changes/index.html index 342dba864a..04cbf065cd 100644 --- a/files/pl/mozilla/firefox/releases/2/security_changes/index.html +++ b/files/pl/mozilla/firefox/releases/2/security_changes/index.html @@ -1,9 +1,10 @@ --- title: Bezpieczeństwo w Firefoksie 2 -slug: Bezpieczeństwo_w_Firefoksie_2 +slug: Mozilla/Firefox/Releases/2/Security_changes tags: - Bezpieczeństwo translation_of: Mozilla/Firefox/Releases/2/Security_changes +original_slug: Bezpieczeństwo_w_Firefoksie_2 ---
{{FirefoxSidebar}}
diff --git a/files/pl/mozilla/firefox/releases/2/updating_extensions/index.html b/files/pl/mozilla/firefox/releases/2/updating_extensions/index.html index 7b5a22de8b..6c84e32b43 100644 --- a/files/pl/mozilla/firefox/releases/2/updating_extensions/index.html +++ b/files/pl/mozilla/firefox/releases/2/updating_extensions/index.html @@ -1,7 +1,8 @@ --- title: Aktualizacja rozszerzeń do Firefoksa 2 -slug: Aktualizacja_rozszerzeń_do_Firefoksa_2 +slug: Mozilla/Firefox/Releases/2/Updating_extensions translation_of: Mozilla/Firefox/Releases/2/Updating_extensions +original_slug: Aktualizacja_rozszerzeń_do_Firefoksa_2 ---
{{FirefoxSidebar}}
diff --git a/files/pl/mozilla/firefox/releases/3/dom_improvements/index.html b/files/pl/mozilla/firefox/releases/3/dom_improvements/index.html index f9ad9e21e2..5d9a294098 100644 --- a/files/pl/mozilla/firefox/releases/3/dom_improvements/index.html +++ b/files/pl/mozilla/firefox/releases/3/dom_improvements/index.html @@ -1,11 +1,12 @@ --- title: Poprawki DOM w Firefoksie 3 -slug: Poprawki_DOM_w_Firefoksie_3 +slug: Mozilla/Firefox/Releases/3/DOM_improvements tags: - DOM - Firefox 3 - Wszystkie_kategorie translation_of: Mozilla/Firefox/Releases/3/DOM_improvements +original_slug: Poprawki_DOM_w_Firefoksie_3 ---
{{FirefoxSidebar}}
diff --git a/files/pl/mozilla/firefox/releases/3/notable_bugs_fixed/index.html b/files/pl/mozilla/firefox/releases/3/notable_bugs_fixed/index.html index f774d5c25b..a220f0f780 100644 --- a/files/pl/mozilla/firefox/releases/3/notable_bugs_fixed/index.html +++ b/files/pl/mozilla/firefox/releases/3/notable_bugs_fixed/index.html @@ -1,9 +1,10 @@ --- title: Istotne błędy poprawione w Firefoksie 3 -slug: Istotne_błędy_poprawione_w_Firefoksie_3 +slug: Mozilla/Firefox/Releases/3/Notable_bugs_fixed tags: - Strony_wymagające_dopracowania translation_of: Mozilla/Firefox/Releases/3/Notable_bugs_fixed +original_slug: Istotne_błędy_poprawione_w_Firefoksie_3 ---
{{FirefoxSidebar}}
diff --git a/files/pl/mozilla/firefox/releases/3/svg_improvements/index.html b/files/pl/mozilla/firefox/releases/3/svg_improvements/index.html index b063fb949e..0dff5aa7a8 100644 --- a/files/pl/mozilla/firefox/releases/3/svg_improvements/index.html +++ b/files/pl/mozilla/firefox/releases/3/svg_improvements/index.html @@ -1,11 +1,12 @@ --- title: Poprawki SVG w Firefoksie 3 -slug: Poprawki_SVG_w_Firefoksie_3 +slug: Mozilla/Firefox/Releases/3/SVG_improvements tags: - Firefox 3 - SVG - Wszystkie_kategorie translation_of: Mozilla/Firefox/Releases/3/SVG_improvements +original_slug: Poprawki_SVG_w_Firefoksie_3 ---
{{FirefoxSidebar}}
diff --git a/files/pl/mozilla/firefox/releases/3/updating_web_applications/index.html b/files/pl/mozilla/firefox/releases/3/updating_web_applications/index.html index 65742220e4..403cad5da3 100644 --- a/files/pl/mozilla/firefox/releases/3/updating_web_applications/index.html +++ b/files/pl/mozilla/firefox/releases/3/updating_web_applications/index.html @@ -1,9 +1,10 @@ --- title: Aktualizacja aplikacji internetowych dla Firefoksa 3 -slug: Aktualizacja_aplikacji_internetowych_dla_Firefoksa_3 +slug: Mozilla/Firefox/Releases/3/Updating_web_applications tags: - Firefox 3 translation_of: Mozilla/Firefox/Releases/3/Updating_web_applications +original_slug: Aktualizacja_aplikacji_internetowych_dla_Firefoksa_3 ---
{{FirefoxSidebar}}
diff --git a/files/pl/mozilla/firefox/releases/3/xul_improvements_in_firefox_3/index.html b/files/pl/mozilla/firefox/releases/3/xul_improvements_in_firefox_3/index.html index c6a0a1c764..0b19cf1653 100644 --- a/files/pl/mozilla/firefox/releases/3/xul_improvements_in_firefox_3/index.html +++ b/files/pl/mozilla/firefox/releases/3/xul_improvements_in_firefox_3/index.html @@ -1,12 +1,13 @@ --- title: Poprawki XUL w Firefoksie 3 -slug: Poprawki_XUL_w_Firefoksie_3 +slug: Mozilla/Firefox/Releases/3/XUL_improvements_in_Firefox_3 tags: - Firefox 3 - Strony_wymagające_dopracowania - Wszystkie_kategorie - XUL translation_of: Mozilla/Firefox/Releases/3/XUL_improvements_in_Firefox_3 +original_slug: Poprawki_XUL_w_Firefoksie_3 ---
{{FirefoxSidebar}}
diff --git "a/files/pl/orphaned/aktualizacja_rozszerze\305\204_dla_firefoksa_3/index.html" "b/files/pl/orphaned/aktualizacja_rozszerze\305\204_dla_firefoksa_3/index.html" index 225437339b..89e57df9e3 100644 --- "a/files/pl/orphaned/aktualizacja_rozszerze\305\204_dla_firefoksa_3/index.html" +++ "b/files/pl/orphaned/aktualizacja_rozszerze\305\204_dla_firefoksa_3/index.html" @@ -1,8 +1,9 @@ --- title: Aktualizacja rozszerzeń dla Firefoksa 3 -slug: Aktualizacja_rozszerzeń_dla_Firefoksa_3 +slug: orphaned/Aktualizacja_rozszerzeń_dla_Firefoksa_3 tags: - Firefox 3 +original_slug: Aktualizacja_rozszerzeń_dla_Firefoksa_3 ---

W tym artykule znajdują się informacje dla deweloperów chcących dostosować swoje rozszerzenia do pracy w Firefox 3.

diff --git "a/files/pl/orphaned/api_dost\304\231pu_do_danych_z_kana\305\202\303\263w/index.html" "b/files/pl/orphaned/api_dost\304\231pu_do_danych_z_kana\305\202\303\263w/index.html" index 6bcc84bba1..acd06f6c30 100644 --- "a/files/pl/orphaned/api_dost\304\231pu_do_danych_z_kana\305\202\303\263w/index.html" +++ "b/files/pl/orphaned/api_dost\304\231pu_do_danych_z_kana\305\202\303\263w/index.html" @@ -1,10 +1,11 @@ --- title: API dostępu do danych z kanałów -slug: API_dostępu_do_danych_z_kanałów +slug: orphaned/API_dostępu_do_danych_z_kanałów tags: - Dodatki - Rozszerzenia - Wszystkie_kategorie +original_slug: API_dostępu_do_danych_z_kanałów ---

 

Firefox 2 oraz Thunderbird 2 wprowadzają serię interfejsów, które pozwalają programistom rozszerzeń w łatwy sposób uzyskiwać dostęp do kanałów RSS i Atom.

diff --git a/files/pl/orphaned/dom_i_javascript/index.html b/files/pl/orphaned/dom_i_javascript/index.html index daf079833b..3bf2eebb78 100644 --- a/files/pl/orphaned/dom_i_javascript/index.html +++ b/files/pl/orphaned/dom_i_javascript/index.html @@ -1,10 +1,11 @@ --- title: DOM i JavaScript -slug: DOM_i_JavaScript +slug: orphaned/DOM_i_JavaScript tags: - DOM - JavaScript - Wszystkie_kategorie +original_slug: DOM_i_JavaScript ---

Ogólne pojęcie

diff --git "a/files/pl/orphaned/dynamiczne_zmiany_interfejsu_u\305\274ytkownika_bazuj\304\205cego_na_xul-u/index.html" "b/files/pl/orphaned/dynamiczne_zmiany_interfejsu_u\305\274ytkownika_bazuj\304\205cego_na_xul-u/index.html" index 1a97e80e84..23ab821a4f 100644 --- "a/files/pl/orphaned/dynamiczne_zmiany_interfejsu_u\305\274ytkownika_bazuj\304\205cego_na_xul-u/index.html" +++ "b/files/pl/orphaned/dynamiczne_zmiany_interfejsu_u\305\274ytkownika_bazuj\304\205cego_na_xul-u/index.html" @@ -1,12 +1,13 @@ --- title: Dynamiczne zmiany interfejsu użytkownika bazującego na XUL-u -slug: Dynamiczne_zmiany_interfejsu_użytkownika_bazującego_na_XUL-u +slug: orphaned/Dynamiczne_zmiany_interfejsu_użytkownika_bazującego_na_XUL-u tags: - DOM - Dodatki - Rozszerzenia - Wszystkie_kategorie - XUL +original_slug: Dynamiczne_zmiany_interfejsu_użytkownika_bazującego_na_XUL-u ---

 

Poniższy artykuł opisuje manipulacje interfejsami XUL używając DOM oraz innych API. Objaśnia koncepcję diff --git "a/files/pl/orphaned/firefox_-_potrzeba_wolno\305\233ci/index.html" "b/files/pl/orphaned/firefox_-_potrzeba_wolno\305\233ci/index.html" index 9cf6dddce2..5bebd82f21 100644 --- "a/files/pl/orphaned/firefox_-_potrzeba_wolno\305\233ci/index.html" +++ "b/files/pl/orphaned/firefox_-_potrzeba_wolno\305\233ci/index.html" @@ -1,9 +1,10 @@ --- title: Firefox - potrzeba wolności -slug: Firefox_-_potrzeba_wolności +slug: orphaned/Firefox_-_potrzeba_wolności tags: - Prezentacje - Wszystkie_kategorie +original_slug: Firefox_-_potrzeba_wolności ---

diff --git "a/files/pl/orphaned/firefox_3_dla_programist\303\263w/index.html" "b/files/pl/orphaned/firefox_3_dla_programist\303\263w/index.html" index 80ffaf8dba..6954c6a084 100644 --- "a/files/pl/orphaned/firefox_3_dla_programist\303\263w/index.html" +++ "b/files/pl/orphaned/firefox_3_dla_programist\303\263w/index.html" @@ -1,8 +1,9 @@ --- title: Firefox 3 dla programistów -slug: Firefox_3_dla_programistów +slug: orphaned/Firefox_3_dla_programistów tags: - Firefox 3 +original_slug: Firefox_3_dla_programistów ---

Jeżeli jesteś programistą chcącym opanować nowe możliwości Firefoksa 3, strona ta jest idealnym punktem startowym — znajdziesz tu listę artykułów opisujących nowości wprowadzone w przeglądarce. Choć nie wymieniono tu wszystkich zmian, wspomniane są wszystkie najważniejsze wprowadzone poprawki.

diff --git "a/files/pl/orphaned/lista_komponent\303\263w_xpcom/index.html" "b/files/pl/orphaned/lista_komponent\303\263w_xpcom/index.html" index db4ee1e416..4b84be3011 100644 --- "a/files/pl/orphaned/lista_komponent\303\263w_xpcom/index.html" +++ "b/files/pl/orphaned/lista_komponent\303\263w_xpcom/index.html" @@ -1,11 +1,12 @@ --- title: Lista komponentów XPCOM -slug: Lista_komponentów_XPCOM +slug: orphaned/Lista_komponentów_XPCOM tags: - Dokumentacja_API_XPCOM - Komponenty - Wszystkie_kategorie - XPCOM +original_slug: Lista_komponentów_XPCOM ---

Będą tu komponenty - podobne do listy interfejsów.

diff --git a/files/pl/orphaned/mdn/contribute/howto/create_an_mdn_account/index.html b/files/pl/orphaned/mdn/contribute/howto/create_an_mdn_account/index.html index ed988c32bc..9106e6630c 100644 --- a/files/pl/orphaned/mdn/contribute/howto/create_an_mdn_account/index.html +++ b/files/pl/orphaned/mdn/contribute/howto/create_an_mdn_account/index.html @@ -1,6 +1,6 @@ --- title: Jak utworzyć konto MDN -slug: MDN/Contribute/Howto/Create_an_MDN_account +slug: orphaned/MDN/Contribute/Howto/Create_an_MDN_account tags: - Beginner - Guide @@ -10,6 +10,7 @@ tags: - podręcznik - zacznij translation_of: MDN/Contribute/Howto/Create_an_MDN_account +original_slug: MDN/Contribute/Howto/Create_an_MDN_account ---
{{MDNSidebar}}

Wstęp współdworz MDN, sửa các thay đổi và các trang cần thiết là MDN. Profil does not we expected, unwatched MDN i useful załeych tu information. Ten krótkie poradnik Ci Successful Accounts MDN.

diff --git a/files/pl/orphaned/mdn/contribute/howto/do_a_technical_review/index.html b/files/pl/orphaned/mdn/contribute/howto/do_a_technical_review/index.html index 624ea0dc0d..c2e018c8a2 100644 --- a/files/pl/orphaned/mdn/contribute/howto/do_a_technical_review/index.html +++ b/files/pl/orphaned/mdn/contribute/howto/do_a_technical_review/index.html @@ -1,7 +1,8 @@ --- title: How to do a technical review -slug: MDN/Contribute/Howto/Do_a_technical_review +slug: orphaned/MDN/Contribute/Howto/Do_a_technical_review translation_of: MDN/Contribute/Howto/Do_a_technical_review +original_slug: MDN/Contribute/Howto/Do_a_technical_review ---
{{MDNSidebar}}

Technical review consists of reviewing the technical accuracy and completeness of an article, and correcting it if necessary. If a writer of an article wants someone else to check the technical content of an article, the writer ticks the "Technical review" checkbox while editing. Often the writer contacts a specific engineer to perform the technical review, but anyone with technical expertise in the topic can do one.

diff --git a/files/pl/orphaned/mdn/contribute/howto/do_an_editorial_review/index.html b/files/pl/orphaned/mdn/contribute/howto/do_an_editorial_review/index.html index 5c7876a4b7..47c22f99fb 100644 --- a/files/pl/orphaned/mdn/contribute/howto/do_an_editorial_review/index.html +++ b/files/pl/orphaned/mdn/contribute/howto/do_an_editorial_review/index.html @@ -1,6 +1,6 @@ --- -title: 'Jak budować, edytować dany artykuł' -slug: MDN/Contribute/Howto/Budowa_dany_edycja_artykuł +title: Jak budować, edytować dany artykuł +slug: orphaned/MDN/Contribute/Howto/Do_an_editorial_review tags: - Dokumentacja - Edycja artykułu @@ -9,6 +9,7 @@ tags: - Wprowadzanie zmian - Wprowadzanie zmian w hasłach translation_of: MDN/Contribute/Howto/Do_an_editorial_review +original_slug: MDN/Contribute/Howto/Budowa_dany_edycja_artykuł ---

{{MDNSidebar}}

diff --git a/files/pl/orphaned/mdn/contribute/howto/set_the_summary_for_a_page/index.html b/files/pl/orphaned/mdn/contribute/howto/set_the_summary_for_a_page/index.html index e3c2632242..5e86534083 100644 --- a/files/pl/orphaned/mdn/contribute/howto/set_the_summary_for_a_page/index.html +++ b/files/pl/orphaned/mdn/contribute/howto/set_the_summary_for_a_page/index.html @@ -1,7 +1,8 @@ --- title: How to set the summary for a page -slug: MDN/Contribute/Howto/Set_the_summary_for_a_page +slug: orphaned/MDN/Contribute/Howto/Set_the_summary_for_a_page translation_of: MDN/Contribute/Howto/Set_the_summary_for_a_page +original_slug: MDN/Contribute/Howto/Set_the_summary_for_a_page ---
{{MDNSidebar}}

Możesz opracować streszczenie strony MDN. Twoje streszczenie zostanie potem wykorzystane w wielu miejscach: w wynikach wyszukiwania, na innych stronach MDN, takich jak np. strony tematyczne, oraz w dymkach z podpowiedziami. Twój tekst powinien być zrozumiały zarówno jako fragment oryginalnej strony, jak i wtedy, gdy zostanie wyrwany z kontekstu i wyświetlony samodzielnie na innej stronie.

Każda strona może mieć zdefiniowane streszczenie. Jeśli jednak go nie ma, streszczenie jest tworzone automatycznie na podstawie pierwszych paru zdań tekstu. Niestety to nie zawsze jest najlepszy wybór.

diff --git a/files/pl/orphaned/mdn/contribute/howto/tag_javascript_pages/index.html b/files/pl/orphaned/mdn/contribute/howto/tag_javascript_pages/index.html index 4d0f8b785f..e05e986f74 100644 --- a/files/pl/orphaned/mdn/contribute/howto/tag_javascript_pages/index.html +++ b/files/pl/orphaned/mdn/contribute/howto/tag_javascript_pages/index.html @@ -1,11 +1,12 @@ --- title: How to tag JavaScript pages -slug: MDN/Contribute/Howto/Tag_JavaScript_pages +slug: orphaned/MDN/Contribute/Howto/Tag_JavaScript_pages tags: - JavaScript - MDN - Poradnik translation_of: MDN/Contribute/Howto/Tag_JavaScript_pages +original_slug: MDN/Contribute/Howto/Tag_JavaScript_pages ---
{{MDNSidebar}}
diff --git "a/files/pl/orphaned/modu\305\202y_javascript/index.html" "b/files/pl/orphaned/modu\305\202y_javascript/index.html" index e9f023463a..6174200524 100644 --- "a/files/pl/orphaned/modu\305\202y_javascript/index.html" +++ "b/files/pl/orphaned/modu\305\202y_javascript/index.html" @@ -1,11 +1,12 @@ --- title: Moduły JavaScript -slug: Moduły_JavaScript +slug: orphaned/Moduły_JavaScript tags: - Firefox 3 - JavaScript - Wszystkie_kategorie - XPConnect +original_slug: Moduły_JavaScript ---

{{ Fx_minversion_header(3) }} diff --git a/files/pl/orphaned/mozilla/add-ons/webextensions/getting_started_with_web-ext/index.html b/files/pl/orphaned/mozilla/add-ons/webextensions/getting_started_with_web-ext/index.html index d88ccda07e..dc2832a06e 100644 --- a/files/pl/orphaned/mozilla/add-ons/webextensions/getting_started_with_web-ext/index.html +++ b/files/pl/orphaned/mozilla/add-ons/webextensions/getting_started_with_web-ext/index.html @@ -1,7 +1,8 @@ --- title: Pierwsze kroki z web-ext -slug: Mozilla/Add-ons/WebExtensions/Pierwsze_kroki_z_web-ext +slug: orphaned/Mozilla/Add-ons/WebExtensions/Getting_started_with_web-ext translation_of: Mozilla/Add-ons/WebExtensions/Getting_started_with_web-ext +original_slug: Mozilla/Add-ons/WebExtensions/Pierwsze_kroki_z_web-ext ---

{{AddonSidebar}}
diff --git "a/files/pl/orphaned/narz\304\231dzia_clone/index.html" "b/files/pl/orphaned/narz\304\231dzia_clone/index.html" index 36a5550681..5fc1a82b71 100644 --- "a/files/pl/orphaned/narz\304\231dzia_clone/index.html" +++ "b/files/pl/orphaned/narz\304\231dzia_clone/index.html" @@ -1,8 +1,9 @@ --- title: Narzędzia dla programistów Firefox -slug: Narzędzia_clone +slug: orphaned/Narzędzia_clone tags: - Narzędzia +original_slug: Narzędzia_clone ---

This should not be merged with Web development, as this also applies to XUL/JS development

diff --git a/files/pl/orphaned/nsiinputstream/index.html b/files/pl/orphaned/nsiinputstream/index.html index 4096e7b899..1a2193360e 100644 --- a/files/pl/orphaned/nsiinputstream/index.html +++ b/files/pl/orphaned/nsiinputstream/index.html @@ -1,13 +1,14 @@ --- title: nsIInputStream -slug: nsIInputStream +slug: orphaned/nsIInputStream tags: - Dokumentacja_API_XPCOM - Interfejsy - - 'Interfejsy:Skryptowalne' - - 'Interfejsy:Zamrożone' + - Interfejsy:Skryptowalne + - Interfejsy:Zamrożone - Wszystkie_kategorie - XPCOM +original_slug: nsIInputStream ---

« Dokumentacja API XPCOM diff --git a/files/pl/orphaned/nsixulappinfo/index.html b/files/pl/orphaned/nsixulappinfo/index.html index d7dfce9ac1..4918ac55ca 100644 --- a/files/pl/orphaned/nsixulappinfo/index.html +++ b/files/pl/orphaned/nsixulappinfo/index.html @@ -1,13 +1,14 @@ --- title: nsIXULAppInfo -slug: nsIXULAppInfo +slug: orphaned/nsIXULAppInfo tags: - Dokumentacja_API_XPCOM - Interfejsy - - 'Interfejsy:Skryptowalne' - - 'Interfejsy:Zamrożone' + - Interfejsy:Skryptowalne + - Interfejsy:Zamrożone - Wszystkie_kategorie - XPCOM +original_slug: nsIXULAppInfo ---

diff --git "a/files/pl/orphaned/porady_odno\305\233nie_tworzenia_szybko_\305\202aduj\304\205cych_si\304\231_stron_html/index.html" "b/files/pl/orphaned/porady_odno\305\233nie_tworzenia_szybko_\305\202aduj\304\205cych_si\304\231_stron_html/index.html" index ca28673b5a..77f8ef024e 100644 --- "a/files/pl/orphaned/porady_odno\305\233nie_tworzenia_szybko_\305\202aduj\304\205cych_si\304\231_stron_html/index.html" +++ "b/files/pl/orphaned/porady_odno\305\233nie_tworzenia_szybko_\305\202aduj\304\205cych_si\304\231_stron_html/index.html" @@ -1,9 +1,10 @@ --- title: Porady odnośnie tworzenia szybko ładujących się stron HTML -slug: Porady_odnośnie_tworzenia_szybko_ładujących_się_stron_HTML +slug: orphaned/Porady_odnośnie_tworzenia_szybko_ładujących_się_stron_HTML tags: - HTML - Wszystkie_kategorie +original_slug: Porady_odnośnie_tworzenia_szybko_ładujących_się_stron_HTML ---

Streszczenie: Nauczyć się zdroworozsądkowych porad odnośnie tworzenia stron HTML, które ładują się szybko i dają satysfakcję odwiedzającemu.

diff --git a/files/pl/orphaned/programowanie_mozilli/index.html b/files/pl/orphaned/programowanie_mozilli/index.html index c870d96da8..675fe601a4 100644 --- a/files/pl/orphaned/programowanie_mozilli/index.html +++ b/files/pl/orphaned/programowanie_mozilli/index.html @@ -1,10 +1,11 @@ --- title: Programowanie Mozilli -slug: Programowanie_Mozilli +slug: orphaned/Programowanie_Mozilli tags: - Programowanie_Mozilli - Strony_wymagające_dopracowania - Wszystkie_kategorie +original_slug: Programowanie_Mozilli ---

Chcesz pomóc w poprawieniu błędów, ale nie wiesz gdzie zacząć? Znalazłeś odpowiednie miejsce. Tu dowiesz się jak pobrać kod źródłowy, skompilować go, stworzyć poprawkę, dodać ją do drzewa, i wszystkich innych ważnych rzeczy, które każdy programista Mozilli powinien znać.

diff --git "a/files/pl/orphaned/przygotowanie_\305\233rodowiska_programowania_rozszerzenia/index.html" "b/files/pl/orphaned/przygotowanie_\305\233rodowiska_programowania_rozszerzenia/index.html" index 9b34d45c24..ac082ea18b 100644 --- "a/files/pl/orphaned/przygotowanie_\305\233rodowiska_programowania_rozszerzenia/index.html" +++ "b/files/pl/orphaned/przygotowanie_\305\233rodowiska_programowania_rozszerzenia/index.html" @@ -1,10 +1,11 @@ --- title: Przygotowanie środowiska programowania rozszerzenia -slug: Przygotowanie_środowiska_programowania_rozszerzenia +slug: orphaned/Przygotowanie_środowiska_programowania_rozszerzenia tags: - Dodatki - Rozszerzenia - Wszystkie_kategorie +original_slug: Przygotowanie_środowiska_programowania_rozszerzenia ---

 

W tym artykule przedstawiono propozycje skonfigurowania aplikacji Mozilla w celu dostosowania jej do potrzeb programowania rozszerzeń.

diff --git "a/files/pl/orphaned/tutorial_lokalizacji_rozszerze\305\204_do_firefoksa_i_thunderbirda_dla_wersji_1.0_i_wy\305\274szych/index.html" "b/files/pl/orphaned/tutorial_lokalizacji_rozszerze\305\204_do_firefoksa_i_thunderbirda_dla_wersji_1.0_i_wy\305\274szych/index.html" index 4646bd6776..99eafa64f0 100644 --- "a/files/pl/orphaned/tutorial_lokalizacji_rozszerze\305\204_do_firefoksa_i_thunderbirda_dla_wersji_1.0_i_wy\305\274szych/index.html" +++ "b/files/pl/orphaned/tutorial_lokalizacji_rozszerze\305\204_do_firefoksa_i_thunderbirda_dla_wersji_1.0_i_wy\305\274szych/index.html" @@ -3,11 +3,13 @@ title: >- Tutorial lokalizacji rozszerzeń do Firefoksa i Thunderbirda dla wersji 1.0 i wyższych slug: >- - Tutorial_lokalizacji_rozszerzeń_do_Firefoksa_i_Thunderbirda_dla_wersji_1.0_i_wyższych + orphaned/Tutorial_lokalizacji_rozszerzeń_do_Firefoksa_i_Thunderbirda_dla_wersji_1.0_i_wyższych tags: - Dodatki - Rozszerzenia - Wszystkie_kategorie +original_slug: >- + Tutorial_lokalizacji_rozszerzeń_do_Firefoksa_i_Thunderbirda_dla_wersji_1.0_i_wyższych ---

diff --git a/files/pl/orphaned/web/api/stylesheet/ownerrule/index.html b/files/pl/orphaned/web/api/stylesheet/ownerrule/index.html index 93d73c35c5..5e80ebe2da 100644 --- a/files/pl/orphaned/web/api/stylesheet/ownerrule/index.html +++ b/files/pl/orphaned/web/api/stylesheet/ownerrule/index.html @@ -1,11 +1,12 @@ --- title: stylesheet.ownerRule -slug: Web/API/Stylesheet/ownerRule +slug: orphaned/Web/API/Stylesheet/ownerRule tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie +original_slug: Web/API/Stylesheet/ownerRule ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/orphaned/web/html/element/comment/index.html b/files/pl/orphaned/web/html/element/comment/index.html index 6c7c3b7187..ece2baf0f6 100644 --- a/files/pl/orphaned/web/html/element/comment/index.html +++ b/files/pl/orphaned/web/html/element/comment/index.html @@ -1,8 +1,9 @@ --- title: comment -slug: Web/HTML/Element/comment +slug: orphaned/Web/HTML/Element/comment tags: - - 'HTML:Opis_elementów' + - HTML:Opis_elementów +original_slug: Web/HTML/Element/comment ---

 

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/dodawanie_obiektom_nowej_funkcjonalno\305\233ci/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/dodawanie_obiektom_nowej_funkcjonalno\305\233ci/index.html" index 9ba9895af5..e6d709946d 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/dodawanie_obiektom_nowej_funkcjonalno\305\233ci/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/dodawanie_obiektom_nowej_funkcjonalno\305\233ci/index.html" @@ -1,6 +1,8 @@ --- title: Dodawanie obiektom nowej funkcjonalności. slug: >- + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Dodawanie_obiektom_nowej_funkcjonalności. +original_slug: >- Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Dodawanie_obiektom_nowej_funkcjonalności. ---

Każdy obiekt JavaScriptu posiada zadeklarowane, właściwe dla siebie funkcje, jak np. obiekt String posiada takie funkcje jak toUpperCase() czy toLowerCase(), które odpowiadają odpowiednio za przekonwertowanie liter na duże i małe. Za pomocą prototypów możemy dodać własne funkcje. Poniżej przedstawiony został kod, który zwraca pierwszą literę łańcucha znaków, na którym została wykonana nasza metoda.

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_manipulacji_obiektem/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_manipulacji_obiektem/index.html" index 45442f2c63..fd480baaa0 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_manipulacji_obiektem/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_manipulacji_obiektem/index.html" @@ -1,10 +1,12 @@ --- title: Instrukcje manipulacji obiektem slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_manipulacji_obiektem + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_manipulacji_obiektem tags: - JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_manipulacji_obiektem ---

 

Instrukcja manipulacji obiektem

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_obs\305\202ugi_wyj\304\205tk\303\263w/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_obs\305\202ugi_wyj\304\205tk\303\263w/index.html" index a31e3144d3..7c7cb73aba 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_obs\305\202ugi_wyj\304\205tk\303\263w/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_obs\305\202ugi_wyj\304\205tk\303\263w/index.html" @@ -1,11 +1,13 @@ --- title: Instrukcje obsługi wyjątków slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków ---

 

Instrukcje obsługi wyjątków

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_obs\305\202ugi_wyj\304\205tk\303\263w/instrukcja_throw/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_obs\305\202ugi_wyj\304\205tk\303\263w/instrukcja_throw/index.html" index d09220143a..18944e3ca0 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_obs\305\202ugi_wyj\304\205tk\303\263w/instrukcja_throw/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_obs\305\202ugi_wyj\304\205tk\303\263w/instrukcja_throw/index.html" @@ -1,11 +1,13 @@ --- title: Instrukcja throw slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_throw + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_throw tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_throw ---

Instrukcja throw

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_obs\305\202ugi_wyj\304\205tk\303\263w/instrukcja_try...catch/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_obs\305\202ugi_wyj\304\205tk\303\263w/instrukcja_try...catch/index.html" index 229633025c..f9d1e27010 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_obs\305\202ugi_wyj\304\205tk\303\263w/instrukcja_try...catch/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_obs\305\202ugi_wyj\304\205tk\303\263w/instrukcja_try...catch/index.html" @@ -1,10 +1,12 @@ --- title: Instrukcja try...catch slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_try...catch + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_try...catch tags: - JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_obsługi_wyjątków/Instrukcja_try...catch ---

 

Instrukcja try...catch

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_break/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_break/index.html" index 108f315058..60ba2b381e 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_break/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_break/index.html" @@ -1,10 +1,12 @@ --- title: Instrukcja break slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_break + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_break tags: - JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_break ---

 

Instrukcja break

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_continue/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_continue/index.html" index dee2eda4ee..e34bd2d3c7 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_continue/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_continue/index.html" @@ -1,10 +1,12 @@ --- title: Instrukcja continue slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue tags: - JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_continue ---

 

Instrukcja continue

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_do_...while/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_do_...while/index.html" index 6c770f4ae6..bcf8ee6c0a 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_do_...while/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_do_...while/index.html" @@ -1,10 +1,12 @@ --- title: Instrukcja do ...while slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while tags: - JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_do_...while ---

 

Instrukcja do...while

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_for/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_for/index.html" index c13c4558fb..26a1d6ae95 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_for/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_for/index.html" @@ -1,10 +1,12 @@ --- title: Instrukcja for slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_for + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_for tags: - JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_for ---

 

Instrukcja for

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_label/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_label/index.html" index e95a452b8f..399b465450 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_label/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_label/index.html" @@ -1,10 +1,12 @@ --- title: Instrukcja label slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_label + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_label tags: - JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_label ---

 

Instrukcja label

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_while/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_while/index.html" index 48ecacaa70..2d6fe74eab 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_while/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/instrukcje_p\304\231tli/instrukcja_while/index.html" @@ -1,10 +1,12 @@ --- title: Instrukcja while slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_while + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_while tags: - JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Instrukcje_pętli/Instrukcja_while ---

 

Instrukcja while

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/o_tym_przewodniku/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/o_tym_przewodniku/index.html" index 0fd0f2ec8a..59e73c9eb9 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/o_tym_przewodniku/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/o_tym_przewodniku/index.html" @@ -1,12 +1,14 @@ --- title: O tym przewodniku slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku tags: - JavaScript - Przewodnik_JavaScript - Strony_wymagające_dopracowania - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/O_tym_przewodniku ---

Nowe możliwości wersji JavaScriptu

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_array/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_array/index.html" index 9befbd17cc..ef2c4710fe 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_array/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_array/index.html" @@ -1,11 +1,13 @@ --- title: Obiekt Array slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Array + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Array tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Array ---

 

Obiekt Array

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_boolean/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_boolean/index.html" index ff6e5b774a..e5f39bbaf6 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_boolean/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_boolean/index.html" @@ -1,10 +1,12 @@ --- title: Obiekt Boolean slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean tags: - JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Boolean ---

 

Obiekt Boolean

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_date/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_date/index.html" index e0dc4845d8..fc278291a8 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_date/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_date/index.html" @@ -1,10 +1,12 @@ --- title: Obiekt Date slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Date + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Date tags: - JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Date ---

 

Obiekt Date

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_function/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_function/index.html" index 02eef23d82..eea3fc0664 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_function/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_function/index.html" @@ -1,11 +1,13 @@ --- title: Obiekt function slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_function + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_function tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_function ---

 

Obiekt Function

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_math/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_math/index.html" index b09ad2f801..70ffd5ee1c 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_math/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_math/index.html" @@ -1,10 +1,12 @@ --- title: Obiekt Math slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Math + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Math tags: - JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Math ---

 

Obiekt Math

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_number/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_number/index.html" index d66696774b..053a515787 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_number/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_number/index.html" @@ -1,11 +1,13 @@ --- title: Obiekt Number slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Number + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Number tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_Number ---

 

Obiekt Number

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_regexp/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_regexp/index.html" index 120abc3cb9..02e3c1bf75 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_regexp/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_regexp/index.html" @@ -1,11 +1,13 @@ --- title: Obiekt RegExp slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_RegExp + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_RegExp tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_RegExp ---

 

Obiekt RegExp

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_string/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_string/index.html" index dc7aa33326..f2c0ed1c5e 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_string/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/obiekty_predefiniowane/obiekt_string/index.html" @@ -1,11 +1,13 @@ --- title: Obiekt String slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_String + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_String tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_predefiniowane/Obiekt_String ---

 

Obiekt String

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/operatory/operatory_przypisania/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/operatory/operatory_przypisania/index.html" index 8af382eee6..f679d58fd4 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/operatory/operatory_przypisania/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/operatory/operatory_przypisania/index.html" @@ -1,11 +1,13 @@ --- title: Operatory przypisania slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_przypisania + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_przypisania tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory/Operatory_przypisania ---

 

Operatory przypisania

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/podgl\304\205d_klas_liveconnect/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/podgl\304\205d_klas_liveconnect/index.html" index 2dd4acf285..b325337c1c 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/podgl\304\205d_klas_liveconnect/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/podgl\304\205d_klas_liveconnect/index.html" @@ -1,11 +1,13 @@ --- title: Podgląd klas LiveConnect slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Podgląd_klas_LiveConnect ---

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_przyk\305\202adem/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_przyk\305\202adem/index.html" index 28e5f9255c..0df958c42a 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_przyk\305\202adem/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_przyk\305\202adem/index.html" @@ -1,11 +1,13 @@ --- title: Praca z przykładem slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem ---

 

Przykład obiektu Pracownik

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_przyk\305\202adem/tworzenie_hierarchii/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_przyk\305\202adem/tworzenie_hierarchii/index.html" index a15422c92d..c019ca8ec5 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_przyk\305\202adem/tworzenie_hierarchii/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_przyk\305\202adem/tworzenie_hierarchii/index.html" @@ -1,11 +1,13 @@ --- title: Tworzenie hierarchii slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Tworzenie_hierarchii + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Tworzenie_hierarchii tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Tworzenie_hierarchii ---

 

Tworzenie hierarchii

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_przyk\305\202adem/w\305\202asno\305\233ci_obiektu/dodawanie_w\305\202asno\305\233ci/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_przyk\305\202adem/w\305\202asno\305\233ci_obiektu/dodawanie_w\305\202asno\305\233ci/index.html" index ec2e836159..c7e869fa77 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_przyk\305\202adem/w\305\202asno\305\233ci_obiektu/dodawanie_w\305\202asno\305\233ci/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_przyk\305\202adem/w\305\202asno\305\233ci_obiektu/dodawanie_w\305\202asno\305\233ci/index.html" @@ -1,11 +1,13 @@ --- title: Dodawanie własności slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dodawanie_własności ---

 

Dodawanie własności

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_przyk\305\202adem/w\305\202asno\305\233ci_obiektu/dziedziczenie_w\305\202asno\305\233ci/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_przyk\305\202adem/w\305\202asno\305\233ci_obiektu/dziedziczenie_w\305\202asno\305\233ci/index.html" index 8287857c63..ec980462c8 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_przyk\305\202adem/w\305\202asno\305\233ci_obiektu/dziedziczenie_w\305\202asno\305\233ci/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_przyk\305\202adem/w\305\202asno\305\233ci_obiektu/dziedziczenie_w\305\202asno\305\233ci/index.html" @@ -1,11 +1,13 @@ --- title: Dziedziczenie własności slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu/Dziedziczenie_własności ---

 

Dziedziczenie własności

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_przyk\305\202adem/w\305\202asno\305\233ci_obiektu/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_przyk\305\202adem/w\305\202asno\305\233ci_obiektu/index.html" index 85957fa7fc..96a1870795 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_przyk\305\202adem/w\305\202asno\305\233ci_obiektu/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_przyk\305\202adem/w\305\202asno\305\233ci_obiektu/index.html" @@ -1,11 +1,13 @@ --- title: Własności obiektu slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_przykładem/Własności_obiektu ---

 

Własności obiektu

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_wyra\305\274eniami_regularnymi/przyk\305\202ady_wyra\305\274e\305\204_regularnych/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_wyra\305\274eniami_regularnymi/przyk\305\202ady_wyra\305\274e\305\204_regularnych/index.html" index f615d23035..f4575a4108 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_wyra\305\274eniami_regularnymi/przyk\305\202ady_wyra\305\274e\305\204_regularnych/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_wyra\305\274eniami_regularnymi/przyk\305\202ady_wyra\305\274e\305\204_regularnych/index.html" @@ -1,11 +1,13 @@ --- title: Przykłady wyrażeń regularnych slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Przykłady_wyrażeń_regularnych + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Przykłady_wyrażeń_regularnych tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Przykłady_wyrażeń_regularnych ---

 

Przykłady

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_zamkni\304\231ciami/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_zamkni\304\231ciami/index.html" index fc71b64cad..f645856505 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_zamkni\304\231ciami/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/praca_z_zamkni\304\231ciami/index.html" @@ -1,6 +1,8 @@ --- title: Praca z zamknięciami slug: >- + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_zamknięciami +original_slug: >- Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_zamknięciami ---

Praca z zamknięciami

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/definiowanie_metod/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/definiowanie_metod/index.html" index 64b164df13..996ebdd80f 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/definiowanie_metod/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/definiowanie_metod/index.html" @@ -1,11 +1,13 @@ --- title: Definiowanie metod slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_metod + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_metod tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_metod ---

 

Definiowanie metod

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/definiowanie_w\305\202asno\305\233ci_typu_obiektu/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/definiowanie_w\305\202asno\305\233ci_typu_obiektu/index.html" index e52ead3f93..4ee9e32019 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/definiowanie_w\305\202asno\305\233ci_typu_obiektu/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/definiowanie_w\305\202asno\305\233ci_typu_obiektu/index.html" @@ -1,11 +1,13 @@ --- title: Definiowanie własności typu obiektu slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Definiowanie_własności_typu_obiektu ---

 

Definiowanie własności typu obiektu

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/indeksowanie_w\305\202asno\305\233ci_obiektu/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/indeksowanie_w\305\202asno\305\233ci_obiektu/index.html" index c7d904e907..ac597e13ee 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/indeksowanie_w\305\202asno\305\233ci_obiektu/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/indeksowanie_w\305\202asno\305\233ci_obiektu/index.html" @@ -1,11 +1,13 @@ --- title: Indeksowanie własności obiektu slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Indeksowanie_własności_obiektu ---

 

Indeksowanie własności obiektu

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/index.html" index 44ccf12523..719cf314b6 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/index.html" @@ -1,11 +1,13 @@ --- title: Tworzenie nowych obiektów slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów ---

 

Tworzenie nowych obiektów

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/usuwanie_w\305\202asno\305\233ci/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/usuwanie_w\305\202asno\305\233ci/index.html" index ade0f3875e..fd9a21a7bf 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/usuwanie_w\305\202asno\305\233ci/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/usuwanie_w\305\202asno\305\233ci/index.html" @@ -1,10 +1,12 @@ --- title: Usuwanie własności slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności tags: - JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Usuwanie_własności ---

 

Usuwanie właściwości

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/u\305\274ywanie_inicjacji_obiektu/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/u\305\274ywanie_inicjacji_obiektu/index.html" index b1b38112d9..37d998fc68 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/u\305\274ywanie_inicjacji_obiektu/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/u\305\274ywanie_inicjacji_obiektu/index.html" @@ -1,12 +1,14 @@ --- title: Używanie inicjacji obiektu slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu tags: - JavaScript - Przewodnik_JavaScript - Strony_wymagające_dopracowania - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Używanie_inicjacji_obiektu ---

Zastosowanie inicjacji obiektu

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/zastosowanie_'this'_do_obiektu_referencji/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/zastosowanie_'this'_do_obiektu_referencji/index.html" index 2b4ad01835..8f090e4c69 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/zastosowanie_'this'_do_obiektu_referencji/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/zastosowanie_'this'_do_obiektu_referencji/index.html" @@ -1,11 +1,13 @@ --- title: Zastosowanie 'this' do obiektu referencji slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_'this'_do_obiektu_referencji ---

 

Zastosowanie this do obiektu referencji

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/zastosowanie_konstruktor\303\263w_funkcji/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/zastosowanie_konstruktor\303\263w_funkcji/index.html" index 1c5d6cdbda..75843b9ee9 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/zastosowanie_konstruktor\303\263w_funkcji/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_nowych_obiekt\303\263w/zastosowanie_konstruktor\303\263w_funkcji/index.html" @@ -1,11 +1,13 @@ --- title: Zastosowanie konstruktorów funkcji slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_nowych_obiektów/Zastosowanie_konstruktorów_funkcji ---

 

Zastosowaniem konstruktorów funkcji

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_wyra\305\274enia_regularnego/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_wyra\305\274enia_regularnego/index.html" index e6a76041a3..f521332e6f 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_wyra\305\274enia_regularnego/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/tworzenie_wyra\305\274enia_regularnego/index.html" @@ -1,11 +1,13 @@ --- title: Tworzenie wyrażenia regularnego slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_wyrażenia_regularnego + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_wyrażenia_regularnego tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Tworzenie_wyrażenia_regularnego ---

 

Tworzenie wyrażenia regularnego

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/zapisywanie_wzorca_wyra\305\274enia_regularnego/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/zapisywanie_wzorca_wyra\305\274enia_regularnego/index.html" index 65c13b3816..0caafa3724 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/zapisywanie_wzorca_wyra\305\274enia_regularnego/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/zapisywanie_wzorca_wyra\305\274enia_regularnego/index.html" @@ -1,12 +1,14 @@ --- title: Zapisywanie wzorca wyrażenia regularnego slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego tags: - JavaScript - Przewodnik_JavaScript - Strony_wymagające_dopracowania - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zapisywanie_wzorca_wyrażenia_regularnego ---

Zapisywanie wzorca wyrażenia regularnego

diff --git "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/zastosowanie_obiektu_arguments/index.html" "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/zastosowanie_obiektu_arguments/index.html" index 8422fdf2c0..0eedd684db 100644 --- "a/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/zastosowanie_obiektu_arguments/index.html" +++ "b/files/pl/orphaned/web/javascript/guide/obsolete_pages/przewodnik_po_j\304\231zyku_javascript_1.5/zastosowanie_obiektu_arguments/index.html" @@ -1,11 +1,13 @@ --- title: Zastosowanie obiektu arguments slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments + orphaned/Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Zastosowanie_obiektu_arguments ---

 

Zastosowanie obiektu arguments

diff --git "a/files/pl/orphaned/web/javascript/na_pocz\304\205tek/index.html" "b/files/pl/orphaned/web/javascript/na_pocz\304\205tek/index.html" index 44f95f6c62..58486cbea7 100644 --- "a/files/pl/orphaned/web/javascript/na_pocz\304\205tek/index.html" +++ "b/files/pl/orphaned/web/javascript/na_pocz\304\205tek/index.html" @@ -1,10 +1,11 @@ --- title: Na początek -slug: Web/JavaScript/Na_początek +slug: orphaned/Web/JavaScript/Na_początek tags: - JavaScript - Strony_wymagające_dopracowania - Wszystkie_kategorie +original_slug: Web/JavaScript/Na_początek ---
UWAGA, UWAGA!: Pomimo tego, że artykuł jest wywieszony jako artykuł do dopracowania, to mimo to, PROSZĘ go na razie NIE TŁUMACZYĆ. Powodem jest to, że tekst w sporej mierze jest już przetłumaczony. Więc po prostu szkoda zapału i zużywania energii na coś co już jest w wersji PL. W ramach tego samego czasu możecie przetłumaczyć coś, czego nie ma na 100% w dopracowanych. Ptak82 17:18, 13 mar 2007 (PDT)
diff --git a/files/pl/orphaned/web/javascript/reference/global_objects/array/prototype/index.html b/files/pl/orphaned/web/javascript/reference/global_objects/array/prototype/index.html index 94cbd2b287..b899fe86d0 100644 --- a/files/pl/orphaned/web/javascript/reference/global_objects/array/prototype/index.html +++ b/files/pl/orphaned/web/javascript/reference/global_objects/array/prototype/index.html @@ -1,9 +1,10 @@ --- title: Array.prototype -slug: Web/JavaScript/Referencje/Obiekty/Array/prototype +slug: orphaned/Web/JavaScript/Reference/Global_Objects/Array/prototype tags: - JavaScript translation_of: Web/JavaScript/Reference/Global_Objects/Array/prototype +original_slug: Web/JavaScript/Referencje/Obiekty/Array/prototype ---
{{JSRef("Global_Objects", "Array")}}
diff --git a/files/pl/orphaned/web/javascript/referencje/o_tym_dokumencie/konwencje_formatowania_tekstu/index.html b/files/pl/orphaned/web/javascript/referencje/o_tym_dokumencie/konwencje_formatowania_tekstu/index.html index 3dbff8627a..ce48c1f869 100644 --- a/files/pl/orphaned/web/javascript/referencje/o_tym_dokumencie/konwencje_formatowania_tekstu/index.html +++ b/files/pl/orphaned/web/javascript/referencje/o_tym_dokumencie/konwencje_formatowania_tekstu/index.html @@ -1,11 +1,13 @@ --- title: Konwencje formatowania tekstu -slug: Web/JavaScript/Referencje/O_tym_dokumencie/Konwencje_formatowania_tekstu +slug: >- + orphaned/Web/JavaScript/Referencje/O_tym_dokumencie/Konwencje_formatowania_tekstu tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie +original_slug: Web/JavaScript/Referencje/O_tym_dokumencie/Konwencje_formatowania_tekstu ---

 

Aplikacje w języku JavaScript działają na różnych systemach operacyjnych; informacje zawarte w tym dokumencie dotyczą wszystkich wersji. Nazwy plików i katalogów podawane są w stylu Windows (tzn. do rozdzielania katalogów stosowane są wsteczne ukośniki). Dla wersji Unix ścieżki są takie same, należy tylko zamienić ukośniki wsteczne na ukośniki zwykłe.

diff --git a/files/pl/orphaned/web/security/information_security_basics/index.html b/files/pl/orphaned/web/security/information_security_basics/index.html index 93555b6a71..3ec3d0d1ca 100644 --- a/files/pl/orphaned/web/security/information_security_basics/index.html +++ b/files/pl/orphaned/web/security/information_security_basics/index.html @@ -1,11 +1,12 @@ --- title: Podstawy bezpieczeństwa informacji -slug: Web/Bezpieczeństwo/Podstawy_bezpieczenstwa_informacji +slug: orphaned/Web/Security/Information_Security_Basics tags: - Bezpieczeństwo - Początkujący - bezpieczeństwo aplikacji WWW translation_of: Web/Security/Information_Security_Basics +original_slug: Web/Bezpieczeństwo/Podstawy_bezpieczenstwa_informacji ---

Podstawowa znajomość bezpieczeństwa informacji może pomóc Ci uniknąć pozostawiania Twojego oprogramowania i stron WWW niezabezpieczonych oraz zawierających podatności, które później mogą zostać wykorzystane do osiągnięcia korzyści finansowych lub do innych, podejrzanych celów. Te arykuły mogą Ci pomóc zdobyć potrzebną bazę wiedzy.Dzięki zapoznaniu się z nimi będziesz świadomy/a, jak ważne jest bezpieczeństwo podczas tworzenia stron WWW oraz podczas implementacji treści.

diff --git "a/files/pl/orphaned/wsparcie_przegl\304\205darek_dla_element\303\263w_html/index.html" "b/files/pl/orphaned/wsparcie_przegl\304\205darek_dla_element\303\263w_html/index.html" index 44f0dfd7cf..bda81c6f54 100644 --- "a/files/pl/orphaned/wsparcie_przegl\304\205darek_dla_element\303\263w_html/index.html" +++ "b/files/pl/orphaned/wsparcie_przegl\304\205darek_dla_element\303\263w_html/index.html" @@ -1,9 +1,10 @@ --- title: Wsparcie przeglądarek dla elementów HTML -slug: Wsparcie_przeglądarek_dla_elementów_HTML +slug: orphaned/Wsparcie_przeglądarek_dla_elementów_HTML tags: - HTML - Wszystkie_kategorie +original_slug: Wsparcie_przeglądarek_dla_elementów_HTML ---


diff --git a/files/pl/tools/about_colon_debugging/index.html b/files/pl/tools/about_colon_debugging/index.html index 8ed93e0d15..762314d699 100644 --- a/files/pl/tools/about_colon_debugging/index.html +++ b/files/pl/tools/about_colon_debugging/index.html @@ -1,7 +1,8 @@ --- -title: 'about:debugging' -slug: 'Narzędzia/about:debugging' -translation_of: 'Tools/about:debugging' +title: about:debugging +slug: Tools/about:debugging +translation_of: Tools/about:debugging +original_slug: Narzędzia/about:debugging ---

Zakładka about:debugging gromadzi narzędzia developerskie Firefoxa i pozwala używać ich do testowania i debugowania wielu celów (dodatków). Na chwilę obecną wspiera trzy główne rodzaje celów: dodatki niewymagające restartu przeglądarki, karty (zakładki) i workersy (zadania w tle).

diff --git a/files/pl/tools/browser_toolbox/index.html b/files/pl/tools/browser_toolbox/index.html index b5a4fa88ce..6fad126ff6 100644 --- a/files/pl/tools/browser_toolbox/index.html +++ b/files/pl/tools/browser_toolbox/index.html @@ -1,7 +1,8 @@ --- title: Browser Toolbox -slug: Narzędzia/Browser_Toolbox +slug: Tools/Browser_Toolbox translation_of: Tools/Browser_Toolbox +original_slug: Narzędzia/Browser_Toolbox ---

The Browser Toolbox enables you to debug add-ons and the browser's own JavaScript code rather than just web pages like the normal Toolbox.  The Browser Toolbox's context is the whole browser rather than just single page on a single tab.

diff --git a/files/pl/tools/debugger/how_to/index.html b/files/pl/tools/debugger/how_to/index.html index 0ee1b834a1..6f8acdce02 100644 --- a/files/pl/tools/debugger/how_to/index.html +++ b/files/pl/tools/debugger/how_to/index.html @@ -1,10 +1,11 @@ --- title: How to -slug: Narzędzia/Debugger/How_to +slug: Tools/Debugger/How_to tags: - NeedsTranslation - TopicStub translation_of: Tools/Debugger/How_to +original_slug: Narzędzia/Debugger/How_to ---

These articles describe how to use the debugger.

diff --git a/files/pl/tools/debugger/index.html b/files/pl/tools/debugger/index.html index b81218619f..40470ffc1d 100644 --- a/files/pl/tools/debugger/index.html +++ b/files/pl/tools/debugger/index.html @@ -1,7 +1,8 @@ --- title: Debugger -slug: Narzędzia/Debugger +slug: Tools/Debugger translation_of: Tools/Debugger +original_slug: Narzędzia/Debugger ---

 JavaScript Debugger pozwala przejść przez kod JavaScript i spawdzić lub zmienić jego stan, aby pomóc wyśledzić błędy.

diff --git a/files/pl/tools/index.html b/files/pl/tools/index.html index 8f9560929a..c37c81bcb0 100644 --- a/files/pl/tools/index.html +++ b/files/pl/tools/index.html @@ -1,9 +1,10 @@ --- title: Narzędzia dla programistów Firefox -slug: Narzędzia +slug: Tools tags: - Narzędzia translation_of: Tools +original_slug: Narzędzia ---
{{ToolsSidebar}}
diff --git a/files/pl/tools/page_inspector/how_to/index.html b/files/pl/tools/page_inspector/how_to/index.html index 29373ef1b7..4120ac566f 100644 --- a/files/pl/tools/page_inspector/how_to/index.html +++ b/files/pl/tools/page_inspector/how_to/index.html @@ -1,10 +1,11 @@ --- title: How to -slug: Narzędzia/Page_Inspector/How_to +slug: Tools/Page_Inspector/How_to tags: - NeedsTranslation - TopicStub translation_of: Tools/Page_Inspector/How_to +original_slug: Narzędzia/Page_Inspector/How_to ---

Links for various HOW TO's can be found here. These links describe in depth the HOW TO techniques.

diff --git a/files/pl/tools/page_inspector/how_to/open_the_inspector/index.html b/files/pl/tools/page_inspector/how_to/open_the_inspector/index.html index 4d4b025c45..c6566d59ee 100644 --- a/files/pl/tools/page_inspector/how_to/open_the_inspector/index.html +++ b/files/pl/tools/page_inspector/how_to/open_the_inspector/index.html @@ -1,7 +1,8 @@ --- title: Otwórz Inspektora -slug: Narzędzia/Page_Inspector/How_to/Open_the_Inspector +slug: Tools/Page_Inspector/How_to/Open_the_Inspector translation_of: Tools/Page_Inspector/How_to/Open_the_Inspector +original_slug: Narzędzia/Page_Inspector/How_to/Open_the_Inspector ---

Istnieją dwie główne ścieżki do otworzenia Inspektora:

diff --git a/files/pl/tools/page_inspector/index.html b/files/pl/tools/page_inspector/index.html index 336489b782..51f27c3488 100644 --- a/files/pl/tools/page_inspector/index.html +++ b/files/pl/tools/page_inspector/index.html @@ -1,7 +1,8 @@ --- title: Inspektor Stron -slug: Narzędzia/Page_Inspector +slug: Tools/Page_Inspector translation_of: Tools/Page_Inspector +original_slug: Narzędzia/Page_Inspector ---

Użyj Inspektora Stron, aby badać i modyfikować HTML i CSS na stronie.

diff --git a/files/pl/tools/page_inspector/ui_tour/index.html b/files/pl/tools/page_inspector/ui_tour/index.html index c3c2375155..031fa2fa61 100644 --- a/files/pl/tools/page_inspector/ui_tour/index.html +++ b/files/pl/tools/page_inspector/ui_tour/index.html @@ -1,11 +1,12 @@ --- title: Przewodnik przez UI -slug: Narzędzia/Page_Inspector/Przewodnik_przez_UI +slug: Tools/Page_Inspector/UI_Tour tags: - Inspektor - Narzędzia - Przewodnik translation_of: Tools/Page_Inspector/UI_Tour +original_slug: Narzędzia/Page_Inspector/Przewodnik_przez_UI ---

Ten artykuł jest szybkim wprowadzeniem do głównych sekcji Interfejsu Użytkownika (UI) Inspektora Stron.

diff --git a/files/pl/tools/performance/flame_chart/index.html b/files/pl/tools/performance/flame_chart/index.html index 1edebd4d01..60b17d4011 100644 --- a/files/pl/tools/performance/flame_chart/index.html +++ b/files/pl/tools/performance/flame_chart/index.html @@ -1,7 +1,8 @@ --- title: Flame Chart -slug: Narzędzia/Performance/Flame_Chart +slug: Tools/Performance/Flame_Chart translation_of: Tools/Performance/Flame_Chart +original_slug: Narzędzia/Performance/Flame_Chart ---

The Flame Chart shows you the state of the JavaScript stack for your code at every millisecond during the performance profile.

diff --git a/files/pl/tools/performance/index.html b/files/pl/tools/performance/index.html index 346399027f..f9cfa310f2 100644 --- a/files/pl/tools/performance/index.html +++ b/files/pl/tools/performance/index.html @@ -1,10 +1,11 @@ --- title: Performance -slug: Narzędzia/Performance +slug: Tools/Performance tags: - NeedsTranslation - TopicStub translation_of: Tools/Performance +original_slug: Narzędzia/Performance ---

The Performance tool gives you insight into your site's general responsiveness, JavaScript and layout performance. With the Performance tool you create a recording, or profile, of your site over a period of time. The tool then shows you an overview of the things the browser was doing to render your site over the profile, and a graph of the frame rate over the profile.

diff --git a/files/pl/tools/storage_inspector/index.html b/files/pl/tools/storage_inspector/index.html index 1638fcd918..4919111886 100644 --- a/files/pl/tools/storage_inspector/index.html +++ b/files/pl/tools/storage_inspector/index.html @@ -1,7 +1,8 @@ --- title: Storage Inspector -slug: Narzędzia/Storage_Inspector +slug: Tools/Storage_Inspector translation_of: Tools/Storage_Inspector +original_slug: Narzędzia/Storage_Inspector ---
{{ToolsSidebar}}
diff --git a/files/pl/tools/tools_toolbox/index.html b/files/pl/tools/tools_toolbox/index.html index 02001ef0a8..8d88d8469f 100644 --- a/files/pl/tools/tools_toolbox/index.html +++ b/files/pl/tools/tools_toolbox/index.html @@ -1,7 +1,8 @@ --- title: Toolbox -slug: Narzędzia/Tools_Toolbox +slug: Tools/Tools_Toolbox translation_of: Tools/Tools_Toolbox +original_slug: Narzędzia/Tools_Toolbox ---

The Toolbox provides a single home for most of the developer tools that are built into Firefox. You can open it by selecting "Toggle Tools" from the Web Developer menu (under "Tools" on OS X and Linux, or "Firefox" on Windows), or by activating any tool hosted in it (for example, the JavaScript Debugger or the Page Inspector). Alternatively you can press Ctrl + Shift + I on Windows and Linux, or Cmd + Opt + I on OS X.

By default, the window appears docked to the bottom side of the Firefox window, but you can detach it if you like. This is what it looks like when it's docked:

diff --git a/files/pl/tools/validators/index.html b/files/pl/tools/validators/index.html index ee649caa20..4379abf3c9 100644 --- a/files/pl/tools/validators/index.html +++ b/files/pl/tools/validators/index.html @@ -1,9 +1,10 @@ --- title: Walidatory -slug: Narzędzia/Walidatory +slug: Tools/Validators tags: - Narzędzia translation_of: Tools/Validators +original_slug: Narzędzia/Walidatory ---

 

Karty paneli bocznych nie są dostępne w tej chwili.
diff --git a/files/pl/tools/view_source/index.html b/files/pl/tools/view_source/index.html
index 5781415e73..206d54d7da 100644
--- a/files/pl/tools/view_source/index.html
+++ b/files/pl/tools/view_source/index.html
@@ -1,7 +1,8 @@
 ---
 title: View Source
-slug: Narzędzia/View_source
+slug: Tools/View_source
 translation_of: Tools/View_source
+original_slug: Narzędzia/View_source
 ---
 
{{ToolsSidebar}}
diff --git a/files/pl/web/accessibility/an_overview_of_accessible_web_applications_and_widgets/index.html b/files/pl/web/accessibility/an_overview_of_accessible_web_applications_and_widgets/index.html index 06d9978f8a..d015441e7b 100644 --- a/files/pl/web/accessibility/an_overview_of_accessible_web_applications_and_widgets/index.html +++ b/files/pl/web/accessibility/an_overview_of_accessible_web_applications_and_widgets/index.html @@ -1,7 +1,8 @@ --- title: An overview of accessible web applications and widgets -slug: Web/Dostępność/An_overview_of_accessible_web_applications_and_widgets +slug: Web/Accessibility/An_overview_of_accessible_web_applications_and_widgets translation_of: Web/Accessibility/An_overview_of_accessible_web_applications_and_widgets +original_slug: Web/Dostępność/An_overview_of_accessible_web_applications_and_widgets ---

Sieć się zmienia. Statyczne witryny oparte na stronach są coraz częściej zastępowane dynamicznymi aplikacjami internetowymi w stylu aplikacji pulpitowych, które intensywnie wykorzystują JavaScript i AJAX. Projektanci tworzą niesamowite nowe widżety i kontrolki całkowicie za pomocą kombinacji JavaScript, HTML i CSS. Ta zmiana może znacznie poprawić responsywność i użyteczność internetu, ale wielu użytkowników jest zagrożonych wykluczeniem z powodu luk w dostępności. JavaScript tradycyjnie cieszy się reputacją niedostępności dla użytkowników technologii pomocniczych, takich jak czytniki ekranu, ale istnieją teraz sposoby na tworzenie dynamicznych interfejsów internetowych, które są dostępne dla szerokiego grona użytkowników.

diff --git a/files/pl/web/accessibility/aria/web_applications_and_aria_faq/index.html b/files/pl/web/accessibility/aria/web_applications_and_aria_faq/index.html index 35510946d6..a42259f72c 100644 --- a/files/pl/web/accessibility/aria/web_applications_and_aria_faq/index.html +++ b/files/pl/web/accessibility/aria/web_applications_and_aria_faq/index.html @@ -1,9 +1,10 @@ --- title: Aplikacje internetowe i ARIA FAQ -slug: Web/Accessibility/ARIA/Aplikacje_internetowe_i_ARIA_FAQ +slug: Web/Accessibility/ARIA/Web_applications_and_ARIA_FAQ tags: - ARIA translation_of: Web/Accessibility/ARIA/Web_applications_and_ARIA_FAQ +original_slug: Web/Accessibility/ARIA/Aplikacje_internetowe_i_ARIA_FAQ ---

Czym jest ARIA?

diff --git a/files/pl/web/accessibility/index.html b/files/pl/web/accessibility/index.html index 801f0d62ac..d8c1cbc2a3 100644 --- a/files/pl/web/accessibility/index.html +++ b/files/pl/web/accessibility/index.html @@ -1,9 +1,10 @@ --- title: Dostępność -slug: Web/Dostępność +slug: Web/Accessibility tags: - Dostępność translation_of: Web/Accessibility +original_slug: Web/Dostępność ---

"Dostępność (ang. accessibility) - nauka oraz zbiór standardów opisujących metody i wytyczne tworzenia serwisów WWW w sposób umożliwiający wygodny dostęp jak najszerszemu gronu odbiorców. Dostępne serwisy mogą być bez trudu wykorzystywane przez osoby niewidzące, niedowidzące, użytkowników mniej popularnych wyszukiwarek czy platform mobilnych." Artykuł o Dostępności na Wikipedii

diff --git a/files/pl/web/accessibility/keyboard-navigable_javascript_widgets/index.html b/files/pl/web/accessibility/keyboard-navigable_javascript_widgets/index.html index 3dd7d0f983..3d015d8519 100644 --- a/files/pl/web/accessibility/keyboard-navigable_javascript_widgets/index.html +++ b/files/pl/web/accessibility/keyboard-navigable_javascript_widgets/index.html @@ -1,11 +1,12 @@ --- title: Keyboard-navigable JavaScript widgets -slug: Web/Dostępność/Keyboard-navigable_JavaScript_widgets +slug: Web/Accessibility/Keyboard-navigable_JavaScript_widgets tags: - Accessibility - DOM - Navigation translation_of: Web/Accessibility/Keyboard-navigable_JavaScript_widgets +original_slug: Web/Dostępność/Keyboard-navigable_JavaScript_widgets ---

Overview

diff --git a/files/pl/web/api/baseaudiocontext/createdynamicscompressor/index.html b/files/pl/web/api/baseaudiocontext/createdynamicscompressor/index.html index 7788cc64a9..8893099724 100644 --- a/files/pl/web/api/baseaudiocontext/createdynamicscompressor/index.html +++ b/files/pl/web/api/baseaudiocontext/createdynamicscompressor/index.html @@ -1,7 +1,8 @@ --- title: AudioContext.createDynamicsCompressor() -slug: Web/API/AudioContext/createDynamicsCompressor +slug: Web/API/BaseAudioContext/createDynamicsCompressor translation_of: Web/API/BaseAudioContext/createDynamicsCompressor +original_slug: Web/API/AudioContext/createDynamicsCompressor ---

{{ APIRef("Web Audio API") }}

diff --git a/files/pl/web/api/canvas_api/index.html b/files/pl/web/api/canvas_api/index.html index e4bf56c5e7..2e2ae1bbeb 100644 --- a/files/pl/web/api/canvas_api/index.html +++ b/files/pl/web/api/canvas_api/index.html @@ -1,7 +1,8 @@ --- title: Canvas -slug: Web/HTML/Canvas +slug: Web/API/Canvas_API translation_of: Web/API/Canvas_API +original_slug: Web/HTML/Canvas ---
{{outdated()}}
diff --git a/files/pl/web/api/canvas_api/tutorial/drawing_shapes/index.html b/files/pl/web/api/canvas_api/tutorial/drawing_shapes/index.html index 08c589844b..2f53156e92 100644 --- a/files/pl/web/api/canvas_api/tutorial/drawing_shapes/index.html +++ b/files/pl/web/api/canvas_api/tutorial/drawing_shapes/index.html @@ -1,7 +1,8 @@ --- title: Rysowanie kształtów w canvas -slug: Web/API/Canvas_API/Tutorial/rysowanie_ksztaltow +slug: Web/API/Canvas_API/Tutorial/Drawing_shapes translation_of: Web/API/Canvas_API/Tutorial/Drawing_shapes +original_slug: Web/API/Canvas_API/Tutorial/rysowanie_ksztaltow ---
{{CanvasSidebar}} {{PreviousNext("Web/API/Canvas_API/Tutorial/Basic_usage", "Web/API/Canvas_API/Tutorial/Applying_styles_and_colors")}}
diff --git a/files/pl/web/api/canvas_api/tutorial/drawing_text/index.html b/files/pl/web/api/canvas_api/tutorial/drawing_text/index.html index 4f79154344..da19fa1cfe 100644 --- a/files/pl/web/api/canvas_api/tutorial/drawing_text/index.html +++ b/files/pl/web/api/canvas_api/tutorial/drawing_text/index.html @@ -1,12 +1,13 @@ --- title: Rysowanie tekstu przy użyciu canvas -slug: Rysowanie_tekstu_przy_użyciu_canvas +slug: Web/API/Canvas_API/Tutorial/Drawing_text tags: - HTML - - 'HTML:Canvas' + - HTML:Canvas - NeedsContent - Wszystkie_kategorie translation_of: Web/API/Canvas_API/Tutorial/Drawing_text +original_slug: Rysowanie_tekstu_przy_użyciu_canvas ---

{{ Gecko_minversion_header(1.9) }} {{ Fx_minversion_header(3) }} diff --git a/files/pl/web/api/canvas_api/tutorial/optimizing_canvas/index.html b/files/pl/web/api/canvas_api/tutorial/optimizing_canvas/index.html index 68efe0225f..162a62d266 100644 --- a/files/pl/web/api/canvas_api/tutorial/optimizing_canvas/index.html +++ b/files/pl/web/api/canvas_api/tutorial/optimizing_canvas/index.html @@ -1,6 +1,6 @@ --- title: Optymalizacja elementu canvas -slug: Web/API/Canvas_API/Tutorial/Optymalizacja_canvas +slug: Web/API/Canvas_API/Tutorial/Optimizing_canvas tags: - Canvas - Grafika @@ -10,6 +10,7 @@ tags: - Tutorial - zaawansowany translation_of: Web/API/Canvas_API/Tutorial/Optimizing_canvas +original_slug: Web/API/Canvas_API/Tutorial/Optymalizacja_canvas ---

{{CanvasSidebar}} {{PreviousNext("Web/API/Canvas_API/Tutorial/Hit_regions_and_accessibility", "Web/API/Canvas_API/Tutorial/Finale")}}
diff --git a/files/pl/web/api/cssrulelist/index.html b/files/pl/web/api/cssrulelist/index.html index d3fabad79a..df2e004e09 100644 --- a/files/pl/web/api/cssrulelist/index.html +++ b/files/pl/web/api/cssrulelist/index.html @@ -1,12 +1,13 @@ --- title: stylesheet.cssRules -slug: Web/API/Stylesheet/cssRules +slug: Web/API/CSSRuleList tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/CSSRuleList +original_slug: Web/API/Stylesheet/cssRules ---

{{ ApiRef() }}

diff --git a/files/pl/web/api/cssstylesheet/deleterule/index.html b/files/pl/web/api/cssstylesheet/deleterule/index.html index bda06f24b4..53f72e576a 100644 --- a/files/pl/web/api/cssstylesheet/deleterule/index.html +++ b/files/pl/web/api/cssstylesheet/deleterule/index.html @@ -1,12 +1,13 @@ --- title: stylesheet.deleteRule -slug: Web/API/Stylesheet/deleteRule +slug: Web/API/CSSStyleSheet/deleteRule tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/CSSStyleSheet/deleteRule +original_slug: Web/API/Stylesheet/deleteRule ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/cssstylesheet/index.html b/files/pl/web/api/cssstylesheet/index.html index dca62c79ee..7fe2ecc979 100644 --- a/files/pl/web/api/cssstylesheet/index.html +++ b/files/pl/web/api/cssstylesheet/index.html @@ -1,12 +1,13 @@ --- title: Stylesheet -slug: Web/API/Stylesheet +slug: Web/API/CSSStyleSheet tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/CSSStyleSheet +original_slug: Web/API/Stylesheet ---

{{ ApiRef() }}

diff --git a/files/pl/web/api/cssstylesheet/insertrule/index.html b/files/pl/web/api/cssstylesheet/insertrule/index.html index eeabdc8a31..28c2c6f01a 100644 --- a/files/pl/web/api/cssstylesheet/insertrule/index.html +++ b/files/pl/web/api/cssstylesheet/insertrule/index.html @@ -1,6 +1,6 @@ --- title: stylesheet.insertRule -slug: Web/API/Stylesheet/insertRule +slug: Web/API/CSSStyleSheet/insertRule tags: - DOM - Dokumentacja_Gecko_DOM @@ -8,6 +8,7 @@ tags: - Strony_wymagające_dopracowania - Wszystkie_kategorie translation_of: Web/API/CSSStyleSheet/insertRule +original_slug: Web/API/Stylesheet/insertRule ---

{{APIRef("CSSOM")}}

diff --git a/files/pl/web/api/document_object_model/examples/index.html b/files/pl/web/api/document_object_model/examples/index.html index 90d24738ef..294e891bfe 100644 --- a/files/pl/web/api/document_object_model/examples/index.html +++ b/files/pl/web/api/document_object_model/examples/index.html @@ -1,12 +1,13 @@ --- title: Przykłady użycia DOM -slug: Dokumentacja_Gecko_DOM/Przykłady_użycia_DOM +slug: Web/API/Document_Object_Model/Examples tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Document_Object_Model/Examples +original_slug: Dokumentacja_Gecko_DOM/Przykłady_użycia_DOM ---

{{ ApiRef() }}

diff --git a/files/pl/web/api/document_object_model/index.html b/files/pl/web/api/document_object_model/index.html index e4c1475516..65d3e598e5 100644 --- a/files/pl/web/api/document_object_model/index.html +++ b/files/pl/web/api/document_object_model/index.html @@ -1,12 +1,13 @@ --- title: Dokumentacja Gecko DOM -slug: Dokumentacja_Gecko_DOM +slug: Web/API/Document_Object_Model tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Document_Object_Model +original_slug: Dokumentacja_Gecko_DOM ---

Ta strona jest przyszłym spisem treści Dokumentacji Gecko DOM, którą przenosimy stąd. diff --git a/files/pl/web/api/document_object_model/introduction/index.html b/files/pl/web/api/document_object_model/introduction/index.html index 2ffb9814a7..074d814fce 100644 --- a/files/pl/web/api/document_object_model/introduction/index.html +++ b/files/pl/web/api/document_object_model/introduction/index.html @@ -1,10 +1,11 @@ --- title: Wprowadzenie -slug: Dokumentacja_Gecko_DOM/Wprowadzenie +slug: Web/API/Document_Object_Model/Introduction tags: - DOM - Gecko translation_of: Web/API/Document_Object_Model/Introduction +original_slug: Dokumentacja_Gecko_DOM/Wprowadzenie ---

Ten rozdział ma dać ogólne pojęcie o DOM: co to jest, o strukturze dla dokumentów HTML i XML, jak korzystać z DOM oraz w jaki sposób przedstawiona będzie dokumentacja i przykłady.

diff --git a/files/pl/web/api/documentorshadowroot/activeelement/index.html b/files/pl/web/api/documentorshadowroot/activeelement/index.html index 6a8358c7ac..173e0b9d64 100644 --- a/files/pl/web/api/documentorshadowroot/activeelement/index.html +++ b/files/pl/web/api/documentorshadowroot/activeelement/index.html @@ -1,6 +1,6 @@ --- title: document.activeElement -slug: Web/API/Document/activeElement +slug: Web/API/DocumentOrShadowRoot/activeElement tags: - DOM - Dokumentacja_Gecko_DOM @@ -8,6 +8,7 @@ tags: - Wszystkie_kategorie translation_of: Web/API/DocumentOrShadowRoot/activeElement translation_of_original: Web/API/Document/activeElement +original_slug: Web/API/Document/activeElement ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/documentorshadowroot/stylesheets/index.html b/files/pl/web/api/documentorshadowroot/stylesheets/index.html index e1c2493cd3..cb2e61d67b 100644 --- a/files/pl/web/api/documentorshadowroot/stylesheets/index.html +++ b/files/pl/web/api/documentorshadowroot/stylesheets/index.html @@ -1,6 +1,6 @@ --- title: document.styleSheets -slug: Web/API/Document/styleSheets +slug: Web/API/DocumentOrShadowRoot/styleSheets tags: - DOM - Dokumentacja_Gecko_DOM @@ -8,6 +8,7 @@ tags: - Wszystkie_kategorie translation_of: Web/API/DocumentOrShadowRoot/styleSheets translation_of_original: Web/API/Document/styleSheets +original_slug: Web/API/Document/styleSheets ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/elementcssinlinestyle/style/index.html b/files/pl/web/api/elementcssinlinestyle/style/index.html index 4736774e83..80ee084961 100644 --- a/files/pl/web/api/elementcssinlinestyle/style/index.html +++ b/files/pl/web/api/elementcssinlinestyle/style/index.html @@ -1,6 +1,6 @@ --- title: element.style -slug: Web/API/Element/style +slug: Web/API/ElementCSSInlineStyle/style tags: - DOM - Dokumentacja_Gecko_DOM @@ -8,6 +8,7 @@ tags: - Strony_wymagające_dopracowania - Wszystkie_kategorie translation_of: Web/API/ElementCSSInlineStyle/style +original_slug: Web/API/Element/style ---

{{ ApiRef("DOM") }}

diff --git a/files/pl/web/api/eventtarget/addeventlistener/index.html b/files/pl/web/api/eventtarget/addeventlistener/index.html index 781ec7f3b6..abba3c0352 100644 --- a/files/pl/web/api/eventtarget/addeventlistener/index.html +++ b/files/pl/web/api/eventtarget/addeventlistener/index.html @@ -1,6 +1,6 @@ --- title: element.addEventListener -slug: Web/API/Element/addEventListener +slug: Web/API/EventTarget/addEventListener tags: - DOM - Dokumentacja_Gecko_DOM @@ -8,6 +8,7 @@ tags: - Strony_wymagające_dopracowania - Wszystkie_kategorie translation_of: Web/API/EventTarget/addEventListener +original_slug: Web/API/Element/addEventListener ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/eventtarget/dispatchevent/index.html b/files/pl/web/api/eventtarget/dispatchevent/index.html index 266c570cfe..885951a2bd 100644 --- a/files/pl/web/api/eventtarget/dispatchevent/index.html +++ b/files/pl/web/api/eventtarget/dispatchevent/index.html @@ -1,12 +1,13 @@ --- title: element.dispatchEvent -slug: Web/API/Element/dispatchEvent +slug: Web/API/EventTarget/dispatchEvent tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/EventTarget/dispatchEvent +original_slug: Web/API/Element/dispatchEvent ---

{{ ApiRef() }}

diff --git a/files/pl/web/api/globaleventhandlers/onclick/index.html b/files/pl/web/api/globaleventhandlers/onclick/index.html index b6215b4c00..1f20dfe26a 100644 --- a/files/pl/web/api/globaleventhandlers/onclick/index.html +++ b/files/pl/web/api/globaleventhandlers/onclick/index.html @@ -1,6 +1,6 @@ --- title: element.onclick -slug: Web/API/Element/onclick +slug: Web/API/GlobalEventHandlers/onclick tags: - DOM - DOM_0 @@ -8,6 +8,7 @@ tags: - Gecko - Wszystkie_kategorie translation_of: Web/API/GlobalEventHandlers/onclick +original_slug: Web/API/Element/onclick ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/globaleventhandlers/onkeydown/index.html b/files/pl/web/api/globaleventhandlers/onkeydown/index.html index a7064fa2b0..1e2e7dac9c 100644 --- a/files/pl/web/api/globaleventhandlers/onkeydown/index.html +++ b/files/pl/web/api/globaleventhandlers/onkeydown/index.html @@ -1,6 +1,6 @@ --- title: element.onkeydown -slug: DOM/element.onkeydown +slug: Web/API/GlobalEventHandlers/onkeydown tags: - DOM - DOM_0 @@ -8,6 +8,7 @@ tags: - Gecko - Wszystkie_kategorie translation_of: Web/API/GlobalEventHandlers/onkeydown +original_slug: DOM/element.onkeydown ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/globaleventhandlers/onkeypress/index.html b/files/pl/web/api/globaleventhandlers/onkeypress/index.html index eb57c1936c..87d8d71ca0 100644 --- a/files/pl/web/api/globaleventhandlers/onkeypress/index.html +++ b/files/pl/web/api/globaleventhandlers/onkeypress/index.html @@ -1,6 +1,6 @@ --- title: element.onkeypress -slug: Web/API/Element/onkeypress +slug: Web/API/GlobalEventHandlers/onkeypress tags: - DOM - DOM_0 @@ -8,6 +8,7 @@ tags: - Gecko - Wszystkie_kategorie translation_of: Web/API/GlobalEventHandlers/onkeypress +original_slug: Web/API/Element/onkeypress ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/globaleventhandlers/onkeyup/index.html b/files/pl/web/api/globaleventhandlers/onkeyup/index.html index ad411b0e1a..d7e7ccc00f 100644 --- a/files/pl/web/api/globaleventhandlers/onkeyup/index.html +++ b/files/pl/web/api/globaleventhandlers/onkeyup/index.html @@ -1,6 +1,6 @@ --- title: element.onkeyup -slug: Web/API/Element/onkeyup +slug: Web/API/GlobalEventHandlers/onkeyup tags: - DOM - DOM_0 @@ -8,6 +8,7 @@ tags: - Gecko - Wszystkie_kategorie translation_of: Web/API/GlobalEventHandlers/onkeyup +original_slug: Web/API/Element/onkeyup ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/globaleventhandlers/onload/index.html b/files/pl/web/api/globaleventhandlers/onload/index.html index 45e1b97328..d1575beb1c 100644 --- a/files/pl/web/api/globaleventhandlers/onload/index.html +++ b/files/pl/web/api/globaleventhandlers/onload/index.html @@ -1,6 +1,6 @@ --- title: window.onload -slug: Web/API/Window/onload +slug: Web/API/GlobalEventHandlers/onload tags: - DOM - DOM_0 @@ -9,6 +9,7 @@ tags: - Strony_wymagające_dopracowania - Wszystkie_kategorie translation_of: Web/API/GlobalEventHandlers/onload +original_slug: Web/API/Window/onload ---

{{ ApiRef() }}

diff --git a/files/pl/web/api/globaleventhandlers/onmousedown/index.html b/files/pl/web/api/globaleventhandlers/onmousedown/index.html index e616906126..d3b85a83d8 100644 --- a/files/pl/web/api/globaleventhandlers/onmousedown/index.html +++ b/files/pl/web/api/globaleventhandlers/onmousedown/index.html @@ -1,12 +1,13 @@ --- title: element.onmousedown -slug: Web/API/Element/onmousedown +slug: Web/API/GlobalEventHandlers/onmousedown tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/GlobalEventHandlers/onmousedown +original_slug: Web/API/Element/onmousedown ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/globaleventhandlers/onmousemove/index.html b/files/pl/web/api/globaleventhandlers/onmousemove/index.html index f54256c9f7..733209593f 100644 --- a/files/pl/web/api/globaleventhandlers/onmousemove/index.html +++ b/files/pl/web/api/globaleventhandlers/onmousemove/index.html @@ -1,6 +1,6 @@ --- title: element.onmousemove -slug: Web/API/Element/onmousemove +slug: Web/API/GlobalEventHandlers/onmousemove tags: - DOM - Dokumentacja_Gecko_DOM @@ -8,6 +8,7 @@ tags: - Strony_wymagające_dopracowania - Wszystkie_kategorie translation_of: Web/API/GlobalEventHandlers/onmousemove +original_slug: Web/API/Element/onmousemove ---

{{ ApiRef() }}

diff --git a/files/pl/web/api/htmlelement/click/index.html b/files/pl/web/api/htmlelement/click/index.html index 5c0fe512d5..0a728115e5 100644 --- a/files/pl/web/api/htmlelement/click/index.html +++ b/files/pl/web/api/htmlelement/click/index.html @@ -1,12 +1,13 @@ --- title: element.click -slug: Web/API/Element/click +slug: Web/API/HTMLElement/click tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/HTMLElement/click +original_slug: Web/API/Element/click ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/htmlelement/dir/index.html b/files/pl/web/api/htmlelement/dir/index.html index 5e20e1e6ad..6d96feb8a0 100644 --- a/files/pl/web/api/htmlelement/dir/index.html +++ b/files/pl/web/api/htmlelement/dir/index.html @@ -1,12 +1,13 @@ --- title: element.dir -slug: Web/API/Element/dir +slug: Web/API/HTMLElement/dir tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/HTMLElement/dir +original_slug: Web/API/Element/dir ---
{{ApiRef}}
diff --git a/files/pl/web/api/htmlelement/lang/index.html b/files/pl/web/api/htmlelement/lang/index.html index 446c0817b9..699d6f41ae 100644 --- a/files/pl/web/api/htmlelement/lang/index.html +++ b/files/pl/web/api/htmlelement/lang/index.html @@ -1,12 +1,13 @@ --- title: element.lang -slug: Web/API/Element/lang +slug: Web/API/HTMLElement/lang tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/HTMLElement/lang +original_slug: Web/API/Element/lang ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/htmlelement/offsetheight/index.html b/files/pl/web/api/htmlelement/offsetheight/index.html index ce5fc2254e..1fe35e7691 100644 --- a/files/pl/web/api/htmlelement/offsetheight/index.html +++ b/files/pl/web/api/htmlelement/offsetheight/index.html @@ -1,6 +1,6 @@ --- title: element.offsetHeight -slug: Web/API/Element/offsetHeight +slug: Web/API/HTMLElement/offsetHeight tags: - DOM - Dokumentacja_Gecko_DOM @@ -8,6 +8,7 @@ tags: - Strony_wymagające_dopracowania - Wszystkie_kategorie translation_of: Web/API/HTMLElement/offsetHeight +original_slug: Web/API/Element/offsetHeight ---

{{ ApiRef() }}

diff --git a/files/pl/web/api/htmlelement/offsetleft/index.html b/files/pl/web/api/htmlelement/offsetleft/index.html index b0252f3363..2cc478daa5 100644 --- a/files/pl/web/api/htmlelement/offsetleft/index.html +++ b/files/pl/web/api/htmlelement/offsetleft/index.html @@ -1,6 +1,6 @@ --- title: element.offsetLeft -slug: Web/API/Element/offsetLeft +slug: Web/API/HTMLElement/offsetLeft tags: - DOM - Dokumentacja_Gecko_DOM @@ -8,6 +8,7 @@ tags: - Strony_wymagające_dopracowania - Wszystkie_kategorie translation_of: Web/API/HTMLElement/offsetLeft +original_slug: Web/API/Element/offsetLeft ---

{{ ApiRef("HTML DOM") }}

diff --git a/files/pl/web/api/htmlelement/offsetparent/index.html b/files/pl/web/api/htmlelement/offsetparent/index.html index c33d32b38c..57033d33a5 100644 --- a/files/pl/web/api/htmlelement/offsetparent/index.html +++ b/files/pl/web/api/htmlelement/offsetparent/index.html @@ -1,12 +1,13 @@ --- title: element.offsetParent -slug: Web/API/Element/offsetParent +slug: Web/API/HTMLElement/offsetParent tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/HTMLElement/offsetParent +original_slug: Web/API/Element/offsetParent ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/htmlelement/offsetwidth/index.html b/files/pl/web/api/htmlelement/offsetwidth/index.html index b78d7b4136..996593db32 100644 --- a/files/pl/web/api/htmlelement/offsetwidth/index.html +++ b/files/pl/web/api/htmlelement/offsetwidth/index.html @@ -1,6 +1,6 @@ --- title: element.offsetWidth -slug: Web/API/Element/offsetWidth +slug: Web/API/HTMLElement/offsetWidth tags: - DOM - Dokumentacja_Gecko_DOM @@ -8,6 +8,7 @@ tags: - Strony_wymagające_dopracowania - Wszystkie_kategorie translation_of: Web/API/HTMLElement/offsetWidth +original_slug: Web/API/Element/offsetWidth ---

{{ APIRef("HTML DOM") }}

diff --git a/files/pl/web/api/htmlorforeignelement/blur/index.html b/files/pl/web/api/htmlorforeignelement/blur/index.html index 1febd21617..35d1e725eb 100644 --- a/files/pl/web/api/htmlorforeignelement/blur/index.html +++ b/files/pl/web/api/htmlorforeignelement/blur/index.html @@ -1,12 +1,13 @@ --- title: element.blur -slug: Web/API/Element/blur +slug: Web/API/HTMLOrForeignElement/blur tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/HTMLOrForeignElement/blur +original_slug: Web/API/Element/blur ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/htmlorforeignelement/dataset/index.html b/files/pl/web/api/htmlorforeignelement/dataset/index.html index fac7ec119f..4d322c20eb 100644 --- a/files/pl/web/api/htmlorforeignelement/dataset/index.html +++ b/files/pl/web/api/htmlorforeignelement/dataset/index.html @@ -1,7 +1,8 @@ --- title: HTMLElement.dataset -slug: Web/API/HTMLElement/dataset +slug: Web/API/HTMLOrForeignElement/dataset translation_of: Web/API/HTMLOrForeignElement/dataset +original_slug: Web/API/HTMLElement/dataset ---
{{ APIRef("HTML DOM") }}
diff --git a/files/pl/web/api/htmlorforeignelement/focus/index.html b/files/pl/web/api/htmlorforeignelement/focus/index.html index 7f3eef32fa..4d5084b55a 100644 --- a/files/pl/web/api/htmlorforeignelement/focus/index.html +++ b/files/pl/web/api/htmlorforeignelement/focus/index.html @@ -1,12 +1,13 @@ --- title: element.focus -slug: Web/API/Element/focus +slug: Web/API/HTMLOrForeignElement/focus tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/HTMLOrForeignElement/focus +original_slug: Web/API/Element/focus ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/htmlorforeignelement/tabindex/index.html b/files/pl/web/api/htmlorforeignelement/tabindex/index.html index d8fdd6ce7d..dd8b28401b 100644 --- a/files/pl/web/api/htmlorforeignelement/tabindex/index.html +++ b/files/pl/web/api/htmlorforeignelement/tabindex/index.html @@ -1,12 +1,13 @@ --- title: element.tabIndex -slug: Web/API/Element/tabIndex +slug: Web/API/HTMLOrForeignElement/tabIndex tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/HTMLOrForeignElement/tabIndex +original_slug: Web/API/Element/tabIndex ---
{{APIRef}}
diff --git a/files/pl/web/api/keyboardevent/charcode/index.html b/files/pl/web/api/keyboardevent/charcode/index.html index 6600e6c1dd..58f2f1ebf2 100644 --- a/files/pl/web/api/keyboardevent/charcode/index.html +++ b/files/pl/web/api/keyboardevent/charcode/index.html @@ -1,10 +1,11 @@ --- title: event.charCode -slug: Web/API/Event/charCode +slug: Web/API/KeyboardEvent/charCode tags: - DOM - Wszystkie_kategorie translation_of: Web/API/KeyboardEvent/charCode +original_slug: Web/API/Event/charCode ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/keyboardevent/keycode/index.html b/files/pl/web/api/keyboardevent/keycode/index.html index 3c6c510c14..9f580c8ef7 100644 --- a/files/pl/web/api/keyboardevent/keycode/index.html +++ b/files/pl/web/api/keyboardevent/keycode/index.html @@ -1,11 +1,12 @@ --- title: event.keyCode -slug: Web/API/Event/keyCode +slug: Web/API/KeyboardEvent/keyCode tags: - DOM - Wszystkie_kategorie translation_of: Web/API/KeyboardEvent/keyCode translation_of_original: Web/API/event.keyCode +original_slug: Web/API/Event/keyCode ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/mouseevent/altkey/index.html b/files/pl/web/api/mouseevent/altkey/index.html index 1b0faf6fae..f3820f2804 100644 --- a/files/pl/web/api/mouseevent/altkey/index.html +++ b/files/pl/web/api/mouseevent/altkey/index.html @@ -1,6 +1,6 @@ --- title: event.altKey -slug: Web/API/Event/altKey +slug: Web/API/MouseEvent/altKey tags: - DOM - Dokumentacja_Gecko_DOM @@ -8,6 +8,7 @@ tags: - Wszystkie_kategorie translation_of: Web/API/MouseEvent/altKey translation_of_original: Web/API/event.altKey +original_slug: Web/API/Event/altKey ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/mouseevent/button/index.html b/files/pl/web/api/mouseevent/button/index.html index 4ee1c42386..e466ba9fdc 100644 --- a/files/pl/web/api/mouseevent/button/index.html +++ b/files/pl/web/api/mouseevent/button/index.html @@ -1,6 +1,6 @@ --- title: event.button -slug: Web/API/Event/button +slug: Web/API/MouseEvent/button tags: - DOM - Dokumentacja_Gecko_DOM @@ -8,6 +8,7 @@ tags: - Wszystkie_kategorie translation_of: Web/API/MouseEvent/button translation_of_original: Web/API/event.button +original_slug: Web/API/Event/button ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/mouseevent/clientx/index.html b/files/pl/web/api/mouseevent/clientx/index.html index 2e38b30ea8..7b64c05d77 100644 --- a/files/pl/web/api/mouseevent/clientx/index.html +++ b/files/pl/web/api/mouseevent/clientx/index.html @@ -1,11 +1,12 @@ --- title: event.clientX -slug: Web/API/Event/clientX +slug: Web/API/MouseEvent/clientX tags: - DOM - Wszystkie_kategorie translation_of: Web/API/MouseEvent/clientX translation_of_original: Web/API/event.clientX +original_slug: Web/API/Event/clientX ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/mouseevent/clienty/index.html b/files/pl/web/api/mouseevent/clienty/index.html index 45d9ae0b34..8dffcf95fc 100644 --- a/files/pl/web/api/mouseevent/clienty/index.html +++ b/files/pl/web/api/mouseevent/clienty/index.html @@ -1,11 +1,12 @@ --- title: event.clientY -slug: Web/API/Event/clientY +slug: Web/API/MouseEvent/clientY tags: - DOM - Wszystkie_kategorie translation_of: Web/API/MouseEvent/clientY translation_of_original: Web/API/event.clientY +original_slug: Web/API/Event/clientY ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/mouseevent/ctrlkey/index.html b/files/pl/web/api/mouseevent/ctrlkey/index.html index e0753f6aee..fbd179c6cf 100644 --- a/files/pl/web/api/mouseevent/ctrlkey/index.html +++ b/files/pl/web/api/mouseevent/ctrlkey/index.html @@ -1,11 +1,12 @@ --- title: event.ctrlKey -slug: Web/API/Event/ctrlKey +slug: Web/API/MouseEvent/ctrlKey tags: - DOM - Wszystkie_kategorie translation_of: Web/API/MouseEvent/ctrlKey translation_of_original: Web/API/event.ctrlKey +original_slug: Web/API/Event/ctrlKey ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/mouseevent/initmouseevent/index.html b/files/pl/web/api/mouseevent/initmouseevent/index.html index e9de804697..c1a703b537 100644 --- a/files/pl/web/api/mouseevent/initmouseevent/index.html +++ b/files/pl/web/api/mouseevent/initmouseevent/index.html @@ -1,12 +1,13 @@ --- title: event.initMouseEvent -slug: Web/API/Event/initMouseEvent +slug: Web/API/MouseEvent/initMouseEvent tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/MouseEvent/initMouseEvent +original_slug: Web/API/Event/initMouseEvent ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/mouseevent/metakey/index.html b/files/pl/web/api/mouseevent/metakey/index.html index 3c18799032..64d201092c 100644 --- a/files/pl/web/api/mouseevent/metakey/index.html +++ b/files/pl/web/api/mouseevent/metakey/index.html @@ -1,6 +1,6 @@ --- title: event.metaKey -slug: Web/API/Event/metaKey +slug: Web/API/MouseEvent/metaKey tags: - DOM - Dokumentacja_Gecko_DOM @@ -8,6 +8,7 @@ tags: - Wszystkie_kategorie translation_of: Web/API/MouseEvent/metaKey translation_of_original: Web/API/event.metaKey +original_slug: Web/API/Event/metaKey ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/mouseevent/relatedtarget/index.html b/files/pl/web/api/mouseevent/relatedtarget/index.html index 46ef60e718..85f2d13409 100644 --- a/files/pl/web/api/mouseevent/relatedtarget/index.html +++ b/files/pl/web/api/mouseevent/relatedtarget/index.html @@ -1,11 +1,12 @@ --- title: event.relatedTarget -slug: Web/API/Event/relatedTarget +slug: Web/API/MouseEvent/relatedTarget tags: - DOM - Wszystkie_kategorie translation_of: Web/API/MouseEvent/relatedTarget translation_of_original: Web/API/event.relatedTarget +original_slug: Web/API/Event/relatedTarget ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/mouseevent/screenx/index.html b/files/pl/web/api/mouseevent/screenx/index.html index f248efb6f3..dbc4e4e48d 100644 --- a/files/pl/web/api/mouseevent/screenx/index.html +++ b/files/pl/web/api/mouseevent/screenx/index.html @@ -1,11 +1,12 @@ --- title: event.screenX -slug: Web/API/Event/screenX +slug: Web/API/MouseEvent/screenX tags: - DOM - Wszystkie_kategorie translation_of: Web/API/MouseEvent/screenX translation_of_original: Web/API/event.screenX +original_slug: Web/API/Event/screenX ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/mouseevent/screeny/index.html b/files/pl/web/api/mouseevent/screeny/index.html index 52af68dc14..302acf7e0a 100644 --- a/files/pl/web/api/mouseevent/screeny/index.html +++ b/files/pl/web/api/mouseevent/screeny/index.html @@ -1,11 +1,12 @@ --- title: event.screenY -slug: Web/API/Event/screenY +slug: Web/API/MouseEvent/screenY tags: - DOM - Wszystkie_kategorie translation_of: Web/API/MouseEvent/screenY translation_of_original: Web/API/event.screenY +original_slug: Web/API/Event/screenY ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/mouseevent/shiftkey/index.html b/files/pl/web/api/mouseevent/shiftkey/index.html index ee3c1cb72c..9fd4e9db57 100644 --- a/files/pl/web/api/mouseevent/shiftkey/index.html +++ b/files/pl/web/api/mouseevent/shiftkey/index.html @@ -1,11 +1,12 @@ --- title: event.shiftKey -slug: Web/API/Event/shiftKey +slug: Web/API/MouseEvent/shiftKey tags: - DOM - Wszystkie_kategorie translation_of: Web/API/MouseEvent/shiftKey translation_of_original: Web/API/event.shiftKey +original_slug: Web/API/Event/shiftKey ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/navigatorid/appcodename/index.html b/files/pl/web/api/navigatorid/appcodename/index.html index ec0da7157c..36b6cdcb2c 100644 --- a/files/pl/web/api/navigatorid/appcodename/index.html +++ b/files/pl/web/api/navigatorid/appcodename/index.html @@ -1,12 +1,13 @@ --- title: window.navigator.appCodeName -slug: Web/API/Navigator/appCodeName +slug: Web/API/NavigatorID/appCodeName tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/NavigatorID/appCodeName +original_slug: Web/API/Navigator/appCodeName ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/navigatorid/appname/index.html b/files/pl/web/api/navigatorid/appname/index.html index d651ac3682..cede259301 100644 --- a/files/pl/web/api/navigatorid/appname/index.html +++ b/files/pl/web/api/navigatorid/appname/index.html @@ -1,12 +1,13 @@ --- title: window.navigator.appName -slug: Web/API/Navigator/appName +slug: Web/API/NavigatorID/appName tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/NavigatorID/appName +original_slug: Web/API/Navigator/appName ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/navigatorid/appversion/index.html b/files/pl/web/api/navigatorid/appversion/index.html index 3d08f23cee..b3146b68b6 100644 --- a/files/pl/web/api/navigatorid/appversion/index.html +++ b/files/pl/web/api/navigatorid/appversion/index.html @@ -1,12 +1,13 @@ --- title: window.navigator.appVersion -slug: Web/API/Navigator/appVersion +slug: Web/API/NavigatorID/appVersion tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/NavigatorID/appVersion +original_slug: Web/API/Navigator/appVersion ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/navigatorid/platform/index.html b/files/pl/web/api/navigatorid/platform/index.html index 3a73ee3c2e..3e15e51020 100644 --- a/files/pl/web/api/navigatorid/platform/index.html +++ b/files/pl/web/api/navigatorid/platform/index.html @@ -1,6 +1,6 @@ --- title: window.navigator.platform -slug: Web/API/Navigator/platform +slug: Web/API/NavigatorID/platform tags: - DOM - DOM_0 @@ -8,6 +8,7 @@ tags: - Gecko - Wszystkie_kategorie translation_of: Web/API/NavigatorID/platform +original_slug: Web/API/Navigator/platform ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/navigatorid/product/index.html b/files/pl/web/api/navigatorid/product/index.html index 50d34a4a66..8dbd83400e 100644 --- a/files/pl/web/api/navigatorid/product/index.html +++ b/files/pl/web/api/navigatorid/product/index.html @@ -1,12 +1,13 @@ --- title: window.navigator.product -slug: Web/API/Navigator/product +slug: Web/API/NavigatorID/product tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/NavigatorID/product +original_slug: Web/API/Navigator/product ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/navigatorlanguage/language/index.html b/files/pl/web/api/navigatorlanguage/language/index.html index 1dcc4daabc..6146d09ce2 100644 --- a/files/pl/web/api/navigatorlanguage/language/index.html +++ b/files/pl/web/api/navigatorlanguage/language/index.html @@ -1,12 +1,13 @@ --- title: NavigatorLanguage.language -slug: Web/API/Navigator/language +slug: Web/API/NavigatorLanguage/language tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/NavigatorLanguage/language +original_slug: Web/API/Navigator/language ---

{{ ApiRef() }}

diff --git a/files/pl/web/api/navigatoronline/online/index.html b/files/pl/web/api/navigatoronline/online/index.html index 20bbd73fb0..7884fc4764 100644 --- a/files/pl/web/api/navigatoronline/online/index.html +++ b/files/pl/web/api/navigatoronline/online/index.html @@ -1,6 +1,6 @@ --- title: NavigatorOnLine.onLine -slug: Web/API/Navigator/onLine +slug: Web/API/NavigatorOnLine/onLine tags: - DOM - DOM_0 @@ -8,6 +8,7 @@ tags: - Gecko - Wszystkie_kategorie translation_of: Web/API/NavigatorOnLine/onLine +original_slug: Web/API/Navigator/onLine ---

{{ ApiRef() }}

diff --git a/files/pl/web/api/navigatoronline/online_and_offline_events/index.html b/files/pl/web/api/navigatoronline/online_and_offline_events/index.html index d286acc4b0..618d611bfe 100644 --- a/files/pl/web/api/navigatoronline/online_and_offline_events/index.html +++ b/files/pl/web/api/navigatoronline/online_and_offline_events/index.html @@ -1,12 +1,13 @@ --- title: Zdarzenia online i offline -slug: Web/API/NavigatorOnLine/Zdarzenia_online_i_offline +slug: Web/API/NavigatorOnLine/Online_and_offline_events tags: - AJAX - DOM - Programowanie_WWW - Wszystkie_kategorie translation_of: Web/API/NavigatorOnLine/Online_and_offline_events +original_slug: Web/API/NavigatorOnLine/Zdarzenia_online_i_offline ---

{{ Fx_minversion_header(3) }} W programie Firefox 3 zaimplementowano obsługę zdarzeń online i offline zdefiniowanych w specyfikacji WHATWG Web Applications 1.0.

diff --git a/files/pl/web/api/navigatorplugins/javaenabled/index.html b/files/pl/web/api/navigatorplugins/javaenabled/index.html index 291d27782e..b4cae7a1b5 100644 --- a/files/pl/web/api/navigatorplugins/javaenabled/index.html +++ b/files/pl/web/api/navigatorplugins/javaenabled/index.html @@ -1,12 +1,13 @@ --- title: NavigatorPlugins.javaEnabled -slug: Web/API/Navigator/javaEnabled +slug: Web/API/NavigatorPlugins/javaEnabled tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/NavigatorPlugins/javaEnabled +original_slug: Web/API/Navigator/javaEnabled ---

{{ ApiRef() }}

diff --git a/files/pl/web/api/navigatorplugins/mimetypes/index.html b/files/pl/web/api/navigatorplugins/mimetypes/index.html index 371e75eff2..0ad81a61c5 100644 --- a/files/pl/web/api/navigatorplugins/mimetypes/index.html +++ b/files/pl/web/api/navigatorplugins/mimetypes/index.html @@ -1,6 +1,6 @@ --- title: NavigatorPlugins.mimeTypes -slug: Web/API/Navigator/mimeTypes +slug: Web/API/NavigatorPlugins/mimeTypes tags: - DOM - DOM_0 @@ -8,6 +8,7 @@ tags: - Gecko - Wszystkie_kategorie translation_of: Web/API/NavigatorPlugins/mimeTypes +original_slug: Web/API/Navigator/mimeTypes ---

{{ ApiRef() }}

diff --git a/files/pl/web/api/navigatorplugins/plugins/index.html b/files/pl/web/api/navigatorplugins/plugins/index.html index c60d9f6614..bb0a730981 100644 --- a/files/pl/web/api/navigatorplugins/plugins/index.html +++ b/files/pl/web/api/navigatorplugins/plugins/index.html @@ -1,6 +1,6 @@ --- title: NavigatorPlugins.plugins -slug: Web/API/Navigator/plugins +slug: Web/API/NavigatorPlugins/plugins tags: - DOM - DOM_0 @@ -8,6 +8,7 @@ tags: - Gecko - Wszystkie_kategorie translation_of: Web/API/NavigatorPlugins/plugins +original_slug: Web/API/Navigator/plugins ---

{{ ApiRef() }}

diff --git a/files/pl/web/api/node/appendchild/index.html b/files/pl/web/api/node/appendchild/index.html index ae2b141231..8cbbe6866b 100644 --- a/files/pl/web/api/node/appendchild/index.html +++ b/files/pl/web/api/node/appendchild/index.html @@ -1,12 +1,13 @@ --- title: element.appendChild -slug: Web/API/Element/appendChild +slug: Web/API/Node/appendChild tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Node/appendChild +original_slug: Web/API/Element/appendChild ---

{{ ApiRef() }}

diff --git a/files/pl/web/api/node/childnodes/index.html b/files/pl/web/api/node/childnodes/index.html index 2f15d119e2..511db0973b 100644 --- a/files/pl/web/api/node/childnodes/index.html +++ b/files/pl/web/api/node/childnodes/index.html @@ -1,12 +1,13 @@ --- title: element.childNodes -slug: Web/API/Element/childNodes +slug: Web/API/Node/childNodes tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Node/childNodes +original_slug: Web/API/Element/childNodes ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/node/clonenode/index.html b/files/pl/web/api/node/clonenode/index.html index eb0550678b..4c7d379a18 100644 --- a/files/pl/web/api/node/clonenode/index.html +++ b/files/pl/web/api/node/clonenode/index.html @@ -1,12 +1,13 @@ --- title: element.cloneNode -slug: Web/API/Element/clientNode +slug: Web/API/Node/cloneNode tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Node/cloneNode +original_slug: Web/API/Element/clientNode ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/node/firstchild/index.html b/files/pl/web/api/node/firstchild/index.html index 20189ce803..73fc2fca33 100644 --- a/files/pl/web/api/node/firstchild/index.html +++ b/files/pl/web/api/node/firstchild/index.html @@ -1,12 +1,13 @@ --- title: element.firstChild -slug: Web/API/Element/firstChild +slug: Web/API/Node/firstChild tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Node/firstChild +original_slug: Web/API/Element/firstChild ---

{{ ApiRef() }}

diff --git a/files/pl/web/api/node/haschildnodes/index.html b/files/pl/web/api/node/haschildnodes/index.html index e21f22dedf..bd575229c8 100644 --- a/files/pl/web/api/node/haschildnodes/index.html +++ b/files/pl/web/api/node/haschildnodes/index.html @@ -1,12 +1,13 @@ --- title: element.hasChildNodes -slug: Web/API/Element/hasChildNodes +slug: Web/API/Node/hasChildNodes tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Node/hasChildNodes +original_slug: Web/API/Element/hasChildNodes ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/node/insertbefore/index.html b/files/pl/web/api/node/insertbefore/index.html index 27c40ad945..bf4eddcf43 100644 --- a/files/pl/web/api/node/insertbefore/index.html +++ b/files/pl/web/api/node/insertbefore/index.html @@ -1,12 +1,13 @@ --- title: element.insertBefore -slug: Web/API/Element/insertBefore +slug: Web/API/Node/insertBefore tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Node/insertBefore +original_slug: Web/API/Element/insertBefore ---

{{ ApiRef() }}

diff --git a/files/pl/web/api/node/lastchild/index.html b/files/pl/web/api/node/lastchild/index.html index 34475c02d7..58eb52506a 100644 --- a/files/pl/web/api/node/lastchild/index.html +++ b/files/pl/web/api/node/lastchild/index.html @@ -1,12 +1,13 @@ --- title: element.lastChild -slug: Web/API/Element/lastChild +slug: Web/API/Node/lastChild tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Node/lastChild +original_slug: Web/API/Element/lastChild ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/node/localname/index.html b/files/pl/web/api/node/localname/index.html index 55b5649e31..a99e7ae8da 100644 --- a/files/pl/web/api/node/localname/index.html +++ b/files/pl/web/api/node/localname/index.html @@ -1,12 +1,13 @@ --- title: element.localName -slug: Web/API/Element/localName +slug: Web/API/Node/localName tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Node/localName +original_slug: Web/API/Element/localName ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/node/namespaceuri/index.html b/files/pl/web/api/node/namespaceuri/index.html index 9f252ba570..59d7006ff2 100644 --- a/files/pl/web/api/node/namespaceuri/index.html +++ b/files/pl/web/api/node/namespaceuri/index.html @@ -1,12 +1,13 @@ --- title: element.namespaceURI -slug: Web/API/Element/namespaceURI +slug: Web/API/Node/namespaceURI tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Node/namespaceURI +original_slug: Web/API/Element/namespaceURI ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/node/nextsibling/index.html b/files/pl/web/api/node/nextsibling/index.html index 17f1822a56..0aa4a0ebfb 100644 --- a/files/pl/web/api/node/nextsibling/index.html +++ b/files/pl/web/api/node/nextsibling/index.html @@ -1,12 +1,13 @@ --- title: element.nextSibling -slug: Web/API/Element/nextSibling +slug: Web/API/Node/nextSibling tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Node/nextSibling +original_slug: Web/API/Element/nextSibling ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/node/nodename/index.html b/files/pl/web/api/node/nodename/index.html index 93a54424a6..1469f246f1 100644 --- a/files/pl/web/api/node/nodename/index.html +++ b/files/pl/web/api/node/nodename/index.html @@ -1,12 +1,13 @@ --- title: element.nodeName -slug: Web/API/Element/nodeName +slug: Web/API/Node/nodeName tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Node/nodeName +original_slug: Web/API/Element/nodeName ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/node/nodetype/index.html b/files/pl/web/api/node/nodetype/index.html index 8f3825ea86..e829a351b3 100644 --- a/files/pl/web/api/node/nodetype/index.html +++ b/files/pl/web/api/node/nodetype/index.html @@ -1,12 +1,13 @@ --- title: element.nodeType -slug: Web/API/Element/nodeType +slug: Web/API/Node/nodeType tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Node/nodeType +original_slug: Web/API/Element/nodeType ---
{{ApiRef}}
diff --git a/files/pl/web/api/node/nodevalue/index.html b/files/pl/web/api/node/nodevalue/index.html index 205871bba3..2832bb028a 100644 --- a/files/pl/web/api/node/nodevalue/index.html +++ b/files/pl/web/api/node/nodevalue/index.html @@ -1,12 +1,13 @@ --- title: Node.nodeValue -slug: Web/API/Element/nodeValue +slug: Web/API/Node/nodeValue tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Node/nodeValue +original_slug: Web/API/Element/nodeValue ---
{{APIRef}}
diff --git a/files/pl/web/api/node/normalize/index.html b/files/pl/web/api/node/normalize/index.html index 4dac3822cc..847418c217 100644 --- a/files/pl/web/api/node/normalize/index.html +++ b/files/pl/web/api/node/normalize/index.html @@ -1,12 +1,13 @@ --- title: element.normalize -slug: Web/API/Element/normalize +slug: Web/API/Node/normalize tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Node/normalize +original_slug: Web/API/Element/normalize ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/node/ownerdocument/index.html b/files/pl/web/api/node/ownerdocument/index.html index 0ecbed4869..19fcded1ff 100644 --- a/files/pl/web/api/node/ownerdocument/index.html +++ b/files/pl/web/api/node/ownerdocument/index.html @@ -1,12 +1,13 @@ --- title: element.ownerDocument -slug: Web/API/Element/ownerDocument +slug: Web/API/Node/ownerDocument tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Node/ownerDocument +original_slug: Web/API/Element/ownerDocument ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/node/parentnode/index.html b/files/pl/web/api/node/parentnode/index.html index ec9bbceda0..2e2aafac81 100644 --- a/files/pl/web/api/node/parentnode/index.html +++ b/files/pl/web/api/node/parentnode/index.html @@ -1,12 +1,13 @@ --- title: element.parentNode -slug: Web/API/Element/parentNode +slug: Web/API/Node/parentNode tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Node/parentNode +original_slug: Web/API/Element/parentNode ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/node/prefix/index.html b/files/pl/web/api/node/prefix/index.html index c5ecdac392..0a76253cd6 100644 --- a/files/pl/web/api/node/prefix/index.html +++ b/files/pl/web/api/node/prefix/index.html @@ -1,12 +1,13 @@ --- title: element.prefix -slug: Web/API/Element/prefix +slug: Web/API/Node/prefix tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Node/prefix +original_slug: Web/API/Element/prefix ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/node/previoussibling/index.html b/files/pl/web/api/node/previoussibling/index.html index 0199cfb1a7..4dace5c856 100644 --- a/files/pl/web/api/node/previoussibling/index.html +++ b/files/pl/web/api/node/previoussibling/index.html @@ -1,12 +1,13 @@ --- title: element.previousSibling -slug: Web/API/Element/previousSibling +slug: Web/API/Node/previousSibling tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Node/previousSibling +original_slug: Web/API/Element/previousSibling ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/node/removechild/index.html b/files/pl/web/api/node/removechild/index.html index c07c36ab3b..4f94df019d 100644 --- a/files/pl/web/api/node/removechild/index.html +++ b/files/pl/web/api/node/removechild/index.html @@ -1,12 +1,13 @@ --- title: element.removeChild -slug: Web/API/Element/removeChild +slug: Web/API/Node/removeChild tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Node/removeChild +original_slug: Web/API/Element/removeChild ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/node/replacechild/index.html b/files/pl/web/api/node/replacechild/index.html index dcb5686d44..6c4151a757 100644 --- a/files/pl/web/api/node/replacechild/index.html +++ b/files/pl/web/api/node/replacechild/index.html @@ -1,12 +1,13 @@ --- title: element.replaceChild -slug: Web/API/Element/replaceChild +slug: Web/API/Node/replaceChild tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Node/replaceChild +original_slug: Web/API/Element/replaceChild ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/node/textcontent/index.html b/files/pl/web/api/node/textcontent/index.html index f667ea2889..943614ac15 100644 --- a/files/pl/web/api/node/textcontent/index.html +++ b/files/pl/web/api/node/textcontent/index.html @@ -1,12 +1,13 @@ --- title: element.textContent -slug: Web/API/Element/textContent +slug: Web/API/Node/textContent tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/Node/textContent +original_slug: Web/API/Element/textContent ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/nodelist/length/index.html b/files/pl/web/api/nodelist/length/index.html index ce5e1345ef..b1a3ed83ca 100644 --- a/files/pl/web/api/nodelist/length/index.html +++ b/files/pl/web/api/nodelist/length/index.html @@ -1,12 +1,13 @@ --- title: element.length -slug: Web/API/Element/length +slug: Web/API/NodeList/length tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/NodeList/length +original_slug: Web/API/Element/length ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/notification/index.html b/files/pl/web/api/notification/index.html index e314c36a3a..046fe35e71 100644 --- a/files/pl/web/api/notification/index.html +++ b/files/pl/web/api/notification/index.html @@ -1,12 +1,13 @@ --- title: Powiadomienie -slug: Web/API/powiadomienie +slug: Web/API/Notification tags: - API - JS Powiadomienia - Powiadomienia - Powiadomienie translation_of: Web/API/Notification +original_slug: Web/API/powiadomienie ---

{{APIRef("Web Notifications")}}

diff --git a/files/pl/web/api/touch_events/index.html b/files/pl/web/api/touch_events/index.html index 4d49e9b5b5..362642a067 100644 --- a/files/pl/web/api/touch_events/index.html +++ b/files/pl/web/api/touch_events/index.html @@ -1,7 +1,8 @@ --- title: Zdarzenia dotykowe -slug: Web/API/Zdarzenia_dotykowe +slug: Web/API/Touch_events translation_of: Web/API/Touch_events +original_slug: Web/API/Zdarzenia_dotykowe ---
{{DefaultAPISidebar("Touch Events")}}
diff --git a/files/pl/web/api/uievent/cancelbubble/index.html b/files/pl/web/api/uievent/cancelbubble/index.html index 64b0a32f88..51fa756278 100644 --- a/files/pl/web/api/uievent/cancelbubble/index.html +++ b/files/pl/web/api/uievent/cancelbubble/index.html @@ -1,10 +1,11 @@ --- title: event.cancelBubble -slug: Web/API/Event/cancelBubble +slug: Web/API/UIEvent/cancelBubble tags: - DOM - Wszystkie_kategorie translation_of: Web/API/UIEvent/cancelBubble +original_slug: Web/API/Event/cancelBubble ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/uievent/inituievent/index.html b/files/pl/web/api/uievent/inituievent/index.html index 3a20fef39d..cf548d9f19 100644 --- a/files/pl/web/api/uievent/inituievent/index.html +++ b/files/pl/web/api/uievent/inituievent/index.html @@ -1,12 +1,13 @@ --- title: event.initUIEvent -slug: Web/API/Event/initUIEvent +slug: Web/API/UIEvent/initUIEvent tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/UIEvent/initUIEvent +original_slug: Web/API/Event/initUIEvent ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/uievent/ischar/index.html b/files/pl/web/api/uievent/ischar/index.html index fc7a7dfec9..393402ed7c 100644 --- a/files/pl/web/api/uievent/ischar/index.html +++ b/files/pl/web/api/uievent/ischar/index.html @@ -1,10 +1,11 @@ --- title: event.isChar -slug: Web/API/Event/isChar +slug: Web/API/UIEvent/isChar tags: - DOM - Wszystkie_kategorie translation_of: Web/API/UIEvent/isChar +original_slug: Web/API/Event/isChar ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/uievent/layerx/index.html b/files/pl/web/api/uievent/layerx/index.html index 5a69b4c864..b4b123e60f 100644 --- a/files/pl/web/api/uievent/layerx/index.html +++ b/files/pl/web/api/uievent/layerx/index.html @@ -1,10 +1,11 @@ --- title: event.layerX -slug: Web/API/Event/layerX +slug: Web/API/UIEvent/layerX tags: - DOM - Wszystkie_kategorie translation_of: Web/API/UIEvent/layerX +original_slug: Web/API/Event/layerX ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/uievent/layery/index.html b/files/pl/web/api/uievent/layery/index.html index f610d08357..f91727d283 100644 --- a/files/pl/web/api/uievent/layery/index.html +++ b/files/pl/web/api/uievent/layery/index.html @@ -1,10 +1,11 @@ --- title: event.layerY -slug: Web/API/Event/layerY +slug: Web/API/UIEvent/layerY tags: - DOM - Wszystkie_kategorie translation_of: Web/API/UIEvent/layerY +original_slug: Web/API/Event/layerY ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/uievent/pagex/index.html b/files/pl/web/api/uievent/pagex/index.html index 98c3c3e1ed..05b33b7b84 100644 --- a/files/pl/web/api/uievent/pagex/index.html +++ b/files/pl/web/api/uievent/pagex/index.html @@ -1,12 +1,13 @@ --- title: event.pageX -slug: Web/API/Event/pageX +slug: Web/API/UIEvent/pageX tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/UIEvent/pageX +original_slug: Web/API/Event/pageX ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/uievent/pagey/index.html b/files/pl/web/api/uievent/pagey/index.html index d82e2237df..e1749273da 100644 --- a/files/pl/web/api/uievent/pagey/index.html +++ b/files/pl/web/api/uievent/pagey/index.html @@ -1,10 +1,11 @@ --- title: event.pageY -slug: Web/API/Event/pageY +slug: Web/API/UIEvent/pageY tags: - DOM - Wszystkie_kategorie translation_of: Web/API/UIEvent/pageY +original_slug: Web/API/Event/pageY ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/uievent/view/index.html b/files/pl/web/api/uievent/view/index.html index 57af70a587..19278dede9 100644 --- a/files/pl/web/api/uievent/view/index.html +++ b/files/pl/web/api/uievent/view/index.html @@ -1,12 +1,13 @@ --- title: event.view -slug: Web/API/Event/view +slug: Web/API/UIEvent/view tags: - DOM - Dokumentacja_Gecko_DOM - Gecko - Wszystkie_kategorie translation_of: Web/API/UIEvent/view +original_slug: Web/API/Event/view ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/web_storage_api/index.html b/files/pl/web/api/web_storage_api/index.html index 238b10d4d7..7cd66bc9fe 100644 --- a/files/pl/web/api/web_storage_api/index.html +++ b/files/pl/web/api/web_storage_api/index.html @@ -1,6 +1,6 @@ --- title: Storage -slug: Web/API/Storage +slug: Web/API/Web_Storage_API tags: - DOM - Dokumentacja_Gecko_DOM @@ -9,6 +9,7 @@ tags: - Wszystkie_kategorie translation_of: Web/API/Web_Storage_API translation_of_original: Web/Guide/API/DOM/Storage +original_slug: Web/API/Storage ---

{{ ApiRef() }}

diff --git a/files/pl/web/api/websockets_api/index.html b/files/pl/web/api/websockets_api/index.html index ed590efefb..8cf0de0bd1 100644 --- a/files/pl/web/api/websockets_api/index.html +++ b/files/pl/web/api/websockets_api/index.html @@ -1,7 +1,8 @@ --- title: WebSockets -slug: WebSockets +slug: Web/API/WebSockets_API translation_of: Web/API/WebSockets_API +original_slug: WebSockets ---

WebSocket to zaawansowana technologia, która pozwala na otwarcie interaktywnej sesji komunikacyjnej pomiędzy przeglądarką użytkownika a serwerem. Dzięki temu API możesz wysłać wiadomość do serwera oraz otrzymać od niego odpowiedzi jako zdarzenia, bez konieczności ponownego odpytywania o nie serwera.

diff --git a/files/pl/web/api/windoworworkerglobalscope/atob/index.html b/files/pl/web/api/windoworworkerglobalscope/atob/index.html index cd36201a6c..862f7b56fe 100644 --- a/files/pl/web/api/windoworworkerglobalscope/atob/index.html +++ b/files/pl/web/api/windoworworkerglobalscope/atob/index.html @@ -1,6 +1,6 @@ --- title: WindowBase64.atob() -slug: Web/API/WindowBase64/atob +slug: Web/API/WindowOrWorkerGlobalScope/atob tags: - API - Base-64 @@ -11,6 +11,7 @@ tags: - Referencja - WindowBase64 translation_of: Web/API/WindowOrWorkerGlobalScope/atob +original_slug: Web/API/WindowBase64/atob ---

{{APIRef}}

Funkcja WindowBase64.atob() dekoduje ciąg danych, który został zakodowany używając kodowania base-64. Możesz użyć metody window.btoa() aby zakodować i przesłać dane, które w innym wypadku mogą powodować problemy z komunikacją, a następnie odebrać je i użyć metody window.atob() aby zdekodować dane ponownie. Na przykład możesz zakodować, przesłać i zdekodować znaki kontrolne ASCII o wartościach od 0 do 31.

diff --git a/files/pl/web/api/windoworworkerglobalscope/btoa/index.html b/files/pl/web/api/windoworworkerglobalscope/btoa/index.html index cf3e90c26d..6b1cc90cc4 100644 --- a/files/pl/web/api/windoworworkerglobalscope/btoa/index.html +++ b/files/pl/web/api/windoworworkerglobalscope/btoa/index.html @@ -1,6 +1,6 @@ --- title: WindowBase64.btoa() -slug: Web/API/WindowBase64/btoa +slug: Web/API/WindowOrWorkerGlobalScope/btoa tags: - API - Base-64 @@ -10,6 +10,7 @@ tags: - Referencja - WindowBase64 translation_of: Web/API/WindowOrWorkerGlobalScope/btoa +original_slug: Web/API/WindowBase64/btoa ---

{{APIRef}}

Tworzy string ASCII zakodowany w base-64 z ciągu ("string") danych binarnych.

diff --git a/files/pl/web/api/windoworworkerglobalscope/clearinterval/index.html b/files/pl/web/api/windoworworkerglobalscope/clearinterval/index.html index e763be1f4a..e4ecb8701d 100644 --- a/files/pl/web/api/windoworworkerglobalscope/clearinterval/index.html +++ b/files/pl/web/api/windoworworkerglobalscope/clearinterval/index.html @@ -1,9 +1,10 @@ --- title: window.clearInterval -slug: Web/API/Window/clearInterval +slug: Web/API/WindowOrWorkerGlobalScope/clearInterval tags: - Window translation_of: Web/API/WindowOrWorkerGlobalScope/clearInterval +original_slug: Web/API/Window/clearInterval ---
{{ApiRef}}
diff --git a/files/pl/web/api/windoworworkerglobalscope/cleartimeout/index.html b/files/pl/web/api/windoworworkerglobalscope/cleartimeout/index.html index 64604dc479..b57e9d04b4 100644 --- a/files/pl/web/api/windoworworkerglobalscope/cleartimeout/index.html +++ b/files/pl/web/api/windoworworkerglobalscope/cleartimeout/index.html @@ -1,7 +1,8 @@ --- title: window.clearTimeout -slug: Web/API/Window/clearTimeout +slug: Web/API/WindowOrWorkerGlobalScope/clearTimeout translation_of: Web/API/WindowOrWorkerGlobalScope/clearTimeout +original_slug: Web/API/Window/clearTimeout ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/windoworworkerglobalscope/index.html b/files/pl/web/api/windoworworkerglobalscope/index.html index 88443161b5..668b6a0a72 100644 --- a/files/pl/web/api/windoworworkerglobalscope/index.html +++ b/files/pl/web/api/windoworworkerglobalscope/index.html @@ -1,8 +1,9 @@ --- title: WindowBase64 -slug: Web/API/WindowBase64 +slug: Web/API/WindowOrWorkerGlobalScope translation_of: Web/API/WindowOrWorkerGlobalScope translation_of_original: Web/API/WindowBase64 +original_slug: Web/API/WindowBase64 ---

{{APIRef("HTML DOM")}}

diff --git a/files/pl/web/api/windoworworkerglobalscope/setinterval/index.html b/files/pl/web/api/windoworworkerglobalscope/setinterval/index.html index 5cbfadde80..277b9c44d7 100644 --- a/files/pl/web/api/windoworworkerglobalscope/setinterval/index.html +++ b/files/pl/web/api/windoworworkerglobalscope/setinterval/index.html @@ -1,6 +1,6 @@ --- title: window.setInterval -slug: Web/API/Window/setInterval +slug: Web/API/WindowOrWorkerGlobalScope/setInterval tags: - DOM - DOM_0 @@ -8,6 +8,7 @@ tags: - Gecko - Wszystkie_kategorie translation_of: Web/API/WindowOrWorkerGlobalScope/setInterval +original_slug: Web/API/Window/setInterval ---

{{ ApiRef() }}

diff --git a/files/pl/web/api/windoworworkerglobalscope/settimeout/index.html b/files/pl/web/api/windoworworkerglobalscope/settimeout/index.html index 926080dd5b..bfe274a8f7 100644 --- a/files/pl/web/api/windoworworkerglobalscope/settimeout/index.html +++ b/files/pl/web/api/windoworworkerglobalscope/settimeout/index.html @@ -1,6 +1,6 @@ --- title: window.setTimeout -slug: Web/API/Window/setTimeout +slug: Web/API/WindowOrWorkerGlobalScope/setTimeout tags: - DOM - DOM_0 @@ -8,6 +8,7 @@ tags: - Gecko - Wszystkie_kategorie translation_of: Web/API/WindowOrWorkerGlobalScope/setTimeout +original_slug: Web/API/Window/setTimeout ---

{{ ApiRef() }}

Podsumowanie

diff --git a/files/pl/web/api/xmlhttprequest/index.html b/files/pl/web/api/xmlhttprequest/index.html index 70711f894b..646ce1d952 100644 --- a/files/pl/web/api/xmlhttprequest/index.html +++ b/files/pl/web/api/xmlhttprequest/index.html @@ -1,11 +1,12 @@ --- title: XMLHttpRequest -slug: XMLHttpRequest +slug: Web/API/XMLHttpRequest tags: - AJAX - Wszystkie_kategorie - XMLHttpRequest translation_of: Web/API/XMLHttpRequest +original_slug: XMLHttpRequest ---

Obiekt XMLHttpRequest jest obiektem JavaScript zaprojektowanym przez firmę Microsoft i zaadaptowanym w programach Mozilla. Służy do pobierania danych przy użyciu protokołu HTTP. Wbrew nazwie może być stosowany do obsługi dokumentów w wielu formatach, nie tylko XML, ale także JSON.

Artykuł ten zawiera między innymi informacje specyficzne dla silnika Gecko lub kodu uprzywilejowanego, takiego jak kod rozszerzeń programu Firefox. diff --git a/files/pl/web/api/xmlhttprequest/using_xmlhttprequest/index.html b/files/pl/web/api/xmlhttprequest/using_xmlhttprequest/index.html index b804b9992c..94be8159b1 100644 --- a/files/pl/web/api/xmlhttprequest/using_xmlhttprequest/index.html +++ b/files/pl/web/api/xmlhttprequest/using_xmlhttprequest/index.html @@ -1,7 +1,8 @@ --- title: Wykorzystanie XMLHttpRequest -slug: XMLHttpRequest/Using_XMLHttpRequest +slug: Web/API/XMLHttpRequest/Using_XMLHttpRequest translation_of: Web/API/XMLHttpRequest/Using_XMLHttpRequest +original_slug: XMLHttpRequest/Using_XMLHttpRequest ---

XMLHttpRequest makes sending HTTP requests very easy.  You simply create an instance of the object, open a URL, and send the request.  The HTTP status of the result, as well as the result's contents, are available in the request object when the transaction is completed. This page outlines some of the common and even slightly obscure use cases for this powerful JavaScript object.

function reqListener () {
diff --git a/files/pl/web/css/_colon_-moz-first-node/index.html b/files/pl/web/css/_colon_-moz-first-node/index.html
index 123c08088b..974b36b042 100644
--- a/files/pl/web/css/_colon_-moz-first-node/index.html
+++ b/files/pl/web/css/_colon_-moz-first-node/index.html
@@ -1,12 +1,13 @@
 ---
 title: ':first-node'
-slug: 'Web/CSS/:first-node'
+slug: Web/CSS/:-moz-first-node
 tags:
   - CSS
-  - 'CSS:Dokumentacje'
+  - CSS:Dokumentacje
   - Dokumentacje
   - Wszystkie_kategorie
-translation_of: 'Web/CSS/:-moz-first-node'
+translation_of: Web/CSS/:-moz-first-node
+original_slug: Web/CSS/:first-node
 ---
 

{{Non-standard_header}}{{ CSSRef() }}

diff --git a/files/pl/web/css/_doublecolon_after/index.html b/files/pl/web/css/_doublecolon_after/index.html index 71261c88bb..d31005d0a5 100644 --- a/files/pl/web/css/_doublecolon_after/index.html +++ b/files/pl/web/css/_doublecolon_after/index.html @@ -1,12 +1,13 @@ --- title: ':after' -slug: 'Web/CSS/:after' +slug: Web/CSS/::after tags: - CSS - - 'CSS:Dokumentacje' + - CSS:Dokumentacje - Dokumentacje - Wszystkie_kategorie -translation_of: 'Web/CSS/::after' +translation_of: Web/CSS/::after +original_slug: Web/CSS/:after ---

{{ CSSRef() }}

diff --git a/files/pl/web/css/_doublecolon_before/index.html b/files/pl/web/css/_doublecolon_before/index.html index 5c1a1f3772..40abf18376 100644 --- a/files/pl/web/css/_doublecolon_before/index.html +++ b/files/pl/web/css/_doublecolon_before/index.html @@ -1,12 +1,13 @@ --- title: ':before' -slug: 'Web/CSS/:before' +slug: Web/CSS/::before tags: - CSS - - 'CSS:Dokumentacje' + - CSS:Dokumentacje - Dokumentacje - Wszystkie_kategorie -translation_of: 'Web/CSS/::before' +translation_of: Web/CSS/::before +original_slug: Web/CSS/:before ---

{{ CSSRef() }}

diff --git a/files/pl/web/css/_doublecolon_first-letter/index.html b/files/pl/web/css/_doublecolon_first-letter/index.html index 5de2e64cbd..99ff062843 100644 --- a/files/pl/web/css/_doublecolon_first-letter/index.html +++ b/files/pl/web/css/_doublecolon_first-letter/index.html @@ -1,12 +1,13 @@ --- title: ':first-letter' -slug: 'Web/CSS/:first-letter' +slug: Web/CSS/::first-letter tags: - CSS - - 'CSS:Dokumentacje' + - CSS:Dokumentacje - Dokumentacje - Wszystkie_kategorie -translation_of: 'Web/CSS/::first-letter' +translation_of: Web/CSS/::first-letter +original_slug: Web/CSS/:first-letter ---

{{ CSSRef() }}

diff --git a/files/pl/web/css/box-align/index.html b/files/pl/web/css/box-align/index.html index 1d6c77d415..cee49a6176 100644 --- a/files/pl/web/css/box-align/index.html +++ b/files/pl/web/css/box-align/index.html @@ -1,10 +1,11 @@ --- title: '-moz-box-align' -slug: Web/CSS/-moz-box-align +slug: Web/CSS/box-align tags: - CSS - Non-standard translation_of: Web/CSS/box-align +original_slug: Web/CSS/-moz-box-align ---

{{ CSSRef() }}

diff --git a/files/pl/web/css/box-flex/index.html b/files/pl/web/css/box-flex/index.html index bd4f192a92..591e77d9a8 100644 --- a/files/pl/web/css/box-flex/index.html +++ b/files/pl/web/css/box-flex/index.html @@ -1,10 +1,11 @@ --- title: '-moz-box-flex' -slug: Web/CSS/-moz-box-flex +slug: Web/CSS/box-flex tags: - CSS - Non-standard translation_of: Web/CSS/box-flex +original_slug: Web/CSS/-moz-box-flex ---

{{ CSSRef() }}

diff --git a/files/pl/web/css/box-orient/index.html b/files/pl/web/css/box-orient/index.html index 5effdac347..f9d003622f 100644 --- a/files/pl/web/css/box-orient/index.html +++ b/files/pl/web/css/box-orient/index.html @@ -1,10 +1,11 @@ --- title: '-moz-box-orient' -slug: Web/CSS/-moz-box-orient +slug: Web/CSS/box-orient tags: - CSS - Non-standard translation_of: Web/CSS/box-orient +original_slug: Web/CSS/-moz-box-orient ---

{{ CSSRef() }}

diff --git a/files/pl/web/css/box-pack/index.html b/files/pl/web/css/box-pack/index.html index edbbe60856..b56eea29e6 100644 --- a/files/pl/web/css/box-pack/index.html +++ b/files/pl/web/css/box-pack/index.html @@ -1,10 +1,11 @@ --- title: '-moz-box-pack' -slug: Web/CSS/-moz-box-pack +slug: Web/CSS/box-pack tags: - CSS - Non-standard translation_of: Web/CSS/box-pack +original_slug: Web/CSS/-moz-box-pack ---

{{ CSSRef() }}

diff --git a/files/pl/web/css/class_selectors/index.html b/files/pl/web/css/class_selectors/index.html index 12f8d4f5c8..4ab4a81108 100644 --- a/files/pl/web/css/class_selectors/index.html +++ b/files/pl/web/css/class_selectors/index.html @@ -1,12 +1,13 @@ --- title: Selektor klasy -slug: Web/CSS/Selektor_klasy +slug: Web/CSS/Class_selectors tags: - CSS - Klasy - Reference - Selektory translation_of: Web/CSS/Class_selectors +original_slug: Web/CSS/Selektor_klasy ---
{{CSSRef("Selectors")}}
diff --git a/files/pl/web/css/css_basic_user_interface/using_url_values_for_the_cursor_property/index.html b/files/pl/web/css/css_basic_user_interface/using_url_values_for_the_cursor_property/index.html index f6e786ee52..eed038bdcc 100644 --- a/files/pl/web/css/css_basic_user_interface/using_url_values_for_the_cursor_property/index.html +++ b/files/pl/web/css/css_basic_user_interface/using_url_values_for_the_cursor_property/index.html @@ -1,6 +1,6 @@ --- title: Użycie wartości URL dla własności cursor -slug: Web/CSS/cursor/Użycie_wartości_URL_dla_własności_cursor +slug: Web/CSS/CSS_Basic_User_Interface/Using_URL_values_for_the_cursor_property tags: - CSS - CSS_2.1 @@ -8,6 +8,7 @@ tags: - Programowanie_dla_wielu_przeglądarek - Wszystkie_kategorie translation_of: Web/CSS/CSS_Basic_User_Interface/Using_URL_values_for_the_cursor_property +original_slug: Web/CSS/cursor/Użycie_wartości_URL_dla_własności_cursor ---

 

Gecko 1.8 (Firefox 1.5, SeaMonkey 1.0) wspiera wartości URL dla własności cursor CSS 2/2.1. To pozwala używać zewnętrzne obrazki jako kursory myszy — można użyć każdego formatu wspieranego przez Gecko.

diff --git a/files/pl/web/css/css_color/index.html b/files/pl/web/css/css_color/index.html index 93bc7ca016..174edbd41e 100644 --- a/files/pl/web/css/css_color/index.html +++ b/files/pl/web/css/css_color/index.html @@ -1,6 +1,6 @@ --- title: CSS Colors -slug: Web/CSS/CSS_Colors +slug: Web/CSS/CSS_Color tags: - CSS - CSS Colors @@ -10,6 +10,7 @@ tags: - TopicStub translation_of: Web/CSS/CSS_Color translation_of_original: Web/CSS/CSS_Colors +original_slug: Web/CSS/CSS_Colors ---
{{CSSRef}}
diff --git a/files/pl/web/css/css_colors/color_picker_tool/index.html b/files/pl/web/css/css_colors/color_picker_tool/index.html index 7907144f10..496738c68b 100644 --- a/files/pl/web/css/css_colors/color_picker_tool/index.html +++ b/files/pl/web/css/css_colors/color_picker_tool/index.html @@ -1,6 +1,6 @@ --- title: Narzędzie doboru kolorów -slug: Web/CSS/CSS_Colors/Narzedzie_doboru_kolorow +slug: Web/CSS/CSS_Colors/Color_picker_tool tags: - CSS - CSS Kolory @@ -12,6 +12,7 @@ tags: - narzędzie do wybierania kolorów - wybieranie kolorów translation_of: Web/CSS/CSS_Colors/Color_picker_tool +original_slug: Web/CSS/CSS_Colors/Narzedzie_doboru_kolorow ---

ColorPicker tool

diff --git a/files/pl/web/css/css_columns/using_multi-column_layouts/index.html b/files/pl/web/css/css_columns/using_multi-column_layouts/index.html index 19d3c4285a..50174ab4e8 100644 --- a/files/pl/web/css/css_columns/using_multi-column_layouts/index.html +++ b/files/pl/web/css/css_columns/using_multi-column_layouts/index.html @@ -1,11 +1,12 @@ --- title: Kolumny CSS3 -slug: Web/Guide/CSS/Kolumny_CSS3 +slug: Web/CSS/CSS_Columns/Using_multi-column_layouts tags: - CSS - CSS_3 - Wszystkie_kategorie translation_of: Web/CSS/CSS_Columns/Using_multi-column_layouts +original_slug: Web/Guide/CSS/Kolumny_CSS3 ---

diff --git a/files/pl/web/css/css_grid_layout/realizing_common_layouts_using_css_grid_layout/index.html b/files/pl/web/css/css_grid_layout/realizing_common_layouts_using_css_grid_layout/index.html index 93ac130fce..5013e75f11 100644 --- a/files/pl/web/css/css_grid_layout/realizing_common_layouts_using_css_grid_layout/index.html +++ b/files/pl/web/css/css_grid_layout/realizing_common_layouts_using_css_grid_layout/index.html @@ -1,8 +1,9 @@ --- title: Projektowanie typowych układów za pomocą układu siatki CSS -slug: >- - Web/CSS/CSS_Grid_Layout/Realizacja_typowych_ukladow_za_pomoca_ukladu_siatki_CSS +slug: Web/CSS/CSS_Grid_Layout/Realizing_common_layouts_using_CSS_Grid_Layout translation_of: Web/CSS/CSS_Grid_Layout/Realizing_common_layouts_using_CSS_Grid_Layout +original_slug: >- + Web/CSS/CSS_Grid_Layout/Realizacja_typowych_ukladow_za_pomoca_ukladu_siatki_CSS ---

Na zakończenie tego zestawu poradników do Układów Siatki CSS (ang. CSS Grid Layout), przejdę przez kilka różnych układów, demonstrujących niektóre z  technik, których można użyć podczas projektowania z użyciem tej technologii. Przyjrzymy się przykładowi, korzystającemu z wartości grid-template-areas, typowemu 12-kolumnowemu systemowi elastycznej siatki, a także wykazowi produktów stworzonemu za pomocą automatycznego rozmieszczania. Jak wynika z wyżej przedstawionych przykładów, często istnieje więcej niż jeden sposób, aby osiągnąć pożądany efekt z układem siatki. Wybierz  tę metodę, która jest najbardziej pomocna w rozwiązaniu problemów przed którymi stoisz i  dla projektów, które realizujesz.

diff --git a/files/pl/web/css/css_lists_and_counters/using_css_counters/index.html b/files/pl/web/css/css_lists_and_counters/using_css_counters/index.html index 3c494e6af3..0886615002 100644 --- a/files/pl/web/css/css_lists_and_counters/using_css_counters/index.html +++ b/files/pl/web/css/css_lists_and_counters/using_css_counters/index.html @@ -1,10 +1,11 @@ --- title: Liczniki CSS -slug: Web/Guide/Liczniki_CSS +slug: Web/CSS/CSS_Lists_and_Counters/Using_CSS_counters tags: - CSS - Wszystkie_kategorie translation_of: Web/CSS/CSS_Lists_and_Counters/Using_CSS_counters +original_slug: Web/Guide/Liczniki_CSS ---

 

diff --git a/files/pl/web/css/css_selectors/using_the__colon_target_pseudo-class_in_selectors/index.html b/files/pl/web/css/css_selectors/using_the__colon_target_pseudo-class_in_selectors/index.html index ff4ec92e20..03cdc7b7a9 100644 --- a/files/pl/web/css/css_selectors/using_the__colon_target_pseudo-class_in_selectors/index.html +++ b/files/pl/web/css/css_selectors/using_the__colon_target_pseudo-class_in_selectors/index.html @@ -1,7 +1,8 @@ --- -title: 'Użycie pseudoklasy :target w selektorach' -slug: 'Web/CSS/CSS_Selectors/Użycie_pseudoklasy_:target_w_selektorach' -translation_of: 'Web/CSS/CSS_Selectors/Using_the_:target_pseudo-class_in_selectors' +title: Użycie pseudoklasy :target w selektorach +slug: Web/CSS/CSS_Selectors/Using_the_:target_pseudo-class_in_selectors +translation_of: Web/CSS/CSS_Selectors/Using_the_:target_pseudo-class_in_selectors +original_slug: Web/CSS/CSS_Selectors/Użycie_pseudoklasy_:target_w_selektorach ---
{{CSSRef}}
diff --git a/files/pl/web/css/inheritance/index.html b/files/pl/web/css/inheritance/index.html index e8049231f1..d9c1db46fc 100644 --- a/files/pl/web/css/inheritance/index.html +++ b/files/pl/web/css/inheritance/index.html @@ -1,12 +1,13 @@ --- title: Dziedziczenie -slug: Web/CSS/Dziedziczenie +slug: Web/CSS/inheritance tags: - CSS - - 'CSS:Dokumentacje' + - CSS:Dokumentacje - Dokumentacje - Wszystkie_kategorie translation_of: Web/CSS/inheritance +original_slug: Web/CSS/Dziedziczenie ---

{{ CSSRef() }} diff --git a/files/pl/web/css/initial_value/index.html b/files/pl/web/css/initial_value/index.html index 8144cb37ba..cdbb5bb45e 100644 --- a/files/pl/web/css/initial_value/index.html +++ b/files/pl/web/css/initial_value/index.html @@ -1,12 +1,13 @@ --- title: Wartość początkowa -slug: Web/CSS/Wartość_początkowa +slug: Web/CSS/initial_value tags: - CSS - - 'CSS:Dokumentacje' + - CSS:Dokumentacje - Dokumentacje - Wszystkie_kategorie translation_of: Web/CSS/initial_value +original_slug: Web/CSS/Wartość_początkowa ---

{{ CSSRef() }}

diff --git a/files/pl/web/css/media_queries/testing_media_queries/index.html b/files/pl/web/css/media_queries/testing_media_queries/index.html index 140d3a1796..f9adefceb9 100644 --- a/files/pl/web/css/media_queries/testing_media_queries/index.html +++ b/files/pl/web/css/media_queries/testing_media_queries/index.html @@ -1,7 +1,8 @@ --- title: Sprawdzanie media queries -slug: Web/Guide/CSS/Sprawdzanie_media_queries +slug: Web/CSS/Media_Queries/Testing_media_queries translation_of: Web/CSS/Media_Queries/Testing_media_queries +original_slug: Web/Guide/CSS/Sprawdzanie_media_queries ---

{{SeeCompatTable}}

diff --git a/files/pl/web/css/outline-color/index.html b/files/pl/web/css/outline-color/index.html index ca9e572624..bb46a90ef2 100644 --- a/files/pl/web/css/outline-color/index.html +++ b/files/pl/web/css/outline-color/index.html @@ -1,13 +1,14 @@ --- title: '-moz-outline-color' -slug: Web/CSS/-moz-outline-color +slug: Web/CSS/outline-color tags: - CSS - - 'CSS:Dokumentacje' - - 'CSS:Rozszerzenia_Mozilli' + - CSS:Dokumentacje + - CSS:Rozszerzenia_Mozilli - Dokumentacje - Wszystkie_kategorie translation_of: Web/CSS/outline-color translation_of_original: Web/CSS/-moz-outline-color +original_slug: Web/CSS/-moz-outline-color ---

d

diff --git a/files/pl/web/css/privacy_and_the__colon_visited_selector/index.html b/files/pl/web/css/privacy_and_the__colon_visited_selector/index.html index fad2ac55d1..50bd1abd23 100644 --- a/files/pl/web/css/privacy_and_the__colon_visited_selector/index.html +++ b/files/pl/web/css/privacy_and_the__colon_visited_selector/index.html @@ -1,7 +1,8 @@ --- -title: 'Prywatność i znacznik :visited' -slug: 'Web/CSS/Prywatnosc_i_znacznik_:visited' -translation_of: 'Web/CSS/Privacy_and_the_:visited_selector' +title: Prywatność i znacznik :visited +slug: Web/CSS/Privacy_and_the_:visited_selector +translation_of: Web/CSS/Privacy_and_the_:visited_selector +original_slug: Web/CSS/Prywatnosc_i_znacznik_:visited ---
{{cssref}}
diff --git a/files/pl/web/css/reference/index.html b/files/pl/web/css/reference/index.html index c6b8ea66c6..a2672d95a4 100644 --- a/files/pl/web/css/reference/index.html +++ b/files/pl/web/css/reference/index.html @@ -1,7 +1,8 @@ --- title: Dokumentacja CSS -slug: Web/CSS/CSS_Reference +slug: Web/CSS/Reference translation_of: Web/CSS/Reference +original_slug: Web/CSS/CSS_Reference ---

Specyfikacja CSS zawiera wszystkie standardowe właściwości CSS, w tym  pseudo-klas i pseudo-elementow, zasad używania znaku @i selektorów w porządku alfabetycznym. Taka organizacja specyfikacji pozwala na szybki dostęp do szczegółowych informacji o każdym elemencie specyfikacji.

diff --git a/files/pl/web/css/shorthand_properties/index.html b/files/pl/web/css/shorthand_properties/index.html index fa244eb571..846f268cb4 100644 --- a/files/pl/web/css/shorthand_properties/index.html +++ b/files/pl/web/css/shorthand_properties/index.html @@ -1,10 +1,11 @@ --- title: Skrócone deklaracje CSS -slug: Web/CSS/Skrócone_deklaracje_CSS +slug: Web/CSS/Shorthand_properties tags: - CSS - Wszystkie_kategorie translation_of: Web/CSS/Shorthand_properties +original_slug: Web/CSS/Skrócone_deklaracje_CSS ---

diff --git a/files/pl/web/css/type_selectors/index.html b/files/pl/web/css/type_selectors/index.html index 13dc191bb1..13be3bae67 100644 --- a/files/pl/web/css/type_selectors/index.html +++ b/files/pl/web/css/type_selectors/index.html @@ -1,12 +1,13 @@ --- title: Selektory typu -slug: Web/CSS/Selektory_typu +slug: Web/CSS/Type_selectors tags: - CSS - - 'CSS:Dokumentacje' + - CSS:Dokumentacje - Dokumentacje - Wszystkie_kategorie translation_of: Web/CSS/Type_selectors +original_slug: Web/CSS/Selektory_typu ---
{{CSSRef}}
diff --git a/files/pl/web/css/universal_selectors/index.html b/files/pl/web/css/universal_selectors/index.html index c3c4952f06..efe3ca613d 100644 --- a/files/pl/web/css/universal_selectors/index.html +++ b/files/pl/web/css/universal_selectors/index.html @@ -1,10 +1,11 @@ --- title: Selektor uniwersalny -slug: Web/CSS/Selektor_uniwersalny +slug: Web/CSS/Universal_selectors tags: - CSS - Selektory translation_of: Web/CSS/Universal_selectors +original_slug: Web/CSS/Selektor_uniwersalny ---
{{CSSRef}}
diff --git a/files/pl/web/css/webkit_extensions/index.html b/files/pl/web/css/webkit_extensions/index.html index 0b60bd4475..113dac2881 100644 --- a/files/pl/web/css/webkit_extensions/index.html +++ b/files/pl/web/css/webkit_extensions/index.html @@ -1,10 +1,11 @@ --- title: Rozszerzenia WebKit -slug: Web/CSS/Rozszerzenia_WebKit +slug: Web/CSS/WebKit_Extensions tags: - CSS - Referencje CSS translation_of: Web/CSS/WebKit_Extensions +original_slug: Web/CSS/Rozszerzenia_WebKit ---
{{CSSRef}}
diff --git a/files/pl/web/guide/ajax/getting_started/index.html b/files/pl/web/guide/ajax/getting_started/index.html index 1e4a4ec491..59fe3cee8a 100644 --- a/files/pl/web/guide/ajax/getting_started/index.html +++ b/files/pl/web/guide/ajax/getting_started/index.html @@ -1,10 +1,11 @@ --- title: Na początek -slug: Web/Guide/AJAX/Na_początek +slug: Web/Guide/AJAX/Getting_Started tags: - AJAX - Wszystkie_kategorie translation_of: Web/Guide/AJAX/Getting_Started +original_slug: Web/Guide/AJAX/Na_początek ---

Ten artykuł pozwoli Ci poznać podstawy technologii AJAX oraz poda dwa proste, gotowe do użycia przykłady. diff --git a/files/pl/web/guide/events/creating_and_triggering_events/index.html b/files/pl/web/guide/events/creating_and_triggering_events/index.html index 82deba43c1..bc359ede78 100644 --- a/files/pl/web/guide/events/creating_and_triggering_events/index.html +++ b/files/pl/web/guide/events/creating_and_triggering_events/index.html @@ -1,6 +1,6 @@ --- title: dispatchEvent - przykład -slug: DOM/dispatchEvent_-_przykład +slug: Web/Guide/Events/Creating_and_triggering_events tags: - DOM - Dokumentacja_Gecko_DOM @@ -8,6 +8,7 @@ tags: - Wszystkie_kategorie translation_of: Web/Guide/Events/Creating_and_triggering_events translation_of_original: Web/Guide/Events/Event_dispatching_example +original_slug: DOM/dispatchEvent_-_przykład ---

{{ ApiRef() }}
diff --git a/files/pl/web/guide/html/html5/index.html b/files/pl/web/guide/html/html5/index.html index 77e7775ce2..89b3a43466 100644 --- a/files/pl/web/guide/html/html5/index.html +++ b/files/pl/web/guide/html/html5/index.html @@ -1,11 +1,12 @@ --- title: HTML5 -slug: HTML/HTML5 +slug: Web/Guide/HTML/HTML5 tags: - CSS3 - HTML - HTML 5 translation_of: Web/Guide/HTML/HTML5 +original_slug: HTML/HTML5 ---

HTML5 jest najnowszą wersją standardu opisującego język HTML. Termin ten możemy zdefiniować na dwa sposoby:

diff --git a/files/pl/web/html/block-level_elements/index.html b/files/pl/web/html/block-level_elements/index.html index 392dc43954..0cbc3b07d8 100644 --- a/files/pl/web/html/block-level_elements/index.html +++ b/files/pl/web/html/block-level_elements/index.html @@ -1,11 +1,12 @@ --- title: Elementy blokowe -slug: Web/HTML/Elementy_blokowe +slug: Web/HTML/Block-level_elements tags: - HTML - - 'HTML:Opis_elementów' + - HTML:Opis_elementów - Wszystkie_kategorie translation_of: Web/HTML/Block-level_elements +original_slug: Web/HTML/Elementy_blokowe ---

Podsumowanie

Elementy blokowe mogą wystąpić tylko w body. Od elementów liniowych odróżnia je: diff --git a/files/pl/web/html/global_attributes/spellcheck/index.html b/files/pl/web/html/global_attributes/spellcheck/index.html index ed230d2b07..a0b6c48785 100644 --- a/files/pl/web/html/global_attributes/spellcheck/index.html +++ b/files/pl/web/html/global_attributes/spellcheck/index.html @@ -1,7 +1,8 @@ --- title: sprawdzanie pisowni -slug: Web/HTML/Global_attributes/pisownia +slug: Web/HTML/Global_attributes/spellcheck translation_of: Web/HTML/Global_attributes/spellcheck +original_slug: Web/HTML/Global_attributes/pisownia ---

{{HTMLSidebar("Global_attributes")}}
diff --git a/files/pl/web/html/inline_elements/index.html b/files/pl/web/html/inline_elements/index.html index f5cd417ec8..71d70ca287 100644 --- a/files/pl/web/html/inline_elements/index.html +++ b/files/pl/web/html/inline_elements/index.html @@ -1,12 +1,13 @@ --- title: Elementy liniowe -slug: Web/HTML/Elementy_liniowe +slug: Web/HTML/Inline_elements tags: - HTML - - 'HTML:Element' - - 'HTML:Élément(2)' + - HTML:Element + - HTML:Élément(2) - Wszystkie_kategorie translation_of: Web/HTML/Inline_elements +original_slug: Web/HTML/Elementy_liniowe ---

Podsumowanie

Elementy liniowe są elementami, które mogą wystąpić tylko w body. Od elementów blokowych odróżnia je: diff --git a/files/pl/web/html/quirks_mode_and_standards_mode/index.html b/files/pl/web/html/quirks_mode_and_standards_mode/index.html index 72018a6571..ace9ddac8d 100644 --- a/files/pl/web/html/quirks_mode_and_standards_mode/index.html +++ b/files/pl/web/html/quirks_mode_and_standards_mode/index.html @@ -1,6 +1,6 @@ --- title: Tryb Zgodności (Quirks Mode) i Tryb Standardów -slug: Web/HTML(PL)/Tryb_Zgodnosci_oraz_Tryb_Standardow +slug: Web/HTML/Quirks_Mode_and_Standards_Mode tags: - Gecko - Guide @@ -10,6 +10,7 @@ tags: - Web Standards - XHTML translation_of: Web/HTML/Quirks_Mode_and_Standards_Mode +original_slug: Web/HTML(PL)/Tryb_Zgodnosci_oraz_Tryb_Standardow ---

W dawnych czasach strony internetowe zwykle pisane były w dwóch wersjach: Jedna dla Netscape Navigator i jedna dla Microsoft Internet Explorer. Kiedy standardy sieciowe były tworzone w W3C, przeglądarki nie mogły po prostu zacząć z nich korzystać, ponieważ w ten sposób zniszczyłyby większość istniejących stron internetowych. W związku z tym przeglądarki wprowadziły dwa tryby traktowania nowych witryn zgodnych ze standardami w inny sposób niż witryn starej generacji.

diff --git a/files/pl/web/http/basics_of_http/mime_types/index.html b/files/pl/web/http/basics_of_http/mime_types/index.html index b5f2753a78..ba1c8ca500 100644 --- a/files/pl/web/http/basics_of_http/mime_types/index.html +++ b/files/pl/web/http/basics_of_http/mime_types/index.html @@ -1,11 +1,12 @@ --- title: Nieprawidłowy typ MIME plików CSS -slug: Nieprawidłowy_typ_MIME_plików_CSS +slug: Web/HTTP/Basics_of_HTTP/MIME_types tags: - CSS - Wszystkie_kategorie translation_of: Web/HTTP/Basics_of_HTTP/MIME_types translation_of_original: Incorrect_MIME_Type_for_CSS_Files +original_slug: Nieprawidłowy_typ_MIME_plików_CSS ---

 

W czym jest problem?

diff --git a/files/pl/web/http/cookies/index.html b/files/pl/web/http/cookies/index.html index d8720ac4c4..7abd392eb7 100644 --- a/files/pl/web/http/cookies/index.html +++ b/files/pl/web/http/cookies/index.html @@ -1,6 +1,6 @@ --- title: Ciasteczka HTTP -slug: Web/HTTP/Ciasteczka +slug: Web/HTTP/Cookies tags: - aplikacje internetowe - ciasteczka @@ -15,6 +15,7 @@ tags: - śledzenie - żądania HTTP translation_of: Web/HTTP/Cookies +original_slug: Web/HTTP/Ciasteczka ---

{{HTTPSidebar}}

diff --git a/files/pl/web/http/headers/date/index.html b/files/pl/web/http/headers/date/index.html index f348b4e839..175c134575 100644 --- a/files/pl/web/http/headers/date/index.html +++ b/files/pl/web/http/headers/date/index.html @@ -1,7 +1,8 @@ --- title: Data -slug: Web/HTTP/Headers/Data +slug: Web/HTTP/Headers/Date translation_of: Web/HTTP/Headers/Date +original_slug: Web/HTTP/Headers/Data ---
{{HTTPSidebar}}
diff --git a/files/pl/web/http/overview/index.html b/files/pl/web/http/overview/index.html index 5fe95ca7ea..62dbfcf35f 100644 --- a/files/pl/web/http/overview/index.html +++ b/files/pl/web/http/overview/index.html @@ -1,12 +1,13 @@ --- title: HTTP - wiadomości ogólne -slug: Web/HTTP/HTTP_wiadomosci_ogólne +slug: Web/HTTP/Overview tags: - HTML - HTTP - Mechanika stron - Wstęp translation_of: Web/HTTP/Overview +original_slug: Web/HTTP/HTTP_wiadomosci_ogólne ---
{{HTTPSidebar}}
diff --git a/files/pl/web/javascript/a_re-introduction_to_javascript/index.html b/files/pl/web/javascript/a_re-introduction_to_javascript/index.html index abb01ce731..f71457a70d 100644 --- a/files/pl/web/javascript/a_re-introduction_to_javascript/index.html +++ b/files/pl/web/javascript/a_re-introduction_to_javascript/index.html @@ -1,7 +1,8 @@ --- title: Ponowne wprowadzenie do JavaScript (JS tutorial) -slug: Web/JavaScript/Ponowne_wprowadzenie_do_JavaScript +slug: Web/JavaScript/A_re-introduction_to_JavaScript translation_of: Web/JavaScript/A_re-introduction_to_JavaScript +original_slug: Web/JavaScript/Ponowne_wprowadzenie_do_JavaScript ---
{{jsSidebar}}
diff --git a/files/pl/web/javascript/about_javascript/index.html b/files/pl/web/javascript/about_javascript/index.html index 26c921724f..4e7e77248b 100644 --- a/files/pl/web/javascript/about_javascript/index.html +++ b/files/pl/web/javascript/about_javascript/index.html @@ -1,7 +1,8 @@ --- title: O JavaScript -slug: Web/JavaScript/O_JavaScript +slug: Web/JavaScript/About_JavaScript translation_of: Web/JavaScript/About_JavaScript +original_slug: Web/JavaScript/O_JavaScript ---
{{JsSidebar}}
diff --git a/files/pl/web/javascript/closures/index.html b/files/pl/web/javascript/closures/index.html index 985f5e50ce..553786a91e 100644 --- a/files/pl/web/javascript/closures/index.html +++ b/files/pl/web/javascript/closures/index.html @@ -1,7 +1,8 @@ --- title: Domknięcia -slug: Web/JavaScript/Domkniecia +slug: Web/JavaScript/Closures translation_of: Web/JavaScript/Closures +original_slug: Web/JavaScript/Domkniecia ---
 {{jsSidebar("Intermediate")}}
diff --git a/files/pl/web/javascript/data_structures/index.html b/files/pl/web/javascript/data_structures/index.html index d6a2808105..4a86825a9e 100644 --- a/files/pl/web/javascript/data_structures/index.html +++ b/files/pl/web/javascript/data_structures/index.html @@ -1,11 +1,12 @@ --- title: Typy oraz struktury danych w JavaScript -slug: Web/JavaScript/typy_oraz_struktury_danych +slug: Web/JavaScript/Data_structures tags: - JavaScript - Początkujący - Typy danych translation_of: Web/JavaScript/Data_structures +original_slug: Web/JavaScript/typy_oraz_struktury_danych ---
{{jsSidebar("More")}}
diff --git a/files/pl/web/javascript/guide/details_of_the_object_model/index.html b/files/pl/web/javascript/guide/details_of_the_object_model/index.html index 2467b1c315..966001124c 100644 --- a/files/pl/web/javascript/guide/details_of_the_object_model/index.html +++ b/files/pl/web/javascript/guide/details_of_the_object_model/index.html @@ -1,13 +1,14 @@ --- title: Powrót dziedziczenia własności -slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności +slug: Web/JavaScript/Guide/Details_of_the_Object_Model tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Details_of_the_Object_Model translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Property_Inheritance_Revisited +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Powrót_dziedziczenia_własności ---

diff --git a/files/pl/web/javascript/guide/expressions_and_operators/index.html b/files/pl/web/javascript/guide/expressions_and_operators/index.html index 272af2a690..2e475c9656 100644 --- a/files/pl/web/javascript/guide/expressions_and_operators/index.html +++ b/files/pl/web/javascript/guide/expressions_and_operators/index.html @@ -1,13 +1,14 @@ --- title: Operatory -slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory +slug: Web/JavaScript/Guide/Expressions_and_Operators tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Expressions_and_Operators translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Operators +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Operatory ---

diff --git a/files/pl/web/javascript/guide/functions/index.html b/files/pl/web/javascript/guide/functions/index.html index d9e66793ea..3d88e960a8 100644 --- a/files/pl/web/javascript/guide/functions/index.html +++ b/files/pl/web/javascript/guide/functions/index.html @@ -1,7 +1,8 @@ --- title: Funkcje -slug: Web/JavaScript/Guide/Funkcje +slug: Web/JavaScript/Guide/Functions translation_of: Web/JavaScript/Guide/Functions +original_slug: Web/JavaScript/Guide/Funkcje ---
{{jsSidebar("JavaScript Guide")}} {{PreviousNext("Web/JavaScript/Guide/Loops_and_iteration", "Web/JavaScript/Guide/Expressions_and_Operators")}}
diff --git a/files/pl/web/javascript/guide/grammar_and_types/index.html b/files/pl/web/javascript/guide/grammar_and_types/index.html index 98e66063d0..1605a47f8e 100644 --- a/files/pl/web/javascript/guide/grammar_and_types/index.html +++ b/files/pl/web/javascript/guide/grammar_and_types/index.html @@ -1,10 +1,11 @@ --- title: Składnia i typy -slug: Web/JavaScript/Guide/Składnia_i_typy +slug: Web/JavaScript/Guide/Grammar_and_types tags: - JavaScript - Poradnik translation_of: Web/JavaScript/Guide/Grammar_and_types +original_slug: Web/JavaScript/Guide/Składnia_i_typy ---
{{jsSidebar("JavaScript Guide")}} {{PreviousNext("Web/JavaScript/Guide/Introduction", "Web/JavaScript/Guide/Control_flow_and_error_handling")}}
diff --git a/files/pl/web/javascript/guide/regular_expressions/index.html b/files/pl/web/javascript/guide/regular_expressions/index.html index 658886f724..0d5119e561 100644 --- a/files/pl/web/javascript/guide/regular_expressions/index.html +++ b/files/pl/web/javascript/guide/regular_expressions/index.html @@ -1,7 +1,6 @@ --- -title: 'Globalne wyszukiwanie, wielkość znaków, wieloliniowe wejście' -slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Globalne_wyszukiwanie,_wielkość_znaków,_wieloliniowe_wejście +title: Globalne wyszukiwanie, wielkość znaków, wieloliniowe wejście +slug: Web/JavaScript/Guide/Regular_Expressions tags: - JavaScript - Przewodnik_JavaScript @@ -9,6 +8,8 @@ tags: translation_of: Web/JavaScript/Guide/Regular_Expressions translation_of_original: >- Web/JavaScript/Guide/Obsolete_Pages/Working_with_Regular_Expressions/Advanced_Searching_With_Flags +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Praca_z_wyrażeniami_regularnymi/Globalne_wyszukiwanie,_wielkość_znaków,_wieloliniowe_wejście ---

diff --git a/files/pl/web/javascript/guide/working_with_objects/index.html b/files/pl/web/javascript/guide/working_with_objects/index.html index 5f4df2019b..773a23b5cf 100644 --- a/files/pl/web/javascript/guide/working_with_objects/index.html +++ b/files/pl/web/javascript/guide/working_with_objects/index.html @@ -1,13 +1,14 @@ --- title: Obiekty i własności -slug: >- - Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_i_własności +slug: Web/JavaScript/Guide/Working_with_Objects tags: - JavaScript - Przewodnik_JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Guide/Working_with_Objects translation_of_original: Web/JavaScript/Guide/Obsolete_Pages/Objects_and_Properties +original_slug: >- + Web/JavaScript/Guide/Obsolete_Pages/Przewodnik_po_języku_JavaScript_1.5/Obiekty_i_własności ---

diff --git a/files/pl/web/javascript/inheritance_and_the_prototype_chain/index.html b/files/pl/web/javascript/inheritance_and_the_prototype_chain/index.html index 0c18115595..c997c3c796 100644 --- a/files/pl/web/javascript/inheritance_and_the_prototype_chain/index.html +++ b/files/pl/web/javascript/inheritance_and_the_prototype_chain/index.html @@ -1,11 +1,12 @@ --- title: Dziedziczenie i łańcuch prototypów -slug: Web/JavaScript/dziedziczenie_lancuch_prototypow +slug: Web/JavaScript/Inheritance_and_the_prototype_chain tags: - Dziedziczenie - JavaScript - OOP translation_of: Web/JavaScript/Inheritance_and_the_prototype_chain +original_slug: Web/JavaScript/dziedziczenie_lancuch_prototypow ---
{{jsSidebar("Advanced")}}
diff --git a/files/pl/web/javascript/language_resources/index.html b/files/pl/web/javascript/language_resources/index.html index c53fd0fd2a..688e0aba73 100644 --- a/files/pl/web/javascript/language_resources/index.html +++ b/files/pl/web/javascript/language_resources/index.html @@ -1,10 +1,11 @@ --- title: Zasoby języka JavaScript -slug: Web/JavaScript/Zasoby_języka_JavaScript +slug: Web/JavaScript/Language_Resources tags: - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Language_Resources +original_slug: Web/JavaScript/Zasoby_języka_JavaScript ---

diff --git a/files/pl/web/javascript/reference/about/index.html b/files/pl/web/javascript/reference/about/index.html index a16cf69e3d..b574d1e042 100644 --- a/files/pl/web/javascript/reference/about/index.html +++ b/files/pl/web/javascript/reference/about/index.html @@ -1,6 +1,6 @@ --- title: O dokumentacji referencyjnej -slug: Web/JavaScript/Referencje/O_tym_dokumencie +slug: Web/JavaScript/Reference/About tags: - Dokumentacja_JavaScript - Dokumentacje @@ -10,6 +10,7 @@ tags: - Strony_wymagające_dopracowania - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/About +original_slug: Web/JavaScript/Referencje/O_tym_dokumencie ---

{{JsSidebar}}

diff --git a/files/pl/web/javascript/reference/classes/constructor/index.html b/files/pl/web/javascript/reference/classes/constructor/index.html index 353adecd19..8d11cce8f0 100644 --- a/files/pl/web/javascript/reference/classes/constructor/index.html +++ b/files/pl/web/javascript/reference/classes/constructor/index.html @@ -1,11 +1,12 @@ --- title: Konstruktor -slug: Web/JavaScript/Reference/Classes/Konstruktor +slug: Web/JavaScript/Reference/Classes/constructor tags: - Classes - JavaScript - Language feature translation_of: Web/JavaScript/Reference/Classes/constructor +original_slug: Web/JavaScript/Reference/Classes/Konstruktor ---
{{jsSidebar("Classes")}}
diff --git a/files/pl/web/javascript/reference/deprecated_and_obsolete_features/index.html b/files/pl/web/javascript/reference/deprecated_and_obsolete_features/index.html index 92c805ac17..e937d7c66d 100644 --- a/files/pl/web/javascript/reference/deprecated_and_obsolete_features/index.html +++ b/files/pl/web/javascript/reference/deprecated_and_obsolete_features/index.html @@ -1,6 +1,6 @@ --- title: Przestarzałe własności i metody -slug: Web/JavaScript/Referencje/Przestarzałe_własności_i_metody +slug: Web/JavaScript/Reference/Deprecated_and_obsolete_features tags: - Dokumentacja_JavaScript - Dokumentacje @@ -8,6 +8,7 @@ tags: - Strony_wymagające_dopracowania - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Deprecated_and_obsolete_features +original_slug: Web/JavaScript/Referencje/Przestarzałe_własności_i_metody ---
{{JsSidebar("More")}}
diff --git a/files/pl/web/javascript/reference/errors/missing_colon_after_property_id/index.html b/files/pl/web/javascript/reference/errors/missing_colon_after_property_id/index.html index ecdb783335..c100d384ac 100644 --- a/files/pl/web/javascript/reference/errors/missing_colon_after_property_id/index.html +++ b/files/pl/web/javascript/reference/errors/missing_colon_after_property_id/index.html @@ -1,12 +1,13 @@ --- title: 'Błąd składni: brakująca własność po identyfikatorze.' -slug: Web/JavaScript/Reference/Errors/Brakujący_średnik_po_własności_id +slug: Web/JavaScript/Reference/Errors/Missing_colon_after_property_id tags: - Błąd - Błąd składniowy - Błędy - JavaScript translation_of: Web/JavaScript/Reference/Errors/Missing_colon_after_property_id +original_slug: Web/JavaScript/Reference/Errors/Brakujący_średnik_po_własności_id ---
{{jsSidebar("Errors")}}
diff --git a/files/pl/web/javascript/reference/functions/arguments/callee/index.html b/files/pl/web/javascript/reference/functions/arguments/callee/index.html index 50b76e1f63..04c4c87538 100644 --- a/files/pl/web/javascript/reference/functions/arguments/callee/index.html +++ b/files/pl/web/javascript/reference/functions/arguments/callee/index.html @@ -1,12 +1,13 @@ --- title: callee -slug: Web/JavaScript/Referencje/Funkcje/arguments/callee +slug: Web/JavaScript/Reference/Functions/arguments/callee tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Functions/arguments/callee +original_slug: Web/JavaScript/Referencje/Funkcje/arguments/callee ---

diff --git a/files/pl/web/javascript/reference/functions/arguments/index.html b/files/pl/web/javascript/reference/functions/arguments/index.html index 8a48b5b323..66091708d9 100644 --- a/files/pl/web/javascript/reference/functions/arguments/index.html +++ b/files/pl/web/javascript/reference/functions/arguments/index.html @@ -1,12 +1,13 @@ --- title: arguments -slug: Web/JavaScript/Referencje/Funkcje/arguments +slug: Web/JavaScript/Reference/Functions/arguments tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Functions/arguments +original_slug: Web/JavaScript/Referencje/Funkcje/arguments ---

diff --git a/files/pl/web/javascript/reference/functions/arguments/length/index.html b/files/pl/web/javascript/reference/functions/arguments/length/index.html index 79d54a4f50..fe871fa77e 100644 --- a/files/pl/web/javascript/reference/functions/arguments/length/index.html +++ b/files/pl/web/javascript/reference/functions/arguments/length/index.html @@ -1,12 +1,13 @@ --- title: length -slug: Web/JavaScript/Referencje/Funkcje/arguments/length +slug: Web/JavaScript/Reference/Functions/arguments/length tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Functions/arguments/length +original_slug: Web/JavaScript/Referencje/Funkcje/arguments/length ---

diff --git a/files/pl/web/javascript/reference/functions/arrow_functions/index.html b/files/pl/web/javascript/reference/functions/arrow_functions/index.html index d1b9d6010f..da3259ac37 100644 --- a/files/pl/web/javascript/reference/functions/arrow_functions/index.html +++ b/files/pl/web/javascript/reference/functions/arrow_functions/index.html @@ -1,7 +1,8 @@ --- title: Funkcje strzałkowe -slug: Web/JavaScript/Reference/Functions/Funkcje_strzalkowe +slug: Web/JavaScript/Reference/Functions/Arrow_functions translation_of: Web/JavaScript/Reference/Functions/Arrow_functions +original_slug: Web/JavaScript/Reference/Functions/Funkcje_strzalkowe ---
{{jsSidebar("Functions")}}
diff --git a/files/pl/web/javascript/reference/functions/default_parameters/index.html b/files/pl/web/javascript/reference/functions/default_parameters/index.html index b192456adf..a0bc76eb74 100644 --- a/files/pl/web/javascript/reference/functions/default_parameters/index.html +++ b/files/pl/web/javascript/reference/functions/default_parameters/index.html @@ -1,11 +1,12 @@ --- title: Parametry domyślne -slug: Web/JavaScript/Reference/Functions/Parametry_domyślne +slug: Web/JavaScript/Reference/Functions/Default_parameters tags: - ECMAScript2015 - Funkcje - JavaScript translation_of: Web/JavaScript/Reference/Functions/Default_parameters +original_slug: Web/JavaScript/Reference/Functions/Parametry_domyślne ---
{{jsSidebar("Functions")}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/concat/index.html b/files/pl/web/javascript/reference/global_objects/array/concat/index.html index 014219e1d9..f740400903 100644 --- a/files/pl/web/javascript/reference/global_objects/array/concat/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/concat/index.html @@ -1,12 +1,13 @@ --- title: Array.prototype.concat() -slug: Web/JavaScript/Referencje/Obiekty/Array/concat +slug: Web/JavaScript/Reference/Global_Objects/Array/concat tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Array/concat +original_slug: Web/JavaScript/Referencje/Obiekty/Array/concat ---
{{JSRef("Global_Objects", "Array")}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/copywithin/index.html b/files/pl/web/javascript/reference/global_objects/array/copywithin/index.html index 1a1917eabd..af9f1b91f7 100644 --- a/files/pl/web/javascript/reference/global_objects/array/copywithin/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/copywithin/index.html @@ -1,6 +1,6 @@ --- title: Array.prototype.copyWithin() -slug: Web/JavaScript/Referencje/Obiekty/Array/copyWithin +slug: Web/JavaScript/Reference/Global_Objects/Array/copyWithin tags: - Array - ECMAScript 2015 @@ -13,6 +13,7 @@ tags: - Tablica - polyfill translation_of: Web/JavaScript/Reference/Global_Objects/Array/copyWithin +original_slug: Web/JavaScript/Referencje/Obiekty/Array/copyWithin ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/entries/index.html b/files/pl/web/javascript/reference/global_objects/array/entries/index.html index 6ff83958f4..f5c7a6d596 100644 --- a/files/pl/web/javascript/reference/global_objects/array/entries/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/entries/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.entries() -slug: Web/JavaScript/Referencje/Obiekty/Array/entries +slug: Web/JavaScript/Reference/Global_Objects/Array/entries translation_of: Web/JavaScript/Reference/Global_Objects/Array/entries +original_slug: Web/JavaScript/Referencje/Obiekty/Array/entries ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/every/index.html b/files/pl/web/javascript/reference/global_objects/array/every/index.html index 4b6cb612a2..707e7bda84 100644 --- a/files/pl/web/javascript/reference/global_objects/array/every/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/every/index.html @@ -1,12 +1,13 @@ --- title: Array.prototype.every() -slug: Web/JavaScript/Referencje/Obiekty/Array/every +slug: Web/JavaScript/Reference/Global_Objects/Array/every tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Array/every +original_slug: Web/JavaScript/Referencje/Obiekty/Array/every ---
{{JSRef("Global_Objects", "Array")}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/fill/index.html b/files/pl/web/javascript/reference/global_objects/array/fill/index.html index 1ab2ef4719..1251451837 100644 --- a/files/pl/web/javascript/reference/global_objects/array/fill/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/fill/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.fill() -slug: Web/JavaScript/Referencje/Obiekty/Array/fill +slug: Web/JavaScript/Reference/Global_Objects/Array/fill translation_of: Web/JavaScript/Reference/Global_Objects/Array/fill +original_slug: Web/JavaScript/Referencje/Obiekty/Array/fill ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/filter/index.html b/files/pl/web/javascript/reference/global_objects/array/filter/index.html index 4b18a34c9c..6ec5d0cdc5 100644 --- a/files/pl/web/javascript/reference/global_objects/array/filter/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/filter/index.html @@ -1,6 +1,6 @@ --- title: Array.prototype.filter() -slug: Web/JavaScript/Referencje/Obiekty/Array/filter +slug: Web/JavaScript/Reference/Global_Objects/Array/filter tags: - Dokumentacja_JavaScript - Dokumentacje @@ -8,6 +8,7 @@ tags: - Strony_wymagające_dopracowania - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Array/filter +original_slug: Web/JavaScript/Referencje/Obiekty/Array/filter ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/find/index.html b/files/pl/web/javascript/reference/global_objects/array/find/index.html index 6e8d67373b..520be8939f 100644 --- a/files/pl/web/javascript/reference/global_objects/array/find/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/find/index.html @@ -1,6 +1,6 @@ --- title: Array.prototype.find() -slug: Web/JavaScript/Referencje/Obiekty/Array/find +slug: Web/JavaScript/Reference/Global_Objects/Array/find tags: - Array - ECMAScript 2015 @@ -11,6 +11,7 @@ tags: - Tablica - polyfill translation_of: Web/JavaScript/Reference/Global_Objects/Array/find +original_slug: Web/JavaScript/Referencje/Obiekty/Array/find ---

{{JSRef}}
Metoda find() zwraca pierwszy element tablicy, który spełnia warunek podanej funkcji testującej.

diff --git a/files/pl/web/javascript/reference/global_objects/array/findindex/index.html b/files/pl/web/javascript/reference/global_objects/array/findindex/index.html index 86a9cf67cf..46d8e2a087 100644 --- a/files/pl/web/javascript/reference/global_objects/array/findindex/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/findindex/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.findIndex() -slug: Web/JavaScript/Referencje/Obiekty/Array/findIndex +slug: Web/JavaScript/Reference/Global_Objects/Array/findIndex translation_of: Web/JavaScript/Reference/Global_Objects/Array/findIndex +original_slug: Web/JavaScript/Referencje/Obiekty/Array/findIndex ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/flat/index.html b/files/pl/web/javascript/reference/global_objects/array/flat/index.html index 3c8de3a43c..063a4f1084 100644 --- a/files/pl/web/javascript/reference/global_objects/array/flat/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/flat/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.flat() -slug: Web/JavaScript/Referencje/Obiekty/Array/flat +slug: Web/JavaScript/Reference/Global_Objects/Array/flat translation_of: Web/JavaScript/Reference/Global_Objects/Array/flat +original_slug: Web/JavaScript/Referencje/Obiekty/Array/flat ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/foreach/index.html b/files/pl/web/javascript/reference/global_objects/array/foreach/index.html index 6968498311..612be4d2fb 100644 --- a/files/pl/web/javascript/reference/global_objects/array/foreach/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/foreach/index.html @@ -1,12 +1,13 @@ --- title: Array.prototype.forEach() -slug: Web/JavaScript/Referencje/Obiekty/Array/forEach +slug: Web/JavaScript/Reference/Global_Objects/Array/forEach tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Array/forEach +original_slug: Web/JavaScript/Referencje/Obiekty/Array/forEach ---
{{JSRef("Global_Objects", "Array")}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/from/index.html b/files/pl/web/javascript/reference/global_objects/array/from/index.html index bd5f0294de..049d4477d1 100644 --- a/files/pl/web/javascript/reference/global_objects/array/from/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/from/index.html @@ -1,7 +1,8 @@ --- title: Array.from() -slug: Web/JavaScript/Referencje/Obiekty/Array/from +slug: Web/JavaScript/Reference/Global_Objects/Array/from translation_of: Web/JavaScript/Reference/Global_Objects/Array/from +original_slug: Web/JavaScript/Referencje/Obiekty/Array/from ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/includes/index.html b/files/pl/web/javascript/reference/global_objects/array/includes/index.html index 526e660571..ead60760a3 100644 --- a/files/pl/web/javascript/reference/global_objects/array/includes/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/includes/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.includes() -slug: Web/JavaScript/Referencje/Obiekty/Array/includes +slug: Web/JavaScript/Reference/Global_Objects/Array/includes translation_of: Web/JavaScript/Reference/Global_Objects/Array/includes +original_slug: Web/JavaScript/Referencje/Obiekty/Array/includes ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/index.html b/files/pl/web/javascript/reference/global_objects/array/index.html index 5cfe52578b..7592e1696b 100644 --- a/files/pl/web/javascript/reference/global_objects/array/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/index.html @@ -1,10 +1,11 @@ --- title: Array -slug: Web/JavaScript/Referencje/Obiekty/Array +slug: Web/JavaScript/Reference/Global_Objects/Array tags: - Array - JavaScript translation_of: Web/JavaScript/Reference/Global_Objects/Array +original_slug: Web/JavaScript/Referencje/Obiekty/Array ---
{{JSRef("Global_Objects", "Array")}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/indexof/index.html b/files/pl/web/javascript/reference/global_objects/array/indexof/index.html index db63c3384c..512e3de6ab 100644 --- a/files/pl/web/javascript/reference/global_objects/array/indexof/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/indexof/index.html @@ -1,12 +1,13 @@ --- title: Array.prototype.indexOf() -slug: Web/JavaScript/Referencje/Obiekty/Array/indexOf +slug: Web/JavaScript/Reference/Global_Objects/Array/indexOf tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Array/indexOf +original_slug: Web/JavaScript/Referencje/Obiekty/Array/indexOf ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/isarray/index.html b/files/pl/web/javascript/reference/global_objects/array/isarray/index.html index 62083e0853..2abef7d8b6 100644 --- a/files/pl/web/javascript/reference/global_objects/array/isarray/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/isarray/index.html @@ -1,7 +1,8 @@ --- title: Array.isArray() -slug: Web/JavaScript/Referencje/Obiekty/Array/isArray +slug: Web/JavaScript/Reference/Global_Objects/Array/isArray translation_of: Web/JavaScript/Reference/Global_Objects/Array/isArray +original_slug: Web/JavaScript/Referencje/Obiekty/Array/isArray ---
{{JSRef("Global_Objects", "Array")}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/join/index.html b/files/pl/web/javascript/reference/global_objects/array/join/index.html index b4b22afc49..cd1d7f8a7b 100644 --- a/files/pl/web/javascript/reference/global_objects/array/join/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/join/index.html @@ -1,12 +1,13 @@ --- title: Array.prototype.join() -slug: Web/JavaScript/Referencje/Obiekty/Array/join +slug: Web/JavaScript/Reference/Global_Objects/Array/join tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Array/join +original_slug: Web/JavaScript/Referencje/Obiekty/Array/join ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/keys/index.html b/files/pl/web/javascript/reference/global_objects/array/keys/index.html index 4ab6d7e18e..a284253ed6 100644 --- a/files/pl/web/javascript/reference/global_objects/array/keys/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/keys/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.keys() -slug: Web/JavaScript/Referencje/Obiekty/Array/keys +slug: Web/JavaScript/Reference/Global_Objects/Array/keys translation_of: Web/JavaScript/Reference/Global_Objects/Array/keys +original_slug: Web/JavaScript/Referencje/Obiekty/Array/keys ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/lastindexof/index.html b/files/pl/web/javascript/reference/global_objects/array/lastindexof/index.html index 3a6322d6b4..ca02035c96 100644 --- a/files/pl/web/javascript/reference/global_objects/array/lastindexof/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/lastindexof/index.html @@ -1,6 +1,6 @@ --- title: Array.prototype.lastIndexOf() -slug: Web/JavaScript/Referencje/Obiekty/Array/lastIndexOf +slug: Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf tags: - Dokumentacja_JavaScript - Dokumentacje @@ -8,6 +8,7 @@ tags: - Strony_wymagające_dopracowania - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf +original_slug: Web/JavaScript/Referencje/Obiekty/Array/lastIndexOf ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/length/index.html b/files/pl/web/javascript/reference/global_objects/array/length/index.html index 0ce2bbde35..520bff2ab7 100644 --- a/files/pl/web/javascript/reference/global_objects/array/length/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/length/index.html @@ -1,12 +1,13 @@ --- title: Array.prototype.length -slug: Web/JavaScript/Referencje/Obiekty/Array/length +slug: Web/JavaScript/Reference/Global_Objects/Array/length tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Array/length +original_slug: Web/JavaScript/Referencje/Obiekty/Array/length ---
{{JSRef("Global_Objects", "Array")}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/map/index.html b/files/pl/web/javascript/reference/global_objects/array/map/index.html index 2b25e7f1cd..41e1f41bbd 100644 --- a/files/pl/web/javascript/reference/global_objects/array/map/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/map/index.html @@ -1,12 +1,13 @@ --- title: Array.prototype.map() -slug: Web/JavaScript/Referencje/Obiekty/Array/map +slug: Web/JavaScript/Reference/Global_Objects/Array/map tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Array/map +original_slug: Web/JavaScript/Referencje/Obiekty/Array/map ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/of/index.html b/files/pl/web/javascript/reference/global_objects/array/of/index.html index 74c9974bd0..8a7273148c 100644 --- a/files/pl/web/javascript/reference/global_objects/array/of/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/of/index.html @@ -1,7 +1,8 @@ --- title: Array.of() -slug: Web/JavaScript/Referencje/Obiekty/Array/of +slug: Web/JavaScript/Reference/Global_Objects/Array/of translation_of: Web/JavaScript/Reference/Global_Objects/Array/of +original_slug: Web/JavaScript/Referencje/Obiekty/Array/of ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/pop/index.html b/files/pl/web/javascript/reference/global_objects/array/pop/index.html index 2b7483dbd7..32c6f2d6dd 100644 --- a/files/pl/web/javascript/reference/global_objects/array/pop/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/pop/index.html @@ -1,6 +1,6 @@ --- title: Array.prototype.pop() -slug: Web/JavaScript/Referencje/Obiekty/Array/pop +slug: Web/JavaScript/Reference/Global_Objects/Array/pop tags: - Dokumentacja_JavaScript - Dokumentacje @@ -9,6 +9,7 @@ tags: - Prototype - Tablica translation_of: Web/JavaScript/Reference/Global_Objects/Array/pop +original_slug: Web/JavaScript/Referencje/Obiekty/Array/pop ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/push/index.html b/files/pl/web/javascript/reference/global_objects/array/push/index.html index 92bf342cda..ad55ffe255 100644 --- a/files/pl/web/javascript/reference/global_objects/array/push/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/push/index.html @@ -1,12 +1,13 @@ --- title: Array.prototype.push() -slug: Web/JavaScript/Referencje/Obiekty/Array/push +slug: Web/JavaScript/Reference/Global_Objects/Array/push tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Array/push +original_slug: Web/JavaScript/Referencje/Obiekty/Array/push ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/reduce/index.html b/files/pl/web/javascript/reference/global_objects/array/reduce/index.html index 8699a308c5..f98d5375c3 100644 --- a/files/pl/web/javascript/reference/global_objects/array/reduce/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/reduce/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.reduce() -slug: Web/JavaScript/Referencje/Obiekty/Array/Reduce +slug: Web/JavaScript/Reference/Global_Objects/Array/Reduce translation_of: Web/JavaScript/Reference/Global_Objects/Array/Reduce +original_slug: Web/JavaScript/Referencje/Obiekty/Array/Reduce ---
{{JSRef("Global_Objects", "Array")}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/reduceright/index.html b/files/pl/web/javascript/reference/global_objects/array/reduceright/index.html index fcb2b0e694..53e9a3d6b9 100644 --- a/files/pl/web/javascript/reference/global_objects/array/reduceright/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/reduceright/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.reduceRight() -slug: Web/JavaScript/Referencje/Obiekty/Array/ReduceRight +slug: Web/JavaScript/Reference/Global_Objects/Array/ReduceRight translation_of: Web/JavaScript/Reference/Global_Objects/Array/ReduceRight +original_slug: Web/JavaScript/Referencje/Obiekty/Array/ReduceRight ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/reverse/index.html b/files/pl/web/javascript/reference/global_objects/array/reverse/index.html index bc6fd9082b..6a18aa625c 100644 --- a/files/pl/web/javascript/reference/global_objects/array/reverse/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/reverse/index.html @@ -1,12 +1,13 @@ --- title: Array.prototype.reverse() -slug: Web/JavaScript/Referencje/Obiekty/Array/reverse +slug: Web/JavaScript/Reference/Global_Objects/Array/reverse tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Array/reverse +original_slug: Web/JavaScript/Referencje/Obiekty/Array/reverse ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/shift/index.html b/files/pl/web/javascript/reference/global_objects/array/shift/index.html index adf8ca36e4..a83215d6c5 100644 --- a/files/pl/web/javascript/reference/global_objects/array/shift/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/shift/index.html @@ -1,12 +1,13 @@ --- title: Array.prototype.shift() -slug: Web/JavaScript/Referencje/Obiekty/Array/shift +slug: Web/JavaScript/Reference/Global_Objects/Array/shift tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Array/shift +original_slug: Web/JavaScript/Referencje/Obiekty/Array/shift ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/slice/index.html b/files/pl/web/javascript/reference/global_objects/array/slice/index.html index ced8efba96..5de5456984 100644 --- a/files/pl/web/javascript/reference/global_objects/array/slice/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/slice/index.html @@ -1,6 +1,6 @@ --- title: Array.prototype.slice() -slug: Web/JavaScript/Referencje/Obiekty/Array/slice +slug: Web/JavaScript/Reference/Global_Objects/Array/slice tags: - Dokumentacja_JavaScript - Dokumentacje @@ -8,6 +8,7 @@ tags: - Strony_wymagające_dopracowania - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Array/slice +original_slug: Web/JavaScript/Referencje/Obiekty/Array/slice ---

{{ JSRef }}

diff --git a/files/pl/web/javascript/reference/global_objects/array/some/index.html b/files/pl/web/javascript/reference/global_objects/array/some/index.html index 6ba1777370..c05147d8ae 100644 --- a/files/pl/web/javascript/reference/global_objects/array/some/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/some/index.html @@ -1,6 +1,6 @@ --- title: Array.prototype.some() -slug: Web/JavaScript/Referencje/Obiekty/Array/some +slug: Web/JavaScript/Reference/Global_Objects/Array/some tags: - Dokumentacja_JavaScript - Dokumentacje @@ -8,6 +8,7 @@ tags: - Strony_wymagające_dopracowania - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Array/some +original_slug: Web/JavaScript/Referencje/Obiekty/Array/some ---

{{ JSRef }}

diff --git a/files/pl/web/javascript/reference/global_objects/array/sort/index.html b/files/pl/web/javascript/reference/global_objects/array/sort/index.html index 2b53d4e6d5..f179b3c45b 100644 --- a/files/pl/web/javascript/reference/global_objects/array/sort/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/sort/index.html @@ -1,6 +1,6 @@ --- title: Array.prototype.sort() -slug: Web/JavaScript/Referencje/Obiekty/Array/sort +slug: Web/JavaScript/Reference/Global_Objects/Array/sort tags: - Dokumentacja_JavaScript - Dokumentacje @@ -8,6 +8,7 @@ tags: - Strony_wymagające_dopracowania - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Array/sort +original_slug: Web/JavaScript/Referencje/Obiekty/Array/sort ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/splice/index.html b/files/pl/web/javascript/reference/global_objects/array/splice/index.html index cc4d13def3..bbe9d2b474 100644 --- a/files/pl/web/javascript/reference/global_objects/array/splice/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/splice/index.html @@ -1,12 +1,13 @@ --- title: Array.prototype.splice() -slug: Web/JavaScript/Referencje/Obiekty/Array/splice +slug: Web/JavaScript/Reference/Global_Objects/Array/splice tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Array/splice +original_slug: Web/JavaScript/Referencje/Obiekty/Array/splice ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/tolocalestring/index.html b/files/pl/web/javascript/reference/global_objects/array/tolocalestring/index.html index 1dc476c413..45c7ec7864 100644 --- a/files/pl/web/javascript/reference/global_objects/array/tolocalestring/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/tolocalestring/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.toLocaleString() -slug: Web/JavaScript/Referencje/Obiekty/Array/toLocaleString +slug: Web/JavaScript/Reference/Global_Objects/Array/toLocaleString translation_of: Web/JavaScript/Reference/Global_Objects/Array/toLocaleString +original_slug: Web/JavaScript/Referencje/Obiekty/Array/toLocaleString ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/tosource/index.html b/files/pl/web/javascript/reference/global_objects/array/tosource/index.html index 675e8431a2..4a3fa7d355 100644 --- a/files/pl/web/javascript/reference/global_objects/array/tosource/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/tosource/index.html @@ -1,6 +1,6 @@ --- title: Array.prototype.toSource() -slug: Web/JavaScript/Referencje/Obiekty/Array/toSource +slug: Web/JavaScript/Reference/Global_Objects/Array/toSource tags: - Array - JavaScript @@ -9,6 +9,7 @@ tags: - Prototype - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Array/toSource +original_slug: Web/JavaScript/Referencje/Obiekty/Array/toSource ---
{{JSRef}} {{non-standard_header}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/tostring/index.html b/files/pl/web/javascript/reference/global_objects/array/tostring/index.html index e4801cbdc4..ffc994aeae 100644 --- a/files/pl/web/javascript/reference/global_objects/array/tostring/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/tostring/index.html @@ -1,12 +1,13 @@ --- title: Array.prototype.toString() -slug: Web/JavaScript/Referencje/Obiekty/Array/toString +slug: Web/JavaScript/Reference/Global_Objects/Array/toString tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Array/toString +original_slug: Web/JavaScript/Referencje/Obiekty/Array/toString ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/unshift/index.html b/files/pl/web/javascript/reference/global_objects/array/unshift/index.html index 56346f6552..3d249e3ec8 100644 --- a/files/pl/web/javascript/reference/global_objects/array/unshift/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/unshift/index.html @@ -1,12 +1,13 @@ --- title: Array.prototype.unshift() -slug: Web/JavaScript/Referencje/Obiekty/Array/unshift +slug: Web/JavaScript/Reference/Global_Objects/Array/unshift tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Array/unshift +original_slug: Web/JavaScript/Referencje/Obiekty/Array/unshift ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/array/values/index.html b/files/pl/web/javascript/reference/global_objects/array/values/index.html index b079877dd9..1a2df94435 100644 --- a/files/pl/web/javascript/reference/global_objects/array/values/index.html +++ b/files/pl/web/javascript/reference/global_objects/array/values/index.html @@ -1,6 +1,6 @@ --- title: Array.prototype.values() -slug: Web/JavaScript/Referencje/Obiekty/Array/values +slug: Web/JavaScript/Reference/Global_Objects/Array/values tags: - ECMAScript 2015 - Iterator @@ -9,6 +9,7 @@ tags: - Prototype - Tablica translation_of: Web/JavaScript/Reference/Global_Objects/Array/values +original_slug: Web/JavaScript/Referencje/Obiekty/Array/values ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/arraybuffer/index.html b/files/pl/web/javascript/reference/global_objects/arraybuffer/index.html index f01e0fa67c..a1ac4a5da1 100644 --- a/files/pl/web/javascript/reference/global_objects/arraybuffer/index.html +++ b/files/pl/web/javascript/reference/global_objects/arraybuffer/index.html @@ -1,12 +1,13 @@ --- title: ArrayBuffer -slug: Web/JavaScript/Referencje/Obiekty/ArrayBuffer +slug: Web/JavaScript/Reference/Global_Objects/ArrayBuffer tags: - ArrayBuffer - JavaScript - Konstruktor - TypedArrays translation_of: Web/JavaScript/Reference/Global_Objects/ArrayBuffer +original_slug: Web/JavaScript/Referencje/Obiekty/ArrayBuffer ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/bigint/asintn/index.html b/files/pl/web/javascript/reference/global_objects/bigint/asintn/index.html index f3d7de5b66..fca69d7e9c 100644 --- a/files/pl/web/javascript/reference/global_objects/bigint/asintn/index.html +++ b/files/pl/web/javascript/reference/global_objects/bigint/asintn/index.html @@ -1,6 +1,6 @@ --- title: BigInt.asIntN() -slug: Web/JavaScript/Referencje/Obiekty/BigInt/asIntN +slug: Web/JavaScript/Reference/Global_Objects/BigInt/asIntN tags: - BigInt - JavaScript @@ -8,6 +8,7 @@ tags: - Referencja - asIntN translation_of: Web/JavaScript/Reference/Global_Objects/BigInt/asIntN +original_slug: Web/JavaScript/Referencje/Obiekty/BigInt/asIntN ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/bigint/asuintn/index.html b/files/pl/web/javascript/reference/global_objects/bigint/asuintn/index.html index 0f290f50c4..63ed40473a 100644 --- a/files/pl/web/javascript/reference/global_objects/bigint/asuintn/index.html +++ b/files/pl/web/javascript/reference/global_objects/bigint/asuintn/index.html @@ -1,6 +1,6 @@ --- title: BigInt.asUintN() -slug: Web/JavaScript/Referencje/Obiekty/BigInt/asUintN +slug: Web/JavaScript/Reference/Global_Objects/BigInt/asUintN tags: - BigInt - JavaScript @@ -8,6 +8,7 @@ tags: - Referencja - asUintN translation_of: Web/JavaScript/Reference/Global_Objects/BigInt/asUintN +original_slug: Web/JavaScript/Referencje/Obiekty/BigInt/asUintN ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/bigint/index.html b/files/pl/web/javascript/reference/global_objects/bigint/index.html index 650604b0c3..4f66412f67 100644 --- a/files/pl/web/javascript/reference/global_objects/bigint/index.html +++ b/files/pl/web/javascript/reference/global_objects/bigint/index.html @@ -1,11 +1,12 @@ --- title: BigInt -slug: Web/JavaScript/Referencje/Obiekty/BigInt +slug: Web/JavaScript/Reference/Global_Objects/BigInt tags: - BigInt - JavaScript - Referencja translation_of: Web/JavaScript/Reference/Global_Objects/BigInt +original_slug: Web/JavaScript/Referencje/Obiekty/BigInt ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/bigint/tostring/index.html b/files/pl/web/javascript/reference/global_objects/bigint/tostring/index.html index 9cc06f15ea..8c3cc98381 100644 --- a/files/pl/web/javascript/reference/global_objects/bigint/tostring/index.html +++ b/files/pl/web/javascript/reference/global_objects/bigint/tostring/index.html @@ -1,6 +1,6 @@ --- title: BigInt.prototype.toString() -slug: Web/JavaScript/Referencje/Obiekty/BigInt/toString +slug: Web/JavaScript/Reference/Global_Objects/BigInt/toString tags: - BigInt - JavaScript @@ -8,6 +8,7 @@ tags: - Prototyp - toString() translation_of: Web/JavaScript/Reference/Global_Objects/BigInt/toString +original_slug: Web/JavaScript/Referencje/Obiekty/BigInt/toString ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/bigint/valueof/index.html b/files/pl/web/javascript/reference/global_objects/bigint/valueof/index.html index a1d4c312fd..e1ed582948 100644 --- a/files/pl/web/javascript/reference/global_objects/bigint/valueof/index.html +++ b/files/pl/web/javascript/reference/global_objects/bigint/valueof/index.html @@ -1,6 +1,6 @@ --- title: BigInt.prototype.valueOf() -slug: Web/JavaScript/Referencje/Obiekty/BigInt/valueOf +slug: Web/JavaScript/Reference/Global_Objects/BigInt/valueOf tags: - BigInt - JavaScript @@ -8,6 +8,7 @@ tags: - Prototype - valueOf() translation_of: Web/JavaScript/Reference/Global_Objects/BigInt/valueOf +original_slug: Web/JavaScript/Referencje/Obiekty/BigInt/valueOf ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/boolean/index.html b/files/pl/web/javascript/reference/global_objects/boolean/index.html index 85e5a6a773..29719a9605 100644 --- a/files/pl/web/javascript/reference/global_objects/boolean/index.html +++ b/files/pl/web/javascript/reference/global_objects/boolean/index.html @@ -1,12 +1,13 @@ --- title: Boolean -slug: Web/JavaScript/Referencje/Obiekty/Boolean +slug: Web/JavaScript/Reference/Global_Objects/Boolean tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Boolean +original_slug: Web/JavaScript/Referencje/Obiekty/Boolean ---

{{JSRef("Global_Objects", "Boolean")}}

diff --git a/files/pl/web/javascript/reference/global_objects/boolean/tosource/index.html b/files/pl/web/javascript/reference/global_objects/boolean/tosource/index.html index b41f1c5806..532bffc87c 100644 --- a/files/pl/web/javascript/reference/global_objects/boolean/tosource/index.html +++ b/files/pl/web/javascript/reference/global_objects/boolean/tosource/index.html @@ -1,6 +1,6 @@ --- title: Boolean.prototype.toSource() -slug: Web/JavaScript/Referencje/Obiekty/Boolean/toSource +slug: Web/JavaScript/Reference/Global_Objects/Boolean/toSource tags: - Boolean - JavaScript @@ -8,6 +8,7 @@ tags: - Non-standard - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Boolean/toSource +original_slug: Web/JavaScript/Referencje/Obiekty/Boolean/toSource ---
{{JSRef}} {{non-standard_header}}
diff --git a/files/pl/web/javascript/reference/global_objects/boolean/tostring/index.html b/files/pl/web/javascript/reference/global_objects/boolean/tostring/index.html index fe61d7bca9..708dae8151 100644 --- a/files/pl/web/javascript/reference/global_objects/boolean/tostring/index.html +++ b/files/pl/web/javascript/reference/global_objects/boolean/tostring/index.html @@ -1,12 +1,13 @@ --- title: Boolean.prototype.toString() -slug: Web/JavaScript/Referencje/Obiekty/Boolean/toString +slug: Web/JavaScript/Reference/Global_Objects/Boolean/toString tags: - Boolean - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Boolean/toString +original_slug: Web/JavaScript/Referencje/Obiekty/Boolean/toString ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/boolean/valueof/index.html b/files/pl/web/javascript/reference/global_objects/boolean/valueof/index.html index 1e20821efa..005bde3e87 100644 --- a/files/pl/web/javascript/reference/global_objects/boolean/valueof/index.html +++ b/files/pl/web/javascript/reference/global_objects/boolean/valueof/index.html @@ -1,12 +1,13 @@ --- title: Boolean.prototype.valueOf() -slug: Web/JavaScript/Referencje/Obiekty/Boolean/valueOf +slug: Web/JavaScript/Reference/Global_Objects/Boolean/valueOf tags: - Boolean - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Boolean/valueOf +original_slug: Web/JavaScript/Referencje/Obiekty/Boolean/valueOf ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/dataview/index.html b/files/pl/web/javascript/reference/global_objects/dataview/index.html index db3d459a82..0df48f7f98 100644 --- a/files/pl/web/javascript/reference/global_objects/dataview/index.html +++ b/files/pl/web/javascript/reference/global_objects/dataview/index.html @@ -1,7 +1,8 @@ --- title: DataView -slug: Web/JavaScript/Referencje/Obiekty/DataView +slug: Web/JavaScript/Reference/Global_Objects/DataView translation_of: Web/JavaScript/Reference/Global_Objects/DataView +original_slug: Web/JavaScript/Referencje/Obiekty/DataView ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/date/getdate/index.html b/files/pl/web/javascript/reference/global_objects/date/getdate/index.html index 2dcba53fa0..5828087a48 100644 --- a/files/pl/web/javascript/reference/global_objects/date/getdate/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/getdate/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.getDate() -slug: Web/JavaScript/Referencje/Obiekty/Date/getDate +slug: Web/JavaScript/Reference/Global_Objects/Date/getDate tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Date/getDate +original_slug: Web/JavaScript/Referencje/Obiekty/Date/getDate ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/date/getday/index.html b/files/pl/web/javascript/reference/global_objects/date/getday/index.html index 0c52e4e3dd..021381df42 100644 --- a/files/pl/web/javascript/reference/global_objects/date/getday/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/getday/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.getDay() -slug: Web/JavaScript/Referencje/Obiekty/Date/getDay +slug: Web/JavaScript/Reference/Global_Objects/Date/getDay tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/getDay +original_slug: Web/JavaScript/Referencje/Obiekty/Date/getDay ---
{{JSRef("Global_Objects", "Date")}}
diff --git a/files/pl/web/javascript/reference/global_objects/date/getfullyear/index.html b/files/pl/web/javascript/reference/global_objects/date/getfullyear/index.html index ecc7d868c0..bca657a324 100644 --- a/files/pl/web/javascript/reference/global_objects/date/getfullyear/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/getfullyear/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.getFullYear() -slug: Web/JavaScript/Referencje/Obiekty/Date/getFullYear +slug: Web/JavaScript/Reference/Global_Objects/Date/getFullYear tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/getFullYear +original_slug: Web/JavaScript/Referencje/Obiekty/Date/getFullYear ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/gethours/index.html b/files/pl/web/javascript/reference/global_objects/date/gethours/index.html index a6010ec8c3..2caecf0633 100644 --- a/files/pl/web/javascript/reference/global_objects/date/gethours/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/gethours/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.getHours() -slug: Web/JavaScript/Referencje/Obiekty/Date/getHours +slug: Web/JavaScript/Reference/Global_Objects/Date/getHours tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Date/getHours +original_slug: Web/JavaScript/Referencje/Obiekty/Date/getHours ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/getmilliseconds/index.html b/files/pl/web/javascript/reference/global_objects/date/getmilliseconds/index.html index 1ab98844fc..12762689c8 100644 --- a/files/pl/web/javascript/reference/global_objects/date/getmilliseconds/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/getmilliseconds/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.getMilliseconds() -slug: Web/JavaScript/Referencje/Obiekty/Date/getMilliseconds +slug: Web/JavaScript/Reference/Global_Objects/Date/getMilliseconds tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Date/getMilliseconds +original_slug: Web/JavaScript/Referencje/Obiekty/Date/getMilliseconds ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/getminutes/index.html b/files/pl/web/javascript/reference/global_objects/date/getminutes/index.html index 3ee877bd14..d12e7ab7d7 100644 --- a/files/pl/web/javascript/reference/global_objects/date/getminutes/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/getminutes/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.getMinutes() -slug: Web/JavaScript/Referencje/Obiekty/Date/getMinutes +slug: Web/JavaScript/Reference/Global_Objects/Date/getMinutes tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/getMinutes +original_slug: Web/JavaScript/Referencje/Obiekty/Date/getMinutes ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/date/getmonth/index.html b/files/pl/web/javascript/reference/global_objects/date/getmonth/index.html index bf3e74b56b..2ed9843375 100644 --- a/files/pl/web/javascript/reference/global_objects/date/getmonth/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/getmonth/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.getMonth() -slug: Web/JavaScript/Referencje/Obiekty/Date/getMonth +slug: Web/JavaScript/Reference/Global_Objects/Date/getMonth tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/getMonth +original_slug: Web/JavaScript/Referencje/Obiekty/Date/getMonth ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/getseconds/index.html b/files/pl/web/javascript/reference/global_objects/date/getseconds/index.html index f471165425..228fe5355e 100644 --- a/files/pl/web/javascript/reference/global_objects/date/getseconds/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/getseconds/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.getSeconds() -slug: Web/JavaScript/Referencje/Obiekty/Date/getSeconds +slug: Web/JavaScript/Reference/Global_Objects/Date/getSeconds tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/getSeconds +original_slug: Web/JavaScript/Referencje/Obiekty/Date/getSeconds ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/gettime/index.html b/files/pl/web/javascript/reference/global_objects/date/gettime/index.html index a57da23566..9371ea3350 100644 --- a/files/pl/web/javascript/reference/global_objects/date/gettime/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/gettime/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.getTime() -slug: Web/JavaScript/Referencje/Obiekty/Date/getTime +slug: Web/JavaScript/Reference/Global_Objects/Date/getTime tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/getTime +original_slug: Web/JavaScript/Referencje/Obiekty/Date/getTime ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/gettimezoneoffset/index.html b/files/pl/web/javascript/reference/global_objects/date/gettimezoneoffset/index.html index 7805486fde..bf73ff0ea4 100644 --- a/files/pl/web/javascript/reference/global_objects/date/gettimezoneoffset/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/gettimezoneoffset/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.getTimezoneOffset() -slug: Web/JavaScript/Referencje/Obiekty/Date/getTimezoneOffset +slug: Web/JavaScript/Reference/Global_Objects/Date/getTimezoneOffset tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/getTimezoneOffset +original_slug: Web/JavaScript/Referencje/Obiekty/Date/getTimezoneOffset ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/getutcdate/index.html b/files/pl/web/javascript/reference/global_objects/date/getutcdate/index.html index 54f031b3d6..c8dca866f1 100644 --- a/files/pl/web/javascript/reference/global_objects/date/getutcdate/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/getutcdate/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.getUTCDate() -slug: Web/JavaScript/Referencje/Obiekty/Date/getUTCDate +slug: Web/JavaScript/Reference/Global_Objects/Date/getUTCDate tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/getUTCDate +original_slug: Web/JavaScript/Referencje/Obiekty/Date/getUTCDate ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/getutcday/index.html b/files/pl/web/javascript/reference/global_objects/date/getutcday/index.html index 4ce3b4207b..89a9b1c090 100644 --- a/files/pl/web/javascript/reference/global_objects/date/getutcday/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/getutcday/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.getUTCDay() -slug: Web/JavaScript/Referencje/Obiekty/Date/getUTCDay +slug: Web/JavaScript/Reference/Global_Objects/Date/getUTCDay tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/getUTCDay +original_slug: Web/JavaScript/Referencje/Obiekty/Date/getUTCDay ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/getutcfullyear/index.html b/files/pl/web/javascript/reference/global_objects/date/getutcfullyear/index.html index 646affed0e..f815b1c921 100644 --- a/files/pl/web/javascript/reference/global_objects/date/getutcfullyear/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/getutcfullyear/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.getUTCFullYear() -slug: Web/JavaScript/Referencje/Obiekty/Date/getUTCFullYear +slug: Web/JavaScript/Reference/Global_Objects/Date/getUTCFullYear tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/getUTCFullYear +original_slug: Web/JavaScript/Referencje/Obiekty/Date/getUTCFullYear ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/getutchours/index.html b/files/pl/web/javascript/reference/global_objects/date/getutchours/index.html index 0006fab388..0ff3ff5fc5 100644 --- a/files/pl/web/javascript/reference/global_objects/date/getutchours/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/getutchours/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.getUTCHours() -slug: Web/JavaScript/Referencje/Obiekty/Date/getUTCHours +slug: Web/JavaScript/Reference/Global_Objects/Date/getUTCHours tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/getUTCHours +original_slug: Web/JavaScript/Referencje/Obiekty/Date/getUTCHours ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/getutcmilliseconds/index.html b/files/pl/web/javascript/reference/global_objects/date/getutcmilliseconds/index.html index de048d2998..8c3603a46d 100644 --- a/files/pl/web/javascript/reference/global_objects/date/getutcmilliseconds/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/getutcmilliseconds/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.getUTCMilliseconds() -slug: Web/JavaScript/Referencje/Obiekty/Date/getUTCMilliseconds +slug: Web/JavaScript/Reference/Global_Objects/Date/getUTCMilliseconds tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/getUTCMilliseconds +original_slug: Web/JavaScript/Referencje/Obiekty/Date/getUTCMilliseconds ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/getutcminutes/index.html b/files/pl/web/javascript/reference/global_objects/date/getutcminutes/index.html index aabc9f16e7..d83258052f 100644 --- a/files/pl/web/javascript/reference/global_objects/date/getutcminutes/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/getutcminutes/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.getUTCMinutes() -slug: Web/JavaScript/Referencje/Obiekty/Date/getUTCMinutes +slug: Web/JavaScript/Reference/Global_Objects/Date/getUTCMinutes tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/getUTCMinutes +original_slug: Web/JavaScript/Referencje/Obiekty/Date/getUTCMinutes ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/getutcmonth/index.html b/files/pl/web/javascript/reference/global_objects/date/getutcmonth/index.html index 75899683a3..9bb65f2552 100644 --- a/files/pl/web/javascript/reference/global_objects/date/getutcmonth/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/getutcmonth/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.getUTCMonth() -slug: Web/JavaScript/Referencje/Obiekty/Date/getUTCMonth +slug: Web/JavaScript/Reference/Global_Objects/Date/getUTCMonth tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/getUTCMonth +original_slug: Web/JavaScript/Referencje/Obiekty/Date/getUTCMonth ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/getutcseconds/index.html b/files/pl/web/javascript/reference/global_objects/date/getutcseconds/index.html index 82f9d40634..b20f50a93d 100644 --- a/files/pl/web/javascript/reference/global_objects/date/getutcseconds/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/getutcseconds/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.getUTCSeconds() -slug: Web/JavaScript/Referencje/Obiekty/Date/getUTCSeconds +slug: Web/JavaScript/Reference/Global_Objects/Date/getUTCSeconds tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Date/getUTCSeconds +original_slug: Web/JavaScript/Referencje/Obiekty/Date/getUTCSeconds ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/date/getyear/index.html b/files/pl/web/javascript/reference/global_objects/date/getyear/index.html index fdb3c10d75..b8186a6e7e 100644 --- a/files/pl/web/javascript/reference/global_objects/date/getyear/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/getyear/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.getYear() -slug: Web/JavaScript/Referencje/Obiekty/Date/getYear +slug: Web/JavaScript/Reference/Global_Objects/Date/getYear tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Date/getYear +original_slug: Web/JavaScript/Referencje/Obiekty/Date/getYear ---

{{JSRef}}{{ Deprecated_header() }}

diff --git a/files/pl/web/javascript/reference/global_objects/date/index.html b/files/pl/web/javascript/reference/global_objects/date/index.html index 3636152933..2b74956882 100644 --- a/files/pl/web/javascript/reference/global_objects/date/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/index.html @@ -1,11 +1,12 @@ --- title: Date -slug: Web/JavaScript/Referencje/Obiekty/Date +slug: Web/JavaScript/Reference/Global_Objects/Date tags: - Date - JavaScript - data translation_of: Web/JavaScript/Reference/Global_Objects/Date +original_slug: Web/JavaScript/Referencje/Obiekty/Date ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/date/now/index.html b/files/pl/web/javascript/reference/global_objects/date/now/index.html index c0a4e1a690..4bffd676df 100644 --- a/files/pl/web/javascript/reference/global_objects/date/now/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/now/index.html @@ -1,12 +1,13 @@ --- title: Date.now() -slug: Web/JavaScript/Referencje/Obiekty/Date/now +slug: Web/JavaScript/Reference/Global_Objects/Date/now tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Date/now +original_slug: Web/JavaScript/Referencje/Obiekty/Date/now ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/date/parse/index.html b/files/pl/web/javascript/reference/global_objects/date/parse/index.html index d500500484..49cd5c9441 100644 --- a/files/pl/web/javascript/reference/global_objects/date/parse/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/parse/index.html @@ -1,12 +1,13 @@ --- title: Date.parse() -slug: Web/JavaScript/Referencje/Obiekty/Date/parse +slug: Web/JavaScript/Reference/Global_Objects/Date/parse tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Date/parse +original_slug: Web/JavaScript/Referencje/Obiekty/Date/parse ---
 {{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/date/setdate/index.html b/files/pl/web/javascript/reference/global_objects/date/setdate/index.html index 9e0e3db5b9..f0569b5eac 100644 --- a/files/pl/web/javascript/reference/global_objects/date/setdate/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/setdate/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.setDate() -slug: Web/JavaScript/Referencje/Obiekty/Date/setDate +slug: Web/JavaScript/Reference/Global_Objects/Date/setDate tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/setDate +original_slug: Web/JavaScript/Referencje/Obiekty/Date/setDate ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/setfullyear/index.html b/files/pl/web/javascript/reference/global_objects/date/setfullyear/index.html index 6b9fe390a1..c119547e86 100644 --- a/files/pl/web/javascript/reference/global_objects/date/setfullyear/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/setfullyear/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.setFullYear() -slug: Web/JavaScript/Referencje/Obiekty/Date/setFullYear +slug: Web/JavaScript/Reference/Global_Objects/Date/setFullYear tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/setFullYear +original_slug: Web/JavaScript/Referencje/Obiekty/Date/setFullYear ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/sethours/index.html b/files/pl/web/javascript/reference/global_objects/date/sethours/index.html index 8e3f95ff7d..c621fd575a 100644 --- a/files/pl/web/javascript/reference/global_objects/date/sethours/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/sethours/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.setHours() -slug: Web/JavaScript/Referencje/Obiekty/Date/setHours +slug: Web/JavaScript/Reference/Global_Objects/Date/setHours tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/setHours +original_slug: Web/JavaScript/Referencje/Obiekty/Date/setHours ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/setmilliseconds/index.html b/files/pl/web/javascript/reference/global_objects/date/setmilliseconds/index.html index c2a1359801..1e33e8f97a 100644 --- a/files/pl/web/javascript/reference/global_objects/date/setmilliseconds/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/setmilliseconds/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.setMilliseconds() -slug: Web/JavaScript/Referencje/Obiekty/Date/setMilliseconds +slug: Web/JavaScript/Reference/Global_Objects/Date/setMilliseconds tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/setMilliseconds +original_slug: Web/JavaScript/Referencje/Obiekty/Date/setMilliseconds ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/setminutes/index.html b/files/pl/web/javascript/reference/global_objects/date/setminutes/index.html index 011137c893..737598c146 100644 --- a/files/pl/web/javascript/reference/global_objects/date/setminutes/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/setminutes/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.setMinutes() -slug: Web/JavaScript/Referencje/Obiekty/Date/setMinutes +slug: Web/JavaScript/Reference/Global_Objects/Date/setMinutes tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/setMinutes +original_slug: Web/JavaScript/Referencje/Obiekty/Date/setMinutes ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/setmonth/index.html b/files/pl/web/javascript/reference/global_objects/date/setmonth/index.html index 7016cb97e1..c9dcbbea7f 100644 --- a/files/pl/web/javascript/reference/global_objects/date/setmonth/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/setmonth/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.setMonth() -slug: Web/JavaScript/Referencje/Obiekty/Date/setMonth +slug: Web/JavaScript/Reference/Global_Objects/Date/setMonth tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/setMonth +original_slug: Web/JavaScript/Referencje/Obiekty/Date/setMonth ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/setseconds/index.html b/files/pl/web/javascript/reference/global_objects/date/setseconds/index.html index 7a50dd98a7..e2af3ab2b7 100644 --- a/files/pl/web/javascript/reference/global_objects/date/setseconds/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/setseconds/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.setSeconds() -slug: Web/JavaScript/Referencje/Obiekty/Date/setSeconds +slug: Web/JavaScript/Reference/Global_Objects/Date/setSeconds tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/setSeconds +original_slug: Web/JavaScript/Referencje/Obiekty/Date/setSeconds ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/settime/index.html b/files/pl/web/javascript/reference/global_objects/date/settime/index.html index 5aca5a36d7..c2f6c15564 100644 --- a/files/pl/web/javascript/reference/global_objects/date/settime/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/settime/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.setTime() -slug: Web/JavaScript/Referencje/Obiekty/Date/setTime +slug: Web/JavaScript/Reference/Global_Objects/Date/setTime tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/setTime +original_slug: Web/JavaScript/Referencje/Obiekty/Date/setTime ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/setutcdate/index.html b/files/pl/web/javascript/reference/global_objects/date/setutcdate/index.html index 81496f9c1f..efae5bb77b 100644 --- a/files/pl/web/javascript/reference/global_objects/date/setutcdate/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/setutcdate/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.setUTCDate() -slug: Web/JavaScript/Referencje/Obiekty/Date/setUTCDate +slug: Web/JavaScript/Reference/Global_Objects/Date/setUTCDate tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/setUTCDate +original_slug: Web/JavaScript/Referencje/Obiekty/Date/setUTCDate ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/setutcfullyear/index.html b/files/pl/web/javascript/reference/global_objects/date/setutcfullyear/index.html index 71ea1db756..f87b25b50d 100644 --- a/files/pl/web/javascript/reference/global_objects/date/setutcfullyear/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/setutcfullyear/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.setUTCFullYear() -slug: Web/JavaScript/Referencje/Obiekty/Date/setUTCFullYear +slug: Web/JavaScript/Reference/Global_Objects/Date/setUTCFullYear tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/setUTCFullYear +original_slug: Web/JavaScript/Referencje/Obiekty/Date/setUTCFullYear ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/setutchours/index.html b/files/pl/web/javascript/reference/global_objects/date/setutchours/index.html index 437e4bae2f..66b51f50e5 100644 --- a/files/pl/web/javascript/reference/global_objects/date/setutchours/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/setutchours/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.setUTCHours() -slug: Web/JavaScript/Referencje/Obiekty/Date/setUTCHours +slug: Web/JavaScript/Reference/Global_Objects/Date/setUTCHours tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/setUTCHours +original_slug: Web/JavaScript/Referencje/Obiekty/Date/setUTCHours ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/setutcmilliseconds/index.html b/files/pl/web/javascript/reference/global_objects/date/setutcmilliseconds/index.html index f12fd4c838..e9360b2e0f 100644 --- a/files/pl/web/javascript/reference/global_objects/date/setutcmilliseconds/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/setutcmilliseconds/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.UTCMilliseconds() -slug: Web/JavaScript/Referencje/Obiekty/Date/setUTCMilliseconds +slug: Web/JavaScript/Reference/Global_Objects/Date/setUTCMilliseconds tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/setUTCMilliseconds +original_slug: Web/JavaScript/Referencje/Obiekty/Date/setUTCMilliseconds ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/setutcminutes/index.html b/files/pl/web/javascript/reference/global_objects/date/setutcminutes/index.html index d3ea20bafa..c99dadaa2b 100644 --- a/files/pl/web/javascript/reference/global_objects/date/setutcminutes/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/setutcminutes/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.setUTCMinutes() -slug: Web/JavaScript/Referencje/Obiekty/Date/setUTCMinutes +slug: Web/JavaScript/Reference/Global_Objects/Date/setUTCMinutes tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/setUTCMinutes +original_slug: Web/JavaScript/Referencje/Obiekty/Date/setUTCMinutes ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/setutcmonth/index.html b/files/pl/web/javascript/reference/global_objects/date/setutcmonth/index.html index 78448e441f..3d8947802e 100644 --- a/files/pl/web/javascript/reference/global_objects/date/setutcmonth/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/setutcmonth/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.setUTCMonth() -slug: Web/JavaScript/Referencje/Obiekty/Date/setUTCMonth +slug: Web/JavaScript/Reference/Global_Objects/Date/setUTCMonth tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/setUTCMonth +original_slug: Web/JavaScript/Referencje/Obiekty/Date/setUTCMonth ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/setutcseconds/index.html b/files/pl/web/javascript/reference/global_objects/date/setutcseconds/index.html index 8e8d003b67..adf4079334 100644 --- a/files/pl/web/javascript/reference/global_objects/date/setutcseconds/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/setutcseconds/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.setUTCSeconds() -slug: Web/JavaScript/Referencje/Obiekty/Date/setUTCSeconds +slug: Web/JavaScript/Reference/Global_Objects/Date/setUTCSeconds tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/setUTCSeconds +original_slug: Web/JavaScript/Referencje/Obiekty/Date/setUTCSeconds ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/setyear/index.html b/files/pl/web/javascript/reference/global_objects/date/setyear/index.html index ac89b296c7..932dda7f51 100644 --- a/files/pl/web/javascript/reference/global_objects/date/setyear/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/setyear/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.setYear() -slug: Web/JavaScript/Referencje/Obiekty/Date/setYear +slug: Web/JavaScript/Reference/Global_Objects/Date/setYear tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/setYear +original_slug: Web/JavaScript/Referencje/Obiekty/Date/setYear ---

{{jSRef}}{{ Deprecated_header() }}

diff --git a/files/pl/web/javascript/reference/global_objects/date/togmtstring/index.html b/files/pl/web/javascript/reference/global_objects/date/togmtstring/index.html index 2b4c296723..8b82e892a3 100644 --- a/files/pl/web/javascript/reference/global_objects/date/togmtstring/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/togmtstring/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.toGMTString() -slug: Web/JavaScript/Referencje/Obiekty/Date/toGMTString +slug: Web/JavaScript/Reference/Global_Objects/Date/toGMTString tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Date/toGMTString +original_slug: Web/JavaScript/Referencje/Obiekty/Date/toGMTString ---

{{JSRef}}{{ Deprecated_header() }}

diff --git a/files/pl/web/javascript/reference/global_objects/date/tojson/index.html b/files/pl/web/javascript/reference/global_objects/date/tojson/index.html index 2509e99319..b5b3110291 100644 --- a/files/pl/web/javascript/reference/global_objects/date/tojson/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/tojson/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.toJSON() -slug: Web/JavaScript/Referencje/Obiekty/Date/toJSON +slug: Web/JavaScript/Reference/Global_Objects/Date/toJSON translation_of: Web/JavaScript/Reference/Global_Objects/Date/toJSON +original_slug: Web/JavaScript/Referencje/Obiekty/Date/toJSON ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/date/tolocaledatestring/index.html b/files/pl/web/javascript/reference/global_objects/date/tolocaledatestring/index.html index c3b4b44198..103db5d284 100644 --- a/files/pl/web/javascript/reference/global_objects/date/tolocaledatestring/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/tolocaledatestring/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.toLocaleDateString() -slug: Web/JavaScript/Referencje/Obiekty/Date/toLocaleDateString +slug: Web/JavaScript/Reference/Global_Objects/Date/toLocaleDateString tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Date/toLocaleDateString +original_slug: Web/JavaScript/Referencje/Obiekty/Date/toLocaleDateString ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/tolocalestring/index.html b/files/pl/web/javascript/reference/global_objects/date/tolocalestring/index.html index 60cb1c2853..3735e6885b 100644 --- a/files/pl/web/javascript/reference/global_objects/date/tolocalestring/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/tolocalestring/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.toLocaleString() -slug: Web/JavaScript/Referencje/Obiekty/Date/toLocaleString +slug: Web/JavaScript/Reference/Global_Objects/Date/toLocaleString tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/toLocaleString +original_slug: Web/JavaScript/Referencje/Obiekty/Date/toLocaleString ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/tolocaletimestring/index.html b/files/pl/web/javascript/reference/global_objects/date/tolocaletimestring/index.html index e41dce512d..4e87a02b41 100644 --- a/files/pl/web/javascript/reference/global_objects/date/tolocaletimestring/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/tolocaletimestring/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.toLocaleTimeString() -slug: Web/JavaScript/Referencje/Obiekty/Date/toLocaleTimeString +slug: Web/JavaScript/Reference/Global_Objects/Date/toLocaleTimeString tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Date/toLocaleTimeString +original_slug: Web/JavaScript/Referencje/Obiekty/Date/toLocaleTimeString ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/tosource/index.html b/files/pl/web/javascript/reference/global_objects/date/tosource/index.html index 8c82e39b09..6019f0d46b 100644 --- a/files/pl/web/javascript/reference/global_objects/date/tosource/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/tosource/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.toSource() -slug: Web/JavaScript/Referencje/Obiekty/Date/toSource +slug: Web/JavaScript/Reference/Global_Objects/Date/toSource tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/toSource +original_slug: Web/JavaScript/Referencje/Obiekty/Date/toSource ---
{{JSRef}} {{non-standard_header}}
diff --git a/files/pl/web/javascript/reference/global_objects/date/tostring/index.html b/files/pl/web/javascript/reference/global_objects/date/tostring/index.html index 7d2ea5d92c..d19870e9b2 100644 --- a/files/pl/web/javascript/reference/global_objects/date/tostring/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/tostring/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.toString() -slug: Web/JavaScript/Referencje/Obiekty/Date/toString +slug: Web/JavaScript/Reference/Global_Objects/Date/toString tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/toString +original_slug: Web/JavaScript/Referencje/Obiekty/Date/toString ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/toutcstring/index.html b/files/pl/web/javascript/reference/global_objects/date/toutcstring/index.html index 529b9bf434..c185e5b46d 100644 --- a/files/pl/web/javascript/reference/global_objects/date/toutcstring/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/toutcstring/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.toUTCString() -slug: Web/JavaScript/Referencje/Obiekty/Date/toUTCString +slug: Web/JavaScript/Reference/Global_Objects/Date/toUTCString tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/toUTCString +original_slug: Web/JavaScript/Referencje/Obiekty/Date/toUTCString ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/date/utc/index.html b/files/pl/web/javascript/reference/global_objects/date/utc/index.html index 0bc3a38e6c..21cbba9e24 100644 --- a/files/pl/web/javascript/reference/global_objects/date/utc/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/utc/index.html @@ -1,11 +1,12 @@ --- title: Date.UTC() -slug: Web/JavaScript/Referencje/Obiekty/Date/UTC +slug: Web/JavaScript/Reference/Global_Objects/Date/UTC tags: - Date - JavaScript - Method translation_of: Web/JavaScript/Reference/Global_Objects/Date/UTC +original_slug: Web/JavaScript/Referencje/Obiekty/Date/UTC ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/date/valueof/index.html b/files/pl/web/javascript/reference/global_objects/date/valueof/index.html index 76d54c2187..7cf5d666fc 100644 --- a/files/pl/web/javascript/reference/global_objects/date/valueof/index.html +++ b/files/pl/web/javascript/reference/global_objects/date/valueof/index.html @@ -1,12 +1,13 @@ --- title: Date.prototype.valueOf() -slug: Web/JavaScript/Referencje/Obiekty/Date/valueOf +slug: Web/JavaScript/Reference/Global_Objects/Date/valueOf tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/valueOf +original_slug: Web/JavaScript/Referencje/Obiekty/Date/valueOf ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/decodeuri/index.html b/files/pl/web/javascript/reference/global_objects/decodeuri/index.html index f88686b8a3..5563376592 100644 --- a/files/pl/web/javascript/reference/global_objects/decodeuri/index.html +++ b/files/pl/web/javascript/reference/global_objects/decodeuri/index.html @@ -1,9 +1,10 @@ --- title: decodeURI() -slug: Web/JavaScript/Referencje/Obiekty/decodeURI +slug: Web/JavaScript/Reference/Global_Objects/decodeURI tags: - JavaScript translation_of: Web/JavaScript/Reference/Global_Objects/decodeURI +original_slug: Web/JavaScript/Referencje/Obiekty/decodeURI ---
{{jsSidebar("Objects")}}
diff --git a/files/pl/web/javascript/reference/global_objects/decodeuricomponent/index.html b/files/pl/web/javascript/reference/global_objects/decodeuricomponent/index.html index a361e777d8..b14a436859 100644 --- a/files/pl/web/javascript/reference/global_objects/decodeuricomponent/index.html +++ b/files/pl/web/javascript/reference/global_objects/decodeuricomponent/index.html @@ -1,9 +1,10 @@ --- title: decodeURIComponent() -slug: Web/JavaScript/Referencje/Obiekty/decodeURIComponent +slug: Web/JavaScript/Reference/Global_Objects/decodeURIComponent tags: - JavaScript translation_of: Web/JavaScript/Reference/Global_Objects/decodeURIComponent +original_slug: Web/JavaScript/Referencje/Obiekty/decodeURIComponent ---
diff --git a/files/pl/web/javascript/reference/global_objects/encodeuri/index.html b/files/pl/web/javascript/reference/global_objects/encodeuri/index.html index b794a414b3..52229240b8 100644 --- a/files/pl/web/javascript/reference/global_objects/encodeuri/index.html +++ b/files/pl/web/javascript/reference/global_objects/encodeuri/index.html @@ -1,10 +1,11 @@ --- title: encodeURI() -slug: Web/JavaScript/Referencje/Obiekty/encodeURI +slug: Web/JavaScript/Reference/Global_Objects/encodeURI tags: - JavaScript - URI translation_of: Web/JavaScript/Reference/Global_Objects/encodeURI +original_slug: Web/JavaScript/Referencje/Obiekty/encodeURI ---
diff --git a/files/pl/web/javascript/reference/global_objects/encodeuricomponent/index.html b/files/pl/web/javascript/reference/global_objects/encodeuricomponent/index.html index 577cff9840..2c694bc5ba 100644 --- a/files/pl/web/javascript/reference/global_objects/encodeuricomponent/index.html +++ b/files/pl/web/javascript/reference/global_objects/encodeuricomponent/index.html @@ -1,10 +1,11 @@ --- title: encodeURIComponent() -slug: Web/JavaScript/Referencje/Obiekty/encodeURIComponent +slug: Web/JavaScript/Reference/Global_Objects/encodeURIComponent tags: - JavaScript - URI translation_of: Web/JavaScript/Reference/Global_Objects/encodeURIComponent +original_slug: Web/JavaScript/Referencje/Obiekty/encodeURIComponent ---
{{jsSidebar("Objects")}}
diff --git a/files/pl/web/javascript/reference/global_objects/error/columnnumber/index.html b/files/pl/web/javascript/reference/global_objects/error/columnnumber/index.html index dbf51b3bf3..ac83ab1f07 100644 --- a/files/pl/web/javascript/reference/global_objects/error/columnnumber/index.html +++ b/files/pl/web/javascript/reference/global_objects/error/columnnumber/index.html @@ -1,7 +1,8 @@ --- title: Error.prototype.columnNumber -slug: Web/JavaScript/Referencje/Obiekty/Error/columnNumber +slug: Web/JavaScript/Reference/Global_Objects/Error/columnNumber translation_of: Web/JavaScript/Reference/Global_Objects/Error/columnNumber +original_slug: Web/JavaScript/Referencje/Obiekty/Error/columnNumber ---
{{JSRef}} {{non-standard_header}}
diff --git a/files/pl/web/javascript/reference/global_objects/error/filename/index.html b/files/pl/web/javascript/reference/global_objects/error/filename/index.html index a0290eac45..b6533ba106 100644 --- a/files/pl/web/javascript/reference/global_objects/error/filename/index.html +++ b/files/pl/web/javascript/reference/global_objects/error/filename/index.html @@ -1,6 +1,6 @@ --- title: Error.prototype.fileName -slug: Web/JavaScript/Referencje/Obiekty/Error/fileName +slug: Web/JavaScript/Reference/Global_Objects/Error/fileName tags: - JavaScript - Prototyp @@ -8,6 +8,7 @@ tags: - Właściwość - niestandardowe translation_of: Web/JavaScript/Reference/Global_Objects/Error/fileName +original_slug: Web/JavaScript/Referencje/Obiekty/Error/fileName ---
{{JSRef}} {{non-standard_header}}
diff --git a/files/pl/web/javascript/reference/global_objects/error/index.html b/files/pl/web/javascript/reference/global_objects/error/index.html index 408b1b797b..2d61bfdb38 100644 --- a/files/pl/web/javascript/reference/global_objects/error/index.html +++ b/files/pl/web/javascript/reference/global_objects/error/index.html @@ -1,6 +1,6 @@ --- title: Error -slug: Web/JavaScript/Referencje/Obiekty/Error +slug: Web/JavaScript/Reference/Global_Objects/Error tags: - Błąd - CustomError @@ -8,6 +8,7 @@ tags: - JavaScript - Obsługa błędów translation_of: Web/JavaScript/Reference/Global_Objects/Error +original_slug: Web/JavaScript/Referencje/Obiekty/Error ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/error/linenumber/index.html b/files/pl/web/javascript/reference/global_objects/error/linenumber/index.html index 20d725f492..955f768c0b 100644 --- a/files/pl/web/javascript/reference/global_objects/error/linenumber/index.html +++ b/files/pl/web/javascript/reference/global_objects/error/linenumber/index.html @@ -1,6 +1,6 @@ --- title: Error.prototype.lineNumber -slug: Web/JavaScript/Referencje/Obiekty/Error/lineNumber +slug: Web/JavaScript/Reference/Global_Objects/Error/lineNumber tags: - JavaScript - Prototyp @@ -9,6 +9,7 @@ tags: - Własność - niestandardowe translation_of: Web/JavaScript/Reference/Global_Objects/Error/lineNumber +original_slug: Web/JavaScript/Referencje/Obiekty/Error/lineNumber ---
{{JSRef}} {{non-standard_header}}
diff --git a/files/pl/web/javascript/reference/global_objects/error/message/index.html b/files/pl/web/javascript/reference/global_objects/error/message/index.html index 1f3983fa6b..3cfdd45e92 100644 --- a/files/pl/web/javascript/reference/global_objects/error/message/index.html +++ b/files/pl/web/javascript/reference/global_objects/error/message/index.html @@ -1,7 +1,8 @@ --- title: Error.prototype.message -slug: Web/JavaScript/Referencje/Obiekty/Error/message +slug: Web/JavaScript/Reference/Global_Objects/Error/message translation_of: Web/JavaScript/Reference/Global_Objects/Error/message +original_slug: Web/JavaScript/Referencje/Obiekty/Error/message ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/error/name/index.html b/files/pl/web/javascript/reference/global_objects/error/name/index.html index 11521ec4fd..e797299222 100644 --- a/files/pl/web/javascript/reference/global_objects/error/name/index.html +++ b/files/pl/web/javascript/reference/global_objects/error/name/index.html @@ -1,7 +1,8 @@ --- title: Error.prototype.name -slug: Web/JavaScript/Referencje/Obiekty/Error/name +slug: Web/JavaScript/Reference/Global_Objects/Error/name translation_of: Web/JavaScript/Reference/Global_Objects/Error/name +original_slug: Web/JavaScript/Referencje/Obiekty/Error/name ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/error/stack/index.html b/files/pl/web/javascript/reference/global_objects/error/stack/index.html index 01c2129f21..ab989c4b8d 100644 --- a/files/pl/web/javascript/reference/global_objects/error/stack/index.html +++ b/files/pl/web/javascript/reference/global_objects/error/stack/index.html @@ -1,6 +1,6 @@ --- title: Error.prototype.stack -slug: Web/JavaScript/Referencje/Obiekty/Error/Stack +slug: Web/JavaScript/Reference/Global_Objects/Error/Stack tags: - JavaScript - Prototyp @@ -8,6 +8,7 @@ tags: - Własność - niestandardowe translation_of: Web/JavaScript/Reference/Global_Objects/Error/Stack +original_slug: Web/JavaScript/Referencje/Obiekty/Error/Stack ---
{{JSRef}} {{non-standard_header}}
diff --git a/files/pl/web/javascript/reference/global_objects/error/tosource/index.html b/files/pl/web/javascript/reference/global_objects/error/tosource/index.html index f904d26f70..1a6c5b4e2f 100644 --- a/files/pl/web/javascript/reference/global_objects/error/tosource/index.html +++ b/files/pl/web/javascript/reference/global_objects/error/tosource/index.html @@ -1,12 +1,13 @@ --- title: Error.prototype.toSource() -slug: Web/JavaScript/Referencje/Obiekty/Error/toSource +slug: Web/JavaScript/Reference/Global_Objects/Error/toSource tags: - JavaScript - Metodă - Niestandardowy - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Error/toSource +original_slug: Web/JavaScript/Referencje/Obiekty/Error/toSource ---
{{JSRef}} {{non-standard_header}}
diff --git a/files/pl/web/javascript/reference/global_objects/error/tostring/index.html b/files/pl/web/javascript/reference/global_objects/error/tostring/index.html index 6b019bc60b..34c420487e 100644 --- a/files/pl/web/javascript/reference/global_objects/error/tostring/index.html +++ b/files/pl/web/javascript/reference/global_objects/error/tostring/index.html @@ -1,11 +1,12 @@ --- title: Error.prototype.toString() -slug: Web/JavaScript/Referencje/Obiekty/Error/toString +slug: Web/JavaScript/Reference/Global_Objects/Error/toString tags: - JavaScript - Metodă - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Error/toString +original_slug: Web/JavaScript/Referencje/Obiekty/Error/toString ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/escape/index.html b/files/pl/web/javascript/reference/global_objects/escape/index.html index 06d1d3d2c4..2fcf67431d 100644 --- a/files/pl/web/javascript/reference/global_objects/escape/index.html +++ b/files/pl/web/javascript/reference/global_objects/escape/index.html @@ -1,7 +1,8 @@ --- title: escape() -slug: Web/JavaScript/Referencje/Obiekty/escape +slug: Web/JavaScript/Reference/Global_Objects/escape translation_of: Web/JavaScript/Reference/Global_Objects/escape +original_slug: Web/JavaScript/Referencje/Obiekty/escape ---
{{jsSidebar("Objects")}}
diff --git a/files/pl/web/javascript/reference/global_objects/evalerror/index.html b/files/pl/web/javascript/reference/global_objects/evalerror/index.html index 6fd39a8789..15b2ee1c40 100644 --- a/files/pl/web/javascript/reference/global_objects/evalerror/index.html +++ b/files/pl/web/javascript/reference/global_objects/evalerror/index.html @@ -1,6 +1,6 @@ --- title: EvalError -slug: Web/JavaScript/Referencje/Obiekty/EvalError +slug: Web/JavaScript/Reference/Global_Objects/EvalError tags: - EvalError - JavaScript @@ -8,6 +8,7 @@ tags: - Obiekt - Referencja translation_of: Web/JavaScript/Reference/Global_Objects/EvalError +original_slug: Web/JavaScript/Referencje/Obiekty/EvalError ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/function/apply/index.html b/files/pl/web/javascript/reference/global_objects/function/apply/index.html index 411b47423a..1114e51167 100644 --- a/files/pl/web/javascript/reference/global_objects/function/apply/index.html +++ b/files/pl/web/javascript/reference/global_objects/function/apply/index.html @@ -1,7 +1,8 @@ --- title: Function.prototype.apply() -slug: Web/JavaScript/Referencje/Obiekty/Function/apply +slug: Web/JavaScript/Reference/Global_Objects/Function/apply translation_of: Web/JavaScript/Reference/Global_Objects/Function/apply +original_slug: Web/JavaScript/Referencje/Obiekty/Function/apply ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/function/arguments/index.html b/files/pl/web/javascript/reference/global_objects/function/arguments/index.html index abbb63eef4..2730721c86 100644 --- a/files/pl/web/javascript/reference/global_objects/function/arguments/index.html +++ b/files/pl/web/javascript/reference/global_objects/function/arguments/index.html @@ -1,12 +1,13 @@ --- title: Function.arguments -slug: Web/JavaScript/Referencje/Obiekty/Function/arguments +slug: Web/JavaScript/Reference/Global_Objects/Function/arguments tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Function/arguments +original_slug: Web/JavaScript/Referencje/Obiekty/Function/arguments ---

{{JSRef}}{{ Deprecated_header() }}

diff --git a/files/pl/web/javascript/reference/global_objects/function/bind/index.html b/files/pl/web/javascript/reference/global_objects/function/bind/index.html index 028db6b6d4..804d686f1d 100644 --- a/files/pl/web/javascript/reference/global_objects/function/bind/index.html +++ b/files/pl/web/javascript/reference/global_objects/function/bind/index.html @@ -1,7 +1,8 @@ --- title: Function.prototype.bind() -slug: Web/JavaScript/Referencje/Obiekty/Function/bind +slug: Web/JavaScript/Reference/Global_Objects/Function/bind translation_of: Web/JavaScript/Reference/Global_Objects/Function/bind +original_slug: Web/JavaScript/Referencje/Obiekty/Function/bind ---
{{JSRef}}
Metoda bind() tworzy nową funkcję, której wywołanie powoduje ustawienie this na podaną wartość, z podaną sekwencją argumentów poprzedzającą dowolną podaną podczas wywołania nowej funkcji.
diff --git a/files/pl/web/javascript/reference/global_objects/function/caller/index.html b/files/pl/web/javascript/reference/global_objects/function/caller/index.html index 1c86b7f92f..c32102869a 100644 --- a/files/pl/web/javascript/reference/global_objects/function/caller/index.html +++ b/files/pl/web/javascript/reference/global_objects/function/caller/index.html @@ -1,12 +1,13 @@ --- title: Function.caller -slug: Web/JavaScript/Referencje/Obiekty/Function/caller +slug: Web/JavaScript/Reference/Global_Objects/Function/caller tags: - Function - JavaScript - Non-standard - Property translation_of: Web/JavaScript/Reference/Global_Objects/Function/caller +original_slug: Web/JavaScript/Referencje/Obiekty/Function/caller ---
{{JSRef}} {{non-standard_header}}
diff --git a/files/pl/web/javascript/reference/global_objects/function/displayname/index.html b/files/pl/web/javascript/reference/global_objects/function/displayname/index.html index 72c8c41257..c9fe6b741a 100644 --- a/files/pl/web/javascript/reference/global_objects/function/displayname/index.html +++ b/files/pl/web/javascript/reference/global_objects/function/displayname/index.html @@ -1,7 +1,8 @@ --- title: Function.displayName -slug: Web/JavaScript/Referencje/Obiekty/Function/displayName +slug: Web/JavaScript/Reference/Global_Objects/Function/displayName translation_of: Web/JavaScript/Reference/Global_Objects/Function/displayName +original_slug: Web/JavaScript/Referencje/Obiekty/Function/displayName ---
{{JSRef}} {{non-standard_header}}
diff --git a/files/pl/web/javascript/reference/global_objects/function/index.html b/files/pl/web/javascript/reference/global_objects/function/index.html index 2db4d33411..5a9e96f266 100644 --- a/files/pl/web/javascript/reference/global_objects/function/index.html +++ b/files/pl/web/javascript/reference/global_objects/function/index.html @@ -1,11 +1,12 @@ --- title: Function -slug: Web/JavaScript/Referencje/Obiekty/Function +slug: Web/JavaScript/Reference/Global_Objects/Function tags: - Function - JavaScript - Konstruktor translation_of: Web/JavaScript/Reference/Global_Objects/Function +original_slug: Web/JavaScript/Referencje/Obiekty/Function ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/function/length/index.html b/files/pl/web/javascript/reference/global_objects/function/length/index.html index e34ecb8154..df26b64675 100644 --- a/files/pl/web/javascript/reference/global_objects/function/length/index.html +++ b/files/pl/web/javascript/reference/global_objects/function/length/index.html @@ -1,11 +1,12 @@ --- title: Function.length -slug: Web/JavaScript/Referencje/Obiekty/Function/length +slug: Web/JavaScript/Reference/Global_Objects/Function/length tags: - Function - JavaScript - Property translation_of: Web/JavaScript/Reference/Global_Objects/Function/length +original_slug: Web/JavaScript/Referencje/Obiekty/Function/length ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/function/tostring/index.html b/files/pl/web/javascript/reference/global_objects/function/tostring/index.html index 2f158219b9..675f65c662 100644 --- a/files/pl/web/javascript/reference/global_objects/function/tostring/index.html +++ b/files/pl/web/javascript/reference/global_objects/function/tostring/index.html @@ -1,12 +1,13 @@ --- title: Function.prototype.toString() -slug: Web/JavaScript/Referencje/Obiekty/Function/toString +slug: Web/JavaScript/Reference/Global_Objects/Function/toString tags: - Function - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Function/toString +original_slug: Web/JavaScript/Referencje/Obiekty/Function/toString ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/generator/index.html b/files/pl/web/javascript/reference/global_objects/generator/index.html index 8d181f0dcc..a84467e7ca 100644 --- a/files/pl/web/javascript/reference/global_objects/generator/index.html +++ b/files/pl/web/javascript/reference/global_objects/generator/index.html @@ -1,7 +1,8 @@ --- title: Generator -slug: Web/JavaScript/Referencje/Obiekty/Generator +slug: Web/JavaScript/Reference/Global_Objects/Generator translation_of: Web/JavaScript/Reference/Global_Objects/Generator +original_slug: Web/JavaScript/Referencje/Obiekty/Generator ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/index.html b/files/pl/web/javascript/reference/global_objects/index.html index ebe6dfe63f..8d18c5e730 100644 --- a/files/pl/web/javascript/reference/global_objects/index.html +++ b/files/pl/web/javascript/reference/global_objects/index.html @@ -1,12 +1,13 @@ --- title: Obiekty -slug: Web/JavaScript/Referencje/Obiekty +slug: Web/JavaScript/Reference/Global_Objects tags: - Dokumentacja - Dokumentacja_JavaScript - Dokumentacje - JavaScript translation_of: Web/JavaScript/Reference/Global_Objects +original_slug: Web/JavaScript/Referencje/Obiekty ---
{{jsSidebar("Objects")}}
diff --git a/files/pl/web/javascript/reference/global_objects/infinity/index.html b/files/pl/web/javascript/reference/global_objects/infinity/index.html index 7a2bd7ca45..e20fe96052 100644 --- a/files/pl/web/javascript/reference/global_objects/infinity/index.html +++ b/files/pl/web/javascript/reference/global_objects/infinity/index.html @@ -1,9 +1,10 @@ --- title: Infinity -slug: Web/JavaScript/Referencje/Obiekty/Infinity +slug: Web/JavaScript/Reference/Global_Objects/Infinity tags: - JavaScript translation_of: Web/JavaScript/Reference/Global_Objects/Infinity +original_slug: Web/JavaScript/Referencje/Obiekty/Infinity ---
diff --git a/files/pl/web/javascript/reference/global_objects/isfinite/index.html b/files/pl/web/javascript/reference/global_objects/isfinite/index.html index 3b699e33c2..9147ea7ad8 100644 --- a/files/pl/web/javascript/reference/global_objects/isfinite/index.html +++ b/files/pl/web/javascript/reference/global_objects/isfinite/index.html @@ -1,9 +1,10 @@ --- title: isFinite() -slug: Web/JavaScript/Referencje/Obiekty/isFinite +slug: Web/JavaScript/Reference/Global_Objects/isFinite tags: - JavaScript translation_of: Web/JavaScript/Reference/Global_Objects/isFinite +original_slug: Web/JavaScript/Referencje/Obiekty/isFinite ---
diff --git a/files/pl/web/javascript/reference/global_objects/isnan/index.html b/files/pl/web/javascript/reference/global_objects/isnan/index.html index f2730b9c00..fa2ec80b5c 100644 --- a/files/pl/web/javascript/reference/global_objects/isnan/index.html +++ b/files/pl/web/javascript/reference/global_objects/isnan/index.html @@ -1,9 +1,10 @@ --- title: isNaN() -slug: Web/JavaScript/Referencje/Obiekty/isNaN +slug: Web/JavaScript/Reference/Global_Objects/isNaN tags: - JavaScript translation_of: Web/JavaScript/Reference/Global_Objects/isNaN +original_slug: Web/JavaScript/Referencje/Obiekty/isNaN ---

{{jsSidebar("Objects")}}

diff --git a/files/pl/web/javascript/reference/global_objects/json/index.html b/files/pl/web/javascript/reference/global_objects/json/index.html index 7a4b6c0812..18d748958d 100644 --- a/files/pl/web/javascript/reference/global_objects/json/index.html +++ b/files/pl/web/javascript/reference/global_objects/json/index.html @@ -1,11 +1,12 @@ --- title: JSON -slug: Web/JavaScript/Referencje/Obiekty/JSON +slug: Web/JavaScript/Reference/Global_Objects/JSON tags: - JSON - JavaScript - Obiekt translation_of: Web/JavaScript/Reference/Global_Objects/JSON +original_slug: Web/JavaScript/Referencje/Obiekty/JSON ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/map/clear/index.html b/files/pl/web/javascript/reference/global_objects/map/clear/index.html index a4e7374127..15fa630779 100644 --- a/files/pl/web/javascript/reference/global_objects/map/clear/index.html +++ b/files/pl/web/javascript/reference/global_objects/map/clear/index.html @@ -1,6 +1,6 @@ --- title: Map.prototype.clear() -slug: Web/JavaScript/Referencje/Obiekty/Map/clear +slug: Web/JavaScript/Reference/Global_Objects/Map/clear tags: - ECMAScript 2015 - JavaScript @@ -8,6 +8,7 @@ tags: - Metodă - Prototyp translation_of: Web/JavaScript/Reference/Global_Objects/Map/clear +original_slug: Web/JavaScript/Referencje/Obiekty/Map/clear ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/map/delete/index.html b/files/pl/web/javascript/reference/global_objects/map/delete/index.html index 2016e577f8..bb33f16d44 100644 --- a/files/pl/web/javascript/reference/global_objects/map/delete/index.html +++ b/files/pl/web/javascript/reference/global_objects/map/delete/index.html @@ -1,10 +1,11 @@ --- title: Map.prototype.delete() -slug: Web/JavaScript/Referencje/Obiekty/Map/delete +slug: Web/JavaScript/Reference/Global_Objects/Map/delete tags: - Mapa - Metodă translation_of: Web/JavaScript/Reference/Global_Objects/Map/delete +original_slug: Web/JavaScript/Referencje/Obiekty/Map/delete ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/map/entries/index.html b/files/pl/web/javascript/reference/global_objects/map/entries/index.html index 97c049b150..25589210ac 100644 --- a/files/pl/web/javascript/reference/global_objects/map/entries/index.html +++ b/files/pl/web/javascript/reference/global_objects/map/entries/index.html @@ -1,6 +1,6 @@ --- title: Map.prototype.entries() -slug: Web/JavaScript/Referencje/Obiekty/Map/entries +slug: Web/JavaScript/Reference/Global_Objects/Map/entries tags: - ECMAScript2015 - Iterator @@ -9,6 +9,7 @@ tags: - Metodă - Prototyp translation_of: Web/JavaScript/Reference/Global_Objects/Map/entries +original_slug: Web/JavaScript/Referencje/Obiekty/Map/entries ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/map/foreach/index.html b/files/pl/web/javascript/reference/global_objects/map/foreach/index.html index 7280020397..ec53470515 100644 --- a/files/pl/web/javascript/reference/global_objects/map/foreach/index.html +++ b/files/pl/web/javascript/reference/global_objects/map/foreach/index.html @@ -1,6 +1,6 @@ --- title: Map.prototype.forEach() -slug: Web/JavaScript/Referencje/Obiekty/Map/forEach +slug: Web/JavaScript/Reference/Global_Objects/Map/forEach tags: - ECMAScript2015 - JavaScript @@ -8,6 +8,7 @@ tags: - Metodă - Prototyp translation_of: Web/JavaScript/Reference/Global_Objects/Map/forEach +original_slug: Web/JavaScript/Referencje/Obiekty/Map/forEach ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/map/get/index.html b/files/pl/web/javascript/reference/global_objects/map/get/index.html index a8cb900ed7..b9b3da5da3 100644 --- a/files/pl/web/javascript/reference/global_objects/map/get/index.html +++ b/files/pl/web/javascript/reference/global_objects/map/get/index.html @@ -1,6 +1,6 @@ --- title: Map.prototype.get() -slug: Web/JavaScript/Referencje/Obiekty/Map/get +slug: Web/JavaScript/Reference/Global_Objects/Map/get tags: - ECMAScript 2015 - JavaScript @@ -8,6 +8,7 @@ tags: - Metodă - Prototyp translation_of: Web/JavaScript/Reference/Global_Objects/Map/get +original_slug: Web/JavaScript/Referencje/Obiekty/Map/get ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/map/has/index.html b/files/pl/web/javascript/reference/global_objects/map/has/index.html index 14bf4f71dc..3f9f330b4e 100644 --- a/files/pl/web/javascript/reference/global_objects/map/has/index.html +++ b/files/pl/web/javascript/reference/global_objects/map/has/index.html @@ -1,6 +1,6 @@ --- title: Map.prototype.has() -slug: Web/JavaScript/Referencje/Obiekty/Map/has +slug: Web/JavaScript/Reference/Global_Objects/Map/has tags: - ECMAScript 2015 - JavaScript @@ -8,6 +8,7 @@ tags: - Metodă - Prototyp translation_of: Web/JavaScript/Reference/Global_Objects/Map/has +original_slug: Web/JavaScript/Referencje/Obiekty/Map/has ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/map/index.html b/files/pl/web/javascript/reference/global_objects/map/index.html index 8c0a9833eb..a72cd3dc26 100644 --- a/files/pl/web/javascript/reference/global_objects/map/index.html +++ b/files/pl/web/javascript/reference/global_objects/map/index.html @@ -1,11 +1,12 @@ --- title: Map -slug: Web/JavaScript/Referencje/Obiekty/Map +slug: Web/JavaScript/Reference/Global_Objects/Map tags: - ECMAScript 2015 - JavaScript - Map translation_of: Web/JavaScript/Reference/Global_Objects/Map +original_slug: Web/JavaScript/Referencje/Obiekty/Map ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/map/keys/index.html b/files/pl/web/javascript/reference/global_objects/map/keys/index.html index 8723e295ab..6d018a6f9a 100644 --- a/files/pl/web/javascript/reference/global_objects/map/keys/index.html +++ b/files/pl/web/javascript/reference/global_objects/map/keys/index.html @@ -1,6 +1,6 @@ --- title: Map.prototype.keys() -slug: Web/JavaScript/Referencje/Obiekty/Map/keys +slug: Web/JavaScript/Reference/Global_Objects/Map/keys tags: - ECMAScript 2015 - Iterator @@ -9,6 +9,7 @@ tags: - Metodă - Prototyp translation_of: Web/JavaScript/Reference/Global_Objects/Map/keys +original_slug: Web/JavaScript/Referencje/Obiekty/Map/keys ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/map/set/index.html b/files/pl/web/javascript/reference/global_objects/map/set/index.html index 951cefd229..96f3340090 100644 --- a/files/pl/web/javascript/reference/global_objects/map/set/index.html +++ b/files/pl/web/javascript/reference/global_objects/map/set/index.html @@ -1,6 +1,6 @@ --- title: Map.prototype.set() -slug: Web/JavaScript/Referencje/Obiekty/Map/set +slug: Web/JavaScript/Reference/Global_Objects/Map/set tags: - ECMAScript 2015 - JavaScript @@ -8,6 +8,7 @@ tags: - Metodă - Prototyp translation_of: Web/JavaScript/Reference/Global_Objects/Map/set +original_slug: Web/JavaScript/Referencje/Obiekty/Map/set ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/map/size/index.html b/files/pl/web/javascript/reference/global_objects/map/size/index.html index 0ec1025e46..cd85fbb940 100644 --- a/files/pl/web/javascript/reference/global_objects/map/size/index.html +++ b/files/pl/web/javascript/reference/global_objects/map/size/index.html @@ -1,10 +1,11 @@ --- title: Map.prototype.size -slug: Web/JavaScript/Referencje/Obiekty/Map/size +slug: Web/JavaScript/Reference/Global_Objects/Map/size tags: - JavaScript - Reference translation_of: Web/JavaScript/Reference/Global_Objects/Map/size +original_slug: Web/JavaScript/Referencje/Obiekty/Map/size ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/map/values/index.html b/files/pl/web/javascript/reference/global_objects/map/values/index.html index 50a7d72d0f..163f99de5d 100644 --- a/files/pl/web/javascript/reference/global_objects/map/values/index.html +++ b/files/pl/web/javascript/reference/global_objects/map/values/index.html @@ -1,6 +1,6 @@ --- title: Map.prototype.values() -slug: Web/JavaScript/Referencje/Obiekty/Map/values +slug: Web/JavaScript/Reference/Global_Objects/Map/values tags: - ECMAScript 2015 - Iterator @@ -9,6 +9,7 @@ tags: - Metodă - Prototyp translation_of: Web/JavaScript/Reference/Global_Objects/Map/values +original_slug: Web/JavaScript/Referencje/Obiekty/Map/values ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/math/abs/index.html b/files/pl/web/javascript/reference/global_objects/math/abs/index.html index c3b333a4ce..7130c60e4d 100644 --- a/files/pl/web/javascript/reference/global_objects/math/abs/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/abs/index.html @@ -1,11 +1,12 @@ --- title: Math.abs() -slug: Web/JavaScript/Referencje/Obiekty/Math/abs +slug: Web/JavaScript/Reference/Global_Objects/Math/abs tags: - JavaScript - Math - Method translation_of: Web/JavaScript/Reference/Global_Objects/Math/abs +original_slug: Web/JavaScript/Referencje/Obiekty/Math/abs ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/acos/index.html b/files/pl/web/javascript/reference/global_objects/math/acos/index.html index afb1485ada..1a5631dbf5 100644 --- a/files/pl/web/javascript/reference/global_objects/math/acos/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/acos/index.html @@ -1,11 +1,12 @@ --- title: Math.acos() -slug: Web/JavaScript/Referencje/Obiekty/Math/acos +slug: Web/JavaScript/Reference/Global_Objects/Math/acos tags: - JavaScript - Math - Method translation_of: Web/JavaScript/Reference/Global_Objects/Math/acos +original_slug: Web/JavaScript/Referencje/Obiekty/Math/acos ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/asin/index.html b/files/pl/web/javascript/reference/global_objects/math/asin/index.html index e473586a49..bd7d955271 100644 --- a/files/pl/web/javascript/reference/global_objects/math/asin/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/asin/index.html @@ -1,10 +1,11 @@ --- title: Math.asin() -slug: Web/JavaScript/Referencje/Obiekty/Math/asin +slug: Web/JavaScript/Reference/Global_Objects/Math/asin tags: - JavaScript - Math translation_of: Web/JavaScript/Reference/Global_Objects/Math/asin +original_slug: Web/JavaScript/Referencje/Obiekty/Math/asin ---

{{jsref}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/atan/index.html b/files/pl/web/javascript/reference/global_objects/math/atan/index.html index 4e452e1f13..06fa2229fe 100644 --- a/files/pl/web/javascript/reference/global_objects/math/atan/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/atan/index.html @@ -1,11 +1,12 @@ --- title: Math.atan() -slug: Web/JavaScript/Referencje/Obiekty/Math/atan +slug: Web/JavaScript/Reference/Global_Objects/Math/atan tags: - JavaScript - Math - Method translation_of: Web/JavaScript/Reference/Global_Objects/Math/atan +original_slug: Web/JavaScript/Referencje/Obiekty/Math/atan ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/atan2/index.html b/files/pl/web/javascript/reference/global_objects/math/atan2/index.html index 81f4606036..e8cc44766c 100644 --- a/files/pl/web/javascript/reference/global_objects/math/atan2/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/atan2/index.html @@ -1,11 +1,12 @@ --- title: Math.atan2() -slug: Web/JavaScript/Referencje/Obiekty/Math/atan2 +slug: Web/JavaScript/Reference/Global_Objects/Math/atan2 tags: - JavaScript - Math - Method translation_of: Web/JavaScript/Reference/Global_Objects/Math/atan2 +original_slug: Web/JavaScript/Referencje/Obiekty/Math/atan2 ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/ceil/index.html b/files/pl/web/javascript/reference/global_objects/math/ceil/index.html index 8e48d70931..a46dbd3069 100644 --- a/files/pl/web/javascript/reference/global_objects/math/ceil/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/ceil/index.html @@ -1,11 +1,12 @@ --- title: Math.ceil() -slug: Web/JavaScript/Referencje/Obiekty/Math/ceil +slug: Web/JavaScript/Reference/Global_Objects/Math/ceil tags: - JavaScript - Math - Method translation_of: Web/JavaScript/Reference/Global_Objects/Math/ceil +original_slug: Web/JavaScript/Referencje/Obiekty/Math/ceil ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/cos/index.html b/files/pl/web/javascript/reference/global_objects/math/cos/index.html index 6634e7d96e..cb0c692240 100644 --- a/files/pl/web/javascript/reference/global_objects/math/cos/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/cos/index.html @@ -1,11 +1,12 @@ --- title: Math.cos() -slug: Web/JavaScript/Referencje/Obiekty/Math/cos +slug: Web/JavaScript/Reference/Global_Objects/Math/cos tags: - JavaScript - Math - Method translation_of: Web/JavaScript/Reference/Global_Objects/Math/cos +original_slug: Web/JavaScript/Referencje/Obiekty/Math/cos ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/e/index.html b/files/pl/web/javascript/reference/global_objects/math/e/index.html index 76659e8c1d..718bb943fd 100644 --- a/files/pl/web/javascript/reference/global_objects/math/e/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/e/index.html @@ -1,11 +1,12 @@ --- title: Math.E -slug: Web/JavaScript/Referencje/Obiekty/Math/E +slug: Web/JavaScript/Reference/Global_Objects/Math/E tags: - JavaScript - Math - Property translation_of: Web/JavaScript/Reference/Global_Objects/Math/E +original_slug: Web/JavaScript/Referencje/Obiekty/Math/E ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/exp/index.html b/files/pl/web/javascript/reference/global_objects/math/exp/index.html index f7bc13ecbb..64ac1e7d0d 100644 --- a/files/pl/web/javascript/reference/global_objects/math/exp/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/exp/index.html @@ -1,11 +1,12 @@ --- title: Math.exp() -slug: Web/JavaScript/Referencje/Obiekty/Math/exp +slug: Web/JavaScript/Reference/Global_Objects/Math/exp tags: - JavaScript - Math - Method translation_of: Web/JavaScript/Reference/Global_Objects/Math/exp +original_slug: Web/JavaScript/Referencje/Obiekty/Math/exp ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/floor/index.html b/files/pl/web/javascript/reference/global_objects/math/floor/index.html index 3fea41b72f..7ae1710c3c 100644 --- a/files/pl/web/javascript/reference/global_objects/math/floor/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/floor/index.html @@ -1,11 +1,12 @@ --- title: Math.floor() -slug: Web/JavaScript/Referencje/Obiekty/Math/floor +slug: Web/JavaScript/Reference/Global_Objects/Math/floor tags: - JavaScript - Math - Method translation_of: Web/JavaScript/Reference/Global_Objects/Math/floor +original_slug: Web/JavaScript/Referencje/Obiekty/Math/floor ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/index.html b/files/pl/web/javascript/reference/global_objects/math/index.html index 350fb3a7de..5fb44f3d1c 100644 --- a/files/pl/web/javascript/reference/global_objects/math/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/index.html @@ -1,12 +1,13 @@ --- title: Math -slug: Web/JavaScript/Referencje/Obiekty/Math +slug: Web/JavaScript/Reference/Global_Objects/Math tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/Math +original_slug: Web/JavaScript/Referencje/Obiekty/Math ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/ln10/index.html b/files/pl/web/javascript/reference/global_objects/math/ln10/index.html index 7b05143a06..a7123ea09a 100644 --- a/files/pl/web/javascript/reference/global_objects/math/ln10/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/ln10/index.html @@ -1,11 +1,12 @@ --- title: Math.LN10 -slug: Web/JavaScript/Referencje/Obiekty/Math/LN10 +slug: Web/JavaScript/Reference/Global_Objects/Math/LN10 tags: - JavaScript - Math - Property translation_of: Web/JavaScript/Reference/Global_Objects/Math/LN10 +original_slug: Web/JavaScript/Referencje/Obiekty/Math/LN10 ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/ln2/index.html b/files/pl/web/javascript/reference/global_objects/math/ln2/index.html index aed4335b9f..58d20c3e2c 100644 --- a/files/pl/web/javascript/reference/global_objects/math/ln2/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/ln2/index.html @@ -1,11 +1,12 @@ --- title: Math.LN2 -slug: Web/JavaScript/Referencje/Obiekty/Math/LN2 +slug: Web/JavaScript/Reference/Global_Objects/Math/LN2 tags: - JavaScript - Math - Property translation_of: Web/JavaScript/Reference/Global_Objects/Math/LN2 +original_slug: Web/JavaScript/Referencje/Obiekty/Math/LN2 ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/log/index.html b/files/pl/web/javascript/reference/global_objects/math/log/index.html index 14e292b04f..a037a745d4 100644 --- a/files/pl/web/javascript/reference/global_objects/math/log/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/log/index.html @@ -1,11 +1,12 @@ --- title: Math.log() -slug: Web/JavaScript/Referencje/Obiekty/Math/log +slug: Web/JavaScript/Reference/Global_Objects/Math/log tags: - JavaScript - Math - Method translation_of: Web/JavaScript/Reference/Global_Objects/Math/log +original_slug: Web/JavaScript/Referencje/Obiekty/Math/log ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/log10e/index.html b/files/pl/web/javascript/reference/global_objects/math/log10e/index.html index 33765632e0..19872df5f6 100644 --- a/files/pl/web/javascript/reference/global_objects/math/log10e/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/log10e/index.html @@ -1,11 +1,12 @@ --- title: Math.LOG10E -slug: Web/JavaScript/Referencje/Obiekty/Math/LOG10E +slug: Web/JavaScript/Reference/Global_Objects/Math/LOG10E tags: - JavaScript - Math - Property translation_of: Web/JavaScript/Reference/Global_Objects/Math/LOG10E +original_slug: Web/JavaScript/Referencje/Obiekty/Math/LOG10E ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/log2e/index.html b/files/pl/web/javascript/reference/global_objects/math/log2e/index.html index 29d465fe42..aca585cea3 100644 --- a/files/pl/web/javascript/reference/global_objects/math/log2e/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/log2e/index.html @@ -1,11 +1,12 @@ --- title: Math.LOG2E -slug: Web/JavaScript/Referencje/Obiekty/Math/LOG2E +slug: Web/JavaScript/Reference/Global_Objects/Math/LOG2E tags: - JavaScript - Math - Property translation_of: Web/JavaScript/Reference/Global_Objects/Math/LOG2E +original_slug: Web/JavaScript/Referencje/Obiekty/Math/LOG2E ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/max/index.html b/files/pl/web/javascript/reference/global_objects/math/max/index.html index 40946461d5..ef23c6a7d8 100644 --- a/files/pl/web/javascript/reference/global_objects/math/max/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/max/index.html @@ -1,11 +1,12 @@ --- title: Math.max() -slug: Web/JavaScript/Referencje/Obiekty/Math/max +slug: Web/JavaScript/Reference/Global_Objects/Math/max tags: - JavaScript - Math - Method translation_of: Web/JavaScript/Reference/Global_Objects/Math/max +original_slug: Web/JavaScript/Referencje/Obiekty/Math/max ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/math/min/index.html b/files/pl/web/javascript/reference/global_objects/math/min/index.html index 75a892461b..2994b7e363 100644 --- a/files/pl/web/javascript/reference/global_objects/math/min/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/min/index.html @@ -1,11 +1,12 @@ --- title: Math.min() -slug: Web/JavaScript/Referencje/Obiekty/Math/min +slug: Web/JavaScript/Reference/Global_Objects/Math/min tags: - JavaScript - Math - Method translation_of: Web/JavaScript/Reference/Global_Objects/Math/min +original_slug: Web/JavaScript/Referencje/Obiekty/Math/min ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/pi/index.html b/files/pl/web/javascript/reference/global_objects/math/pi/index.html index 429a21db09..f4c7c2c91e 100644 --- a/files/pl/web/javascript/reference/global_objects/math/pi/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/pi/index.html @@ -1,11 +1,12 @@ --- title: Math.PI -slug: Web/JavaScript/Referencje/Obiekty/Math/PI +slug: Web/JavaScript/Reference/Global_Objects/Math/PI tags: - JavaScript - Math - Property translation_of: Web/JavaScript/Reference/Global_Objects/Math/PI +original_slug: Web/JavaScript/Referencje/Obiekty/Math/PI ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/pow/index.html b/files/pl/web/javascript/reference/global_objects/math/pow/index.html index 89d0a1c21b..82b449f8d2 100644 --- a/files/pl/web/javascript/reference/global_objects/math/pow/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/pow/index.html @@ -1,11 +1,12 @@ --- title: Math.pow() -slug: Web/JavaScript/Referencje/Obiekty/Math/pow +slug: Web/JavaScript/Reference/Global_Objects/Math/pow tags: - JavaScript - Math - Method translation_of: Web/JavaScript/Reference/Global_Objects/Math/pow +original_slug: Web/JavaScript/Referencje/Obiekty/Math/pow ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/random/index.html b/files/pl/web/javascript/reference/global_objects/math/random/index.html index af6fa11aa7..fd68b5ea29 100644 --- a/files/pl/web/javascript/reference/global_objects/math/random/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/random/index.html @@ -1,11 +1,12 @@ --- title: Math.random() -slug: Web/JavaScript/Referencje/Obiekty/Math/random +slug: Web/JavaScript/Reference/Global_Objects/Math/random tags: - JavaScript - Math - Method translation_of: Web/JavaScript/Reference/Global_Objects/Math/random +original_slug: Web/JavaScript/Referencje/Obiekty/Math/random ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/round/index.html b/files/pl/web/javascript/reference/global_objects/math/round/index.html index 4f0729568b..01aabb9aa1 100644 --- a/files/pl/web/javascript/reference/global_objects/math/round/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/round/index.html @@ -1,11 +1,12 @@ --- title: Math.round() -slug: Web/JavaScript/Referencje/Obiekty/Math/round +slug: Web/JavaScript/Reference/Global_Objects/Math/round tags: - JavaScript - Math - Method translation_of: Web/JavaScript/Reference/Global_Objects/Math/round +original_slug: Web/JavaScript/Referencje/Obiekty/Math/round ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/sign/index.html b/files/pl/web/javascript/reference/global_objects/math/sign/index.html index d6c21d59a1..bd919f950a 100644 --- a/files/pl/web/javascript/reference/global_objects/math/sign/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/sign/index.html @@ -1,7 +1,8 @@ --- title: Math.sign() -slug: Web/JavaScript/Referencje/Obiekty/Math/sign +slug: Web/JavaScript/Reference/Global_Objects/Math/sign translation_of: Web/JavaScript/Reference/Global_Objects/Math/sign +original_slug: Web/JavaScript/Referencje/Obiekty/Math/sign ---
{{JSRef("Global_Objects", "Math")}}
diff --git a/files/pl/web/javascript/reference/global_objects/math/sin/index.html b/files/pl/web/javascript/reference/global_objects/math/sin/index.html index 56d31ef74c..b61ffd0560 100644 --- a/files/pl/web/javascript/reference/global_objects/math/sin/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/sin/index.html @@ -1,11 +1,12 @@ --- title: Math.sin() -slug: Web/JavaScript/Referencje/Obiekty/Math/sin +slug: Web/JavaScript/Reference/Global_Objects/Math/sin tags: - JavaScript - Math - Method translation_of: Web/JavaScript/Reference/Global_Objects/Math/sin +original_slug: Web/JavaScript/Referencje/Obiekty/Math/sin ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/sqrt/index.html b/files/pl/web/javascript/reference/global_objects/math/sqrt/index.html index 76c5b33a3e..4622fd2620 100644 --- a/files/pl/web/javascript/reference/global_objects/math/sqrt/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/sqrt/index.html @@ -1,11 +1,12 @@ --- title: Math.sqrt() -slug: Web/JavaScript/Referencje/Obiekty/Math/sqrt +slug: Web/JavaScript/Reference/Global_Objects/Math/sqrt tags: - JavaScript - Math - Method translation_of: Web/JavaScript/Reference/Global_Objects/Math/sqrt +original_slug: Web/JavaScript/Referencje/Obiekty/Math/sqrt ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/sqrt1_2/index.html b/files/pl/web/javascript/reference/global_objects/math/sqrt1_2/index.html index 224739b4ce..1c1215f5b7 100644 --- a/files/pl/web/javascript/reference/global_objects/math/sqrt1_2/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/sqrt1_2/index.html @@ -1,11 +1,12 @@ --- title: Math.SQRT1 2 -slug: Web/JavaScript/Referencje/Obiekty/Math/SQRT1_2 +slug: Web/JavaScript/Reference/Global_Objects/Math/SQRT1_2 tags: - JavaScript - Math - Property translation_of: Web/JavaScript/Reference/Global_Objects/Math/SQRT1_2 +original_slug: Web/JavaScript/Referencje/Obiekty/Math/SQRT1_2 ---

{{jsref}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/sqrt2/index.html b/files/pl/web/javascript/reference/global_objects/math/sqrt2/index.html index 6f247b5abe..4fca0036ce 100644 --- a/files/pl/web/javascript/reference/global_objects/math/sqrt2/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/sqrt2/index.html @@ -1,11 +1,12 @@ --- title: Math.SQRT2 -slug: Web/JavaScript/Referencje/Obiekty/Math/SQRT2 +slug: Web/JavaScript/Reference/Global_Objects/Math/SQRT2 tags: - JavaScript - Math - Property translation_of: Web/JavaScript/Reference/Global_Objects/Math/SQRT2 +original_slug: Web/JavaScript/Referencje/Obiekty/Math/SQRT2 ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/math/tan/index.html b/files/pl/web/javascript/reference/global_objects/math/tan/index.html index 844ca8cf12..adede7c207 100644 --- a/files/pl/web/javascript/reference/global_objects/math/tan/index.html +++ b/files/pl/web/javascript/reference/global_objects/math/tan/index.html @@ -1,11 +1,12 @@ --- title: Math.tan() -slug: Web/JavaScript/Referencje/Obiekty/Math/tan +slug: Web/JavaScript/Reference/Global_Objects/Math/tan tags: - JavaScript - Math - Method translation_of: Web/JavaScript/Reference/Global_Objects/Math/tan +original_slug: Web/JavaScript/Referencje/Obiekty/Math/tan ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/nan/index.html b/files/pl/web/javascript/reference/global_objects/nan/index.html index 738e9a2a01..22a87a7002 100644 --- a/files/pl/web/javascript/reference/global_objects/nan/index.html +++ b/files/pl/web/javascript/reference/global_objects/nan/index.html @@ -1,12 +1,13 @@ --- title: NaN -slug: Web/JavaScript/Referencje/Obiekty/NaN +slug: Web/JavaScript/Reference/Global_Objects/NaN tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Global_Objects/NaN +original_slug: Web/JavaScript/Referencje/Obiekty/NaN ---
diff --git a/files/pl/web/javascript/reference/global_objects/null/index.html b/files/pl/web/javascript/reference/global_objects/null/index.html index 34e20e399c..bfe3ad5a72 100644 --- a/files/pl/web/javascript/reference/global_objects/null/index.html +++ b/files/pl/web/javascript/reference/global_objects/null/index.html @@ -1,9 +1,10 @@ --- title: 'null' -slug: Web/JavaScript/Referencje/Obiekty/null +slug: Web/JavaScript/Reference/Global_Objects/null tags: - JavaScript translation_of: Web/JavaScript/Reference/Global_Objects/null +original_slug: Web/JavaScript/Referencje/Obiekty/null ---
{{jsSidebar("Objects")}}
diff --git a/files/pl/web/javascript/reference/global_objects/number/epsilon/index.html b/files/pl/web/javascript/reference/global_objects/number/epsilon/index.html index 289e33ad79..09ea32708c 100644 --- a/files/pl/web/javascript/reference/global_objects/number/epsilon/index.html +++ b/files/pl/web/javascript/reference/global_objects/number/epsilon/index.html @@ -1,12 +1,13 @@ --- title: Number.EPSILON -slug: Web/JavaScript/Referencje/Obiekty/Number/EPSILON +slug: Web/JavaScript/Reference/Global_Objects/Number/EPSILON tags: - ECMAScript 2015 - JavaScript - Number - Właściwość translation_of: Web/JavaScript/Reference/Global_Objects/Number/EPSILON +original_slug: Web/JavaScript/Referencje/Obiekty/Number/EPSILON ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/number/index.html b/files/pl/web/javascript/reference/global_objects/number/index.html index 78fc243a0b..57d2491e77 100644 --- a/files/pl/web/javascript/reference/global_objects/number/index.html +++ b/files/pl/web/javascript/reference/global_objects/number/index.html @@ -1,9 +1,10 @@ --- title: Number -slug: Web/JavaScript/Referencje/Obiekty/Number +slug: Web/JavaScript/Reference/Global_Objects/Number tags: - JavaScript translation_of: Web/JavaScript/Reference/Global_Objects/Number +original_slug: Web/JavaScript/Referencje/Obiekty/Number ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/number/isinteger/index.html b/files/pl/web/javascript/reference/global_objects/number/isinteger/index.html index aaf93ab5fb..5e11d160c8 100644 --- a/files/pl/web/javascript/reference/global_objects/number/isinteger/index.html +++ b/files/pl/web/javascript/reference/global_objects/number/isinteger/index.html @@ -1,7 +1,8 @@ --- title: Number.isInteger() -slug: Web/JavaScript/Referencje/Obiekty/Number/isInteger +slug: Web/JavaScript/Reference/Global_Objects/Number/isInteger translation_of: Web/JavaScript/Reference/Global_Objects/Number/isInteger +original_slug: Web/JavaScript/Referencje/Obiekty/Number/isInteger ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/number/isnan/index.html b/files/pl/web/javascript/reference/global_objects/number/isnan/index.html index ddb723b409..41486c7204 100644 --- a/files/pl/web/javascript/reference/global_objects/number/isnan/index.html +++ b/files/pl/web/javascript/reference/global_objects/number/isnan/index.html @@ -1,6 +1,6 @@ --- title: Number.isNaN() -slug: Web/JavaScript/Referencje/Obiekty/Number/isNaN +slug: Web/JavaScript/Reference/Global_Objects/Number/isNaN tags: - ECMAScript 2015 - JavaScript @@ -9,6 +9,7 @@ tags: - Number - isNaN translation_of: Web/JavaScript/Reference/Global_Objects/Number/isNaN +original_slug: Web/JavaScript/Referencje/Obiekty/Number/isNaN ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/number/max_value/index.html b/files/pl/web/javascript/reference/global_objects/number/max_value/index.html index 4ec6b77eb3..9013774586 100644 --- a/files/pl/web/javascript/reference/global_objects/number/max_value/index.html +++ b/files/pl/web/javascript/reference/global_objects/number/max_value/index.html @@ -1,11 +1,12 @@ --- title: Number.MAX_VALUE -slug: Web/JavaScript/Referencje/Obiekty/Number/MAX_VALUE +slug: Web/JavaScript/Reference/Global_Objects/Number/MAX_VALUE tags: - JavaScript - Number - Property translation_of: Web/JavaScript/Reference/Global_Objects/Number/MAX_VALUE +original_slug: Web/JavaScript/Referencje/Obiekty/Number/MAX_VALUE ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/number/min_value/index.html b/files/pl/web/javascript/reference/global_objects/number/min_value/index.html index 7010abe1af..ca91bc36f9 100644 --- a/files/pl/web/javascript/reference/global_objects/number/min_value/index.html +++ b/files/pl/web/javascript/reference/global_objects/number/min_value/index.html @@ -1,11 +1,12 @@ --- title: Number.MIN VALUE -slug: Web/JavaScript/Referencje/Obiekty/Number/MIN_VALUE +slug: Web/JavaScript/Reference/Global_Objects/Number/MIN_VALUE tags: - JavaScript - Number - Property translation_of: Web/JavaScript/Reference/Global_Objects/Number/MIN_VALUE +original_slug: Web/JavaScript/Referencje/Obiekty/Number/MIN_VALUE ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/number/nan/index.html b/files/pl/web/javascript/reference/global_objects/number/nan/index.html index 987a48ee6d..ca26af77cf 100644 --- a/files/pl/web/javascript/reference/global_objects/number/nan/index.html +++ b/files/pl/web/javascript/reference/global_objects/number/nan/index.html @@ -1,11 +1,12 @@ --- title: Number.NaN -slug: Web/JavaScript/Referencje/Obiekty/Number/NaN +slug: Web/JavaScript/Reference/Global_Objects/Number/NaN tags: - JavaScript - Number - Property translation_of: Web/JavaScript/Reference/Global_Objects/Number/NaN +original_slug: Web/JavaScript/Referencje/Obiekty/Number/NaN ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/number/negative_infinity/index.html b/files/pl/web/javascript/reference/global_objects/number/negative_infinity/index.html index 90de86af6d..a266fc571b 100644 --- a/files/pl/web/javascript/reference/global_objects/number/negative_infinity/index.html +++ b/files/pl/web/javascript/reference/global_objects/number/negative_infinity/index.html @@ -1,11 +1,12 @@ --- title: Number.NEGATIVE INFINITY -slug: Web/JavaScript/Referencje/Obiekty/Number/NEGATIVE_INFINITY +slug: Web/JavaScript/Reference/Global_Objects/Number/NEGATIVE_INFINITY tags: - JavaScript - Number - Property translation_of: Web/JavaScript/Reference/Global_Objects/Number/NEGATIVE_INFINITY +original_slug: Web/JavaScript/Referencje/Obiekty/Number/NEGATIVE_INFINITY ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/number/positive_infinity/index.html b/files/pl/web/javascript/reference/global_objects/number/positive_infinity/index.html index e0be5b9e2a..b5643f1cdc 100644 --- a/files/pl/web/javascript/reference/global_objects/number/positive_infinity/index.html +++ b/files/pl/web/javascript/reference/global_objects/number/positive_infinity/index.html @@ -1,11 +1,12 @@ --- title: Number.POSITIVE INFINITY -slug: Web/JavaScript/Referencje/Obiekty/Number/POSITIVE_INFINITY +slug: Web/JavaScript/Reference/Global_Objects/Number/POSITIVE_INFINITY tags: - JavaScript - Number - Property translation_of: Web/JavaScript/Reference/Global_Objects/Number/POSITIVE_INFINITY +original_slug: Web/JavaScript/Referencje/Obiekty/Number/POSITIVE_INFINITY ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/number/toexponential/index.html b/files/pl/web/javascript/reference/global_objects/number/toexponential/index.html index 1eef2782e4..946714b2b8 100644 --- a/files/pl/web/javascript/reference/global_objects/number/toexponential/index.html +++ b/files/pl/web/javascript/reference/global_objects/number/toexponential/index.html @@ -1,12 +1,13 @@ --- title: Number.prototype.toExponential() -slug: Web/JavaScript/Referencje/Obiekty/Number/toExponential +slug: Web/JavaScript/Reference/Global_Objects/Number/toExponential tags: - JavaScript - Method - Number - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Number/toExponential +original_slug: Web/JavaScript/Referencje/Obiekty/Number/toExponential ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/number/tofixed/index.html b/files/pl/web/javascript/reference/global_objects/number/tofixed/index.html index 9394bf1db9..df80458f16 100644 --- a/files/pl/web/javascript/reference/global_objects/number/tofixed/index.html +++ b/files/pl/web/javascript/reference/global_objects/number/tofixed/index.html @@ -1,12 +1,13 @@ --- title: Number.prototype.toFixed() -slug: Web/JavaScript/Referencje/Obiekty/Number/toFixed +slug: Web/JavaScript/Reference/Global_Objects/Number/toFixed tags: - JavaScript - Method - Number - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Number/toFixed +original_slug: Web/JavaScript/Referencje/Obiekty/Number/toFixed ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/number/tolocalestring/index.html b/files/pl/web/javascript/reference/global_objects/number/tolocalestring/index.html index 6ca88bba30..035efe8464 100644 --- a/files/pl/web/javascript/reference/global_objects/number/tolocalestring/index.html +++ b/files/pl/web/javascript/reference/global_objects/number/tolocalestring/index.html @@ -1,7 +1,8 @@ --- title: Number.prototype.toLocaleString() -slug: Web/JavaScript/Referencje/Obiekty/Number/toLocaleString +slug: Web/JavaScript/Reference/Global_Objects/Number/toLocaleString translation_of: Web/JavaScript/Reference/Global_Objects/Number/toLocaleString +original_slug: Web/JavaScript/Referencje/Obiekty/Number/toLocaleString ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/number/toprecision/index.html b/files/pl/web/javascript/reference/global_objects/number/toprecision/index.html index 33d5c0f1ed..126b6c2d95 100644 --- a/files/pl/web/javascript/reference/global_objects/number/toprecision/index.html +++ b/files/pl/web/javascript/reference/global_objects/number/toprecision/index.html @@ -1,12 +1,13 @@ --- title: Number.prototype.toPrecision() -slug: Web/JavaScript/Referencje/Obiekty/Number/toPrecision +slug: Web/JavaScript/Reference/Global_Objects/Number/toPrecision tags: - JavaScript - Method - Number - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Number/toPrecision +original_slug: Web/JavaScript/Referencje/Obiekty/Number/toPrecision ---

{{jsref}}

diff --git a/files/pl/web/javascript/reference/global_objects/number/tostring/index.html b/files/pl/web/javascript/reference/global_objects/number/tostring/index.html index cd29571aee..672019ca59 100644 --- a/files/pl/web/javascript/reference/global_objects/number/tostring/index.html +++ b/files/pl/web/javascript/reference/global_objects/number/tostring/index.html @@ -1,12 +1,13 @@ --- title: Number.prototype.toString() -slug: Web/JavaScript/Referencje/Obiekty/Number/toString +slug: Web/JavaScript/Reference/Global_Objects/Number/toString tags: - JavaScript - Method - Number - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Number/toString +original_slug: Web/JavaScript/Referencje/Obiekty/Number/toString ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/object/assign/index.html b/files/pl/web/javascript/reference/global_objects/object/assign/index.html index 81e764456a..84c139a058 100644 --- a/files/pl/web/javascript/reference/global_objects/object/assign/index.html +++ b/files/pl/web/javascript/reference/global_objects/object/assign/index.html @@ -1,7 +1,8 @@ --- title: Object.assign() -slug: Web/JavaScript/Referencje/Obiekty/Object/assign +slug: Web/JavaScript/Reference/Global_Objects/Object/assign translation_of: Web/JavaScript/Reference/Global_Objects/Object/assign +original_slug: Web/JavaScript/Referencje/Obiekty/Object/assign ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/object/constructor/index.html b/files/pl/web/javascript/reference/global_objects/object/constructor/index.html index 3de20f1350..ec5cc5bc04 100644 --- a/files/pl/web/javascript/reference/global_objects/object/constructor/index.html +++ b/files/pl/web/javascript/reference/global_objects/object/constructor/index.html @@ -1,11 +1,12 @@ --- title: Object.prototype.constructor -slug: Web/JavaScript/Referencje/Obiekty/Object/constructor +slug: Web/JavaScript/Reference/Global_Objects/Object/constructor tags: - JavaScript - Object - Property translation_of: Web/JavaScript/Reference/Global_Objects/Object/constructor +original_slug: Web/JavaScript/Referencje/Obiekty/Object/constructor ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/object/freeze/index.html b/files/pl/web/javascript/reference/global_objects/object/freeze/index.html index 73e0139f31..7abf0aed56 100644 --- a/files/pl/web/javascript/reference/global_objects/object/freeze/index.html +++ b/files/pl/web/javascript/reference/global_objects/object/freeze/index.html @@ -1,7 +1,8 @@ --- title: Object.freeze() -slug: Web/JavaScript/Referencje/Obiekty/Object/freeze +slug: Web/JavaScript/Reference/Global_Objects/Object/freeze translation_of: Web/JavaScript/Reference/Global_Objects/Object/freeze +original_slug: Web/JavaScript/Referencje/Obiekty/Object/freeze ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/object/getownpropertydescriptor/index.html b/files/pl/web/javascript/reference/global_objects/object/getownpropertydescriptor/index.html index 3f9498b26e..7ab7948ccc 100644 --- a/files/pl/web/javascript/reference/global_objects/object/getownpropertydescriptor/index.html +++ b/files/pl/web/javascript/reference/global_objects/object/getownpropertydescriptor/index.html @@ -1,7 +1,8 @@ --- title: Object.getOwnPropertyDescriptor() -slug: Web/JavaScript/Referencje/Obiekty/Object/getOwnPropertyDescriptor +slug: Web/JavaScript/Reference/Global_Objects/Object/getOwnPropertyDescriptor translation_of: Web/JavaScript/Reference/Global_Objects/Object/getOwnPropertyDescriptor +original_slug: Web/JavaScript/Referencje/Obiekty/Object/getOwnPropertyDescriptor ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/object/hasownproperty/index.html b/files/pl/web/javascript/reference/global_objects/object/hasownproperty/index.html index 42bb16783b..3a05d6d5ae 100644 --- a/files/pl/web/javascript/reference/global_objects/object/hasownproperty/index.html +++ b/files/pl/web/javascript/reference/global_objects/object/hasownproperty/index.html @@ -1,7 +1,8 @@ --- title: Object.prototype.hasOwnProperty() -slug: Web/JavaScript/Referencje/Obiekty/Object/hasOwnProperty +slug: Web/JavaScript/Reference/Global_Objects/Object/hasOwnProperty translation_of: Web/JavaScript/Reference/Global_Objects/Object/hasOwnProperty +original_slug: Web/JavaScript/Referencje/Obiekty/Object/hasOwnProperty ---
{{JSRef("Global_Objects", "Object")}}
diff --git a/files/pl/web/javascript/reference/global_objects/object/index.html b/files/pl/web/javascript/reference/global_objects/object/index.html index 88ed5060cb..e5df7e69c3 100644 --- a/files/pl/web/javascript/reference/global_objects/object/index.html +++ b/files/pl/web/javascript/reference/global_objects/object/index.html @@ -1,9 +1,10 @@ --- title: Object -slug: Web/JavaScript/Referencje/Obiekty/Object +slug: Web/JavaScript/Reference/Global_Objects/Object tags: - JavaScript translation_of: Web/JavaScript/Reference/Global_Objects/Object +original_slug: Web/JavaScript/Referencje/Obiekty/Object ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/object/proto/index.html b/files/pl/web/javascript/reference/global_objects/object/proto/index.html index 6d4dd4653e..72951af19a 100644 --- a/files/pl/web/javascript/reference/global_objects/object/proto/index.html +++ b/files/pl/web/javascript/reference/global_objects/object/proto/index.html @@ -1,7 +1,8 @@ --- title: Object.prototype.__proto__ -slug: Web/JavaScript/Referencje/Obiekty/Object/proto +slug: Web/JavaScript/Reference/Global_Objects/Object/proto translation_of: Web/JavaScript/Reference/Global_Objects/Object/proto +original_slug: Web/JavaScript/Referencje/Obiekty/Object/proto ---

Ostrzeżenie: Zmiana [[Prototype]] obiektu, ze względu na sposób w jaki współczesny JavaScript optymalizuje dostęp do właściwości, jest bardzo powolną operacją (W każdej przeglądarce!). Efekty modyfikacji łańcucha dziedziczenia są rozległe, nie chodzi tu tylko o wydłużenie czasu potrzebnego na wykonanie operacji obj.__proto__ = ..., skutki wpływają na każdy fragment kodu który odwołuje się do jakiejkolwiek właściwości obiektu, którego [[Prototype]] został zmieniony. Dlatego jeżeli zależy ci na wydajności powinieneś unikać tej operacji. Zamiast tego, stwórz nowy obiekt z porządanym [[Prototype]] za pomocą {{jsxref("Object.create()")}}.

diff --git a/files/pl/web/javascript/reference/global_objects/object/seal/index.html b/files/pl/web/javascript/reference/global_objects/object/seal/index.html index ba52ba9665..b4ec8de711 100644 --- a/files/pl/web/javascript/reference/global_objects/object/seal/index.html +++ b/files/pl/web/javascript/reference/global_objects/object/seal/index.html @@ -1,7 +1,8 @@ --- title: Object.seal() -slug: Web/JavaScript/Referencje/Obiekty/Object/seal +slug: Web/JavaScript/Reference/Global_Objects/Object/seal translation_of: Web/JavaScript/Reference/Global_Objects/Object/seal +original_slug: Web/JavaScript/Referencje/Obiekty/Object/seal ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/object/tolocalestring/index.html b/files/pl/web/javascript/reference/global_objects/object/tolocalestring/index.html index 1cd0074d45..e8187f90e3 100644 --- a/files/pl/web/javascript/reference/global_objects/object/tolocalestring/index.html +++ b/files/pl/web/javascript/reference/global_objects/object/tolocalestring/index.html @@ -1,12 +1,13 @@ --- title: Object.prototype.toLocaleString() -slug: Web/JavaScript/Referencje/Obiekty/Object/toLocaleString +slug: Web/JavaScript/Reference/Global_Objects/Object/toLocaleString tags: - JavaScript - Method - Object - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Object/toLocaleString +original_slug: Web/JavaScript/Referencje/Obiekty/Object/toLocaleString ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/object/tosource/index.html b/files/pl/web/javascript/reference/global_objects/object/tosource/index.html index 4aa67db90c..502cef66c7 100644 --- a/files/pl/web/javascript/reference/global_objects/object/tosource/index.html +++ b/files/pl/web/javascript/reference/global_objects/object/tosource/index.html @@ -1,6 +1,6 @@ --- title: Object.prototype.toSource() -slug: Web/JavaScript/Referencje/Obiekty/Object/toSource +slug: Web/JavaScript/Reference/Global_Objects/Object/toSource tags: - JavaScript - Method @@ -8,6 +8,7 @@ tags: - Object - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Object/toSource +original_slug: Web/JavaScript/Referencje/Obiekty/Object/toSource ---
{{JSRef}} {{non-standard_header}}
diff --git a/files/pl/web/javascript/reference/global_objects/object/tostring/index.html b/files/pl/web/javascript/reference/global_objects/object/tostring/index.html index e18d93d79a..f78488b4c4 100644 --- a/files/pl/web/javascript/reference/global_objects/object/tostring/index.html +++ b/files/pl/web/javascript/reference/global_objects/object/tostring/index.html @@ -1,12 +1,13 @@ --- title: Object.prototype.toString() -slug: Web/JavaScript/Referencje/Obiekty/Object/toString +slug: Web/JavaScript/Reference/Global_Objects/Object/toString tags: - JavaScript - Method - Object - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Object/toString +original_slug: Web/JavaScript/Referencje/Obiekty/Object/toString ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/object/valueof/index.html b/files/pl/web/javascript/reference/global_objects/object/valueof/index.html index db3cf7a346..a9ac36102c 100644 --- a/files/pl/web/javascript/reference/global_objects/object/valueof/index.html +++ b/files/pl/web/javascript/reference/global_objects/object/valueof/index.html @@ -1,12 +1,13 @@ --- title: Object.prototype.valueOf() -slug: Web/JavaScript/Referencje/Obiekty/Object/valueOf +slug: Web/JavaScript/Reference/Global_Objects/Object/valueOf tags: - JavaScript - Method - Object - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Object/valueOf +original_slug: Web/JavaScript/Referencje/Obiekty/Object/valueOf ---

{{jsRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/parsefloat/index.html b/files/pl/web/javascript/reference/global_objects/parsefloat/index.html index 9afb58d074..e2187c39d8 100644 --- a/files/pl/web/javascript/reference/global_objects/parsefloat/index.html +++ b/files/pl/web/javascript/reference/global_objects/parsefloat/index.html @@ -1,9 +1,10 @@ --- title: parseFloat() -slug: Web/JavaScript/Referencje/Obiekty/parseFloat +slug: Web/JavaScript/Reference/Global_Objects/parseFloat tags: - JavaScript translation_of: Web/JavaScript/Reference/Global_Objects/parseFloat +original_slug: Web/JavaScript/Referencje/Obiekty/parseFloat ---
diff --git a/files/pl/web/javascript/reference/global_objects/parseint/index.html b/files/pl/web/javascript/reference/global_objects/parseint/index.html index fb05b9fc8e..dad4b53ed7 100644 --- a/files/pl/web/javascript/reference/global_objects/parseint/index.html +++ b/files/pl/web/javascript/reference/global_objects/parseint/index.html @@ -1,9 +1,10 @@ --- title: parseInt() -slug: Web/JavaScript/Referencje/Obiekty/parseInt +slug: Web/JavaScript/Reference/Global_Objects/parseInt tags: - JavaScript translation_of: Web/JavaScript/Reference/Global_Objects/parseInt +original_slug: Web/JavaScript/Referencje/Obiekty/parseInt ---
diff --git a/files/pl/web/javascript/reference/global_objects/promise/index.html b/files/pl/web/javascript/reference/global_objects/promise/index.html index 3da2498ca1..1227a0edab 100644 --- a/files/pl/web/javascript/reference/global_objects/promise/index.html +++ b/files/pl/web/javascript/reference/global_objects/promise/index.html @@ -1,10 +1,11 @@ --- title: Promise -slug: Web/JavaScript/Referencje/Obiekty/Promise +slug: Web/JavaScript/Reference/Global_Objects/Promise tags: - JavaScript - Obietnice translation_of: Web/JavaScript/Reference/Global_Objects/Promise +original_slug: Web/JavaScript/Referencje/Obiekty/Promise ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/proxy/index.html b/files/pl/web/javascript/reference/global_objects/proxy/index.html index 7dc7695f00..26c8cd88be 100644 --- a/files/pl/web/javascript/reference/global_objects/proxy/index.html +++ b/files/pl/web/javascript/reference/global_objects/proxy/index.html @@ -1,7 +1,8 @@ --- title: Proxy -slug: Web/JavaScript/Referencje/Obiekty/Proxy +slug: Web/JavaScript/Reference/Global_Objects/Proxy translation_of: Web/JavaScript/Reference/Global_Objects/Proxy +original_slug: Web/JavaScript/Referencje/Obiekty/Proxy ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/proxy/proxy/apply/index.html b/files/pl/web/javascript/reference/global_objects/proxy/proxy/apply/index.html index 4931dd2beb..1037441e42 100644 --- a/files/pl/web/javascript/reference/global_objects/proxy/proxy/apply/index.html +++ b/files/pl/web/javascript/reference/global_objects/proxy/proxy/apply/index.html @@ -1,12 +1,13 @@ --- title: handler.apply() -slug: Web/JavaScript/Referencje/Obiekty/Proxy/handler/apply +slug: Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/apply tags: - ECMAScript 2015 - JavaScript - Metodă - Proxy translation_of: Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/apply +original_slug: Web/JavaScript/Referencje/Obiekty/Proxy/handler/apply ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/proxy/proxy/index.html b/files/pl/web/javascript/reference/global_objects/proxy/proxy/index.html index 7461add3d6..0b5819767e 100644 --- a/files/pl/web/javascript/reference/global_objects/proxy/proxy/index.html +++ b/files/pl/web/javascript/reference/global_objects/proxy/proxy/index.html @@ -1,8 +1,9 @@ --- title: Proxy handler -slug: Web/JavaScript/Referencje/Obiekty/Proxy/handler +slug: Web/JavaScript/Reference/Global_Objects/Proxy/Proxy translation_of: Web/JavaScript/Reference/Global_Objects/Proxy/Proxy translation_of_original: Web/JavaScript/Reference/Global_Objects/Proxy/handler +original_slug: Web/JavaScript/Referencje/Obiekty/Proxy/handler ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/rangeerror/index.html b/files/pl/web/javascript/reference/global_objects/rangeerror/index.html index 13c2981e8d..f9037c41a2 100644 --- a/files/pl/web/javascript/reference/global_objects/rangeerror/index.html +++ b/files/pl/web/javascript/reference/global_objects/rangeerror/index.html @@ -1,7 +1,8 @@ --- title: RangeError -slug: Web/JavaScript/Referencje/Obiekty/RangeError +slug: Web/JavaScript/Reference/Global_Objects/RangeError translation_of: Web/JavaScript/Reference/Global_Objects/RangeError +original_slug: Web/JavaScript/Referencje/Obiekty/RangeError ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/regexp/exec/index.html b/files/pl/web/javascript/reference/global_objects/regexp/exec/index.html index 618ec13d69..8385a71d92 100644 --- a/files/pl/web/javascript/reference/global_objects/regexp/exec/index.html +++ b/files/pl/web/javascript/reference/global_objects/regexp/exec/index.html @@ -1,12 +1,13 @@ --- title: RegExp.prototype.exec() -slug: Web/JavaScript/Referencje/Obiekty/RegExp/exec +slug: Web/JavaScript/Reference/Global_Objects/RegExp/exec tags: - JavaScript - Method - Prototype - RegExp translation_of: Web/JavaScript/Reference/Global_Objects/RegExp/exec +original_slug: Web/JavaScript/Referencje/Obiekty/RegExp/exec ---

{{ JSRef }}

diff --git a/files/pl/web/javascript/reference/global_objects/regexp/global/index.html b/files/pl/web/javascript/reference/global_objects/regexp/global/index.html index e393cbeed0..db7b9adf71 100644 --- a/files/pl/web/javascript/reference/global_objects/regexp/global/index.html +++ b/files/pl/web/javascript/reference/global_objects/regexp/global/index.html @@ -1,12 +1,13 @@ --- title: RexExp.prototype.global -slug: Web/JavaScript/Referencje/Obiekty/RegExp/global +slug: Web/JavaScript/Reference/Global_Objects/RegExp/global tags: - JavaScript - Property - Prototype - RegExp translation_of: Web/JavaScript/Reference/Global_Objects/RegExp/global +original_slug: Web/JavaScript/Referencje/Obiekty/RegExp/global ---
{{JSRef("Global_Objects", "RegExp")}}
diff --git a/files/pl/web/javascript/reference/global_objects/regexp/ignorecase/index.html b/files/pl/web/javascript/reference/global_objects/regexp/ignorecase/index.html index f847bf1221..5de3081dbf 100644 --- a/files/pl/web/javascript/reference/global_objects/regexp/ignorecase/index.html +++ b/files/pl/web/javascript/reference/global_objects/regexp/ignorecase/index.html @@ -1,12 +1,13 @@ --- title: RegExp.prototype.ignoreCase -slug: Web/JavaScript/Referencje/Obiekty/RegExp/ignoreCase +slug: Web/JavaScript/Reference/Global_Objects/RegExp/ignoreCase tags: - JavaScript - Property - RegExp - protype translation_of: Web/JavaScript/Reference/Global_Objects/RegExp/ignoreCase +original_slug: Web/JavaScript/Referencje/Obiekty/RegExp/ignoreCase ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/regexp/index.html b/files/pl/web/javascript/reference/global_objects/regexp/index.html index 7fb605c26f..8d3d520453 100644 --- a/files/pl/web/javascript/reference/global_objects/regexp/index.html +++ b/files/pl/web/javascript/reference/global_objects/regexp/index.html @@ -1,12 +1,13 @@ --- title: RegExp -slug: Web/JavaScript/Referencje/Obiekty/RegExp +slug: Web/JavaScript/Reference/Global_Objects/RegExp tags: - Constructor - JavaScript - RegExp - Regular Expressions translation_of: Web/JavaScript/Reference/Global_Objects/RegExp +original_slug: Web/JavaScript/Referencje/Obiekty/RegExp ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/regexp/lastmatch/index.html b/files/pl/web/javascript/reference/global_objects/regexp/lastmatch/index.html index 4d229d5d81..f9f1c9a129 100644 --- a/files/pl/web/javascript/reference/global_objects/regexp/lastmatch/index.html +++ b/files/pl/web/javascript/reference/global_objects/regexp/lastmatch/index.html @@ -1,7 +1,8 @@ --- title: RegExp.lastMatch ($&) -slug: Web/JavaScript/Referencje/Obiekty/RegExp/lastMatch +slug: Web/JavaScript/Reference/Global_Objects/RegExp/lastMatch translation_of: Web/JavaScript/Reference/Global_Objects/RegExp/lastMatch +original_slug: Web/JavaScript/Referencje/Obiekty/RegExp/lastMatch ---
{{JSRef}} {{non-standard_header}}
diff --git a/files/pl/web/javascript/reference/global_objects/regexp/source/index.html b/files/pl/web/javascript/reference/global_objects/regexp/source/index.html index 78cf4c2a64..c508b9f257 100644 --- a/files/pl/web/javascript/reference/global_objects/regexp/source/index.html +++ b/files/pl/web/javascript/reference/global_objects/regexp/source/index.html @@ -1,12 +1,13 @@ --- title: RegExp.prototype.source -slug: Web/JavaScript/Referencje/Obiekty/RegExp/source +slug: Web/JavaScript/Reference/Global_Objects/RegExp/source tags: - JavaScript - Property - Prototype - RegExp translation_of: Web/JavaScript/Reference/Global_Objects/RegExp/source +original_slug: Web/JavaScript/Referencje/Obiekty/RegExp/source ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/regexp/test/index.html b/files/pl/web/javascript/reference/global_objects/regexp/test/index.html index e654bfb236..8acfb1eae2 100644 --- a/files/pl/web/javascript/reference/global_objects/regexp/test/index.html +++ b/files/pl/web/javascript/reference/global_objects/regexp/test/index.html @@ -1,12 +1,13 @@ --- title: RegExp.prototype.test() -slug: Web/JavaScript/Referencje/Obiekty/RegExp/test +slug: Web/JavaScript/Reference/Global_Objects/RegExp/test tags: - JavaScript - Method - Prototype - RegExp translation_of: Web/JavaScript/Reference/Global_Objects/RegExp/test +original_slug: Web/JavaScript/Referencje/Obiekty/RegExp/test ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/regexp/tosource/index.html b/files/pl/web/javascript/reference/global_objects/regexp/tosource/index.html index 4ac074392b..ae5886df86 100644 --- a/files/pl/web/javascript/reference/global_objects/regexp/tosource/index.html +++ b/files/pl/web/javascript/reference/global_objects/regexp/tosource/index.html @@ -1,12 +1,13 @@ --- title: RegExp.prototype.toSource() -slug: Web/JavaScript/Referencje/Obiekty/RegExp/toSource +slug: Web/JavaScript/Reference/Global_Objects/RegExp/toSource tags: - JavaScript - Method - Prototype - RegExp translation_of: Web/JavaScript/Reference/Global_Objects/RegExp/toSource +original_slug: Web/JavaScript/Referencje/Obiekty/RegExp/toSource ---

{{JSRef}}{{Non-standard_header}}

diff --git a/files/pl/web/javascript/reference/global_objects/regexp/tostring/index.html b/files/pl/web/javascript/reference/global_objects/regexp/tostring/index.html index fb78233ff2..b62621fa71 100644 --- a/files/pl/web/javascript/reference/global_objects/regexp/tostring/index.html +++ b/files/pl/web/javascript/reference/global_objects/regexp/tostring/index.html @@ -1,12 +1,13 @@ --- title: RegExp.prototype.toString() -slug: Web/JavaScript/Referencje/Obiekty/RegExp/toString +slug: Web/JavaScript/Reference/Global_Objects/RegExp/toString tags: - JavaScript - Method - Prototype - RegExp translation_of: Web/JavaScript/Reference/Global_Objects/RegExp/toString +original_slug: Web/JavaScript/Referencje/Obiekty/RegExp/toString ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/set/add/index.html b/files/pl/web/javascript/reference/global_objects/set/add/index.html index 397939f84e..8b143212d7 100644 --- a/files/pl/web/javascript/reference/global_objects/set/add/index.html +++ b/files/pl/web/javascript/reference/global_objects/set/add/index.html @@ -1,6 +1,6 @@ --- title: Set.prototype.add() -slug: Web/JavaScript/Referencje/Obiekty/Set/Set.prototype.add() +slug: Web/JavaScript/Reference/Global_Objects/Set/add tags: - ECMAScript 2015 - JavaScript @@ -8,6 +8,7 @@ tags: - Prototype - set translation_of: Web/JavaScript/Reference/Global_Objects/Set/add +original_slug: Web/JavaScript/Referencje/Obiekty/Set/Set.prototype.add() ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/set/clear/index.html b/files/pl/web/javascript/reference/global_objects/set/clear/index.html index 85ca894da9..32df4660f3 100644 --- a/files/pl/web/javascript/reference/global_objects/set/clear/index.html +++ b/files/pl/web/javascript/reference/global_objects/set/clear/index.html @@ -1,6 +1,6 @@ --- title: Set.prototype.clear() -slug: Web/JavaScript/Referencje/Obiekty/Set/Set.prototype.clear() +slug: Web/JavaScript/Reference/Global_Objects/Set/clear tags: - ECMAScript 2015 - JavaScript @@ -8,6 +8,7 @@ tags: - Prototype - set translation_of: Web/JavaScript/Reference/Global_Objects/Set/clear +original_slug: Web/JavaScript/Referencje/Obiekty/Set/Set.prototype.clear() ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/set/delete/index.html b/files/pl/web/javascript/reference/global_objects/set/delete/index.html index 7071c9e4eb..a9358078f1 100644 --- a/files/pl/web/javascript/reference/global_objects/set/delete/index.html +++ b/files/pl/web/javascript/reference/global_objects/set/delete/index.html @@ -1,6 +1,6 @@ --- title: Set.prototype.delete() -slug: Web/JavaScript/Referencje/Obiekty/Set/Set.prototype.delete() +slug: Web/JavaScript/Reference/Global_Objects/Set/delete tags: - ECMAScript 2015 - JavaScript @@ -8,6 +8,7 @@ tags: - Prototype - set translation_of: Web/JavaScript/Reference/Global_Objects/Set/delete +original_slug: Web/JavaScript/Referencje/Obiekty/Set/Set.prototype.delete() ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/set/index.html b/files/pl/web/javascript/reference/global_objects/set/index.html index ca9cc37a93..995d238f97 100644 --- a/files/pl/web/javascript/reference/global_objects/set/index.html +++ b/files/pl/web/javascript/reference/global_objects/set/index.html @@ -1,6 +1,6 @@ --- title: Set -slug: Web/JavaScript/Referencje/Obiekty/Set +slug: Web/JavaScript/Reference/Global_Objects/Set tags: - ECMAScript 2015 - ECMAScript6 @@ -9,6 +9,7 @@ tags: - Object - set translation_of: Web/JavaScript/Reference/Global_Objects/Set +original_slug: Web/JavaScript/Referencje/Obiekty/Set ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/string/anchor/index.html b/files/pl/web/javascript/reference/global_objects/string/anchor/index.html index 737c385889..3f70573b83 100644 --- a/files/pl/web/javascript/reference/global_objects/string/anchor/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/anchor/index.html @@ -1,12 +1,13 @@ --- title: String.prototype.anchor() -slug: Web/JavaScript/Referencje/Obiekty/String/anchor +slug: Web/JavaScript/Reference/Global_Objects/String/anchor tags: - JavaScript - Method - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/anchor +original_slug: Web/JavaScript/Referencje/Obiekty/String/anchor ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/string/big/index.html b/files/pl/web/javascript/reference/global_objects/string/big/index.html index 62914dfa9c..e0dfbfbf7c 100644 --- a/files/pl/web/javascript/reference/global_objects/string/big/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/big/index.html @@ -1,6 +1,6 @@ --- title: String.prototype.big() -slug: Web/JavaScript/Referencje/Obiekty/String/big +slug: Web/JavaScript/Reference/Global_Objects/String/big tags: - Deprecated - JavaScript @@ -8,6 +8,7 @@ tags: - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/big +original_slug: Web/JavaScript/Referencje/Obiekty/String/big ---
{{JSRef}} {{deprecated_header}}
diff --git a/files/pl/web/javascript/reference/global_objects/string/blink/index.html b/files/pl/web/javascript/reference/global_objects/string/blink/index.html index 056dbc3792..7430744309 100644 --- a/files/pl/web/javascript/reference/global_objects/string/blink/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/blink/index.html @@ -1,6 +1,6 @@ --- title: String.prototype.blink() -slug: Web/JavaScript/Referencje/Obiekty/String/blink +slug: Web/JavaScript/Reference/Global_Objects/String/blink tags: - Deprecated - JavaScript @@ -8,6 +8,7 @@ tags: - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/blink +original_slug: Web/JavaScript/Referencje/Obiekty/String/blink ---
{{JSRef}} {{deprecated_header}}
diff --git a/files/pl/web/javascript/reference/global_objects/string/bold/index.html b/files/pl/web/javascript/reference/global_objects/string/bold/index.html index 0708d5799e..49b5f4446b 100644 --- a/files/pl/web/javascript/reference/global_objects/string/bold/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/bold/index.html @@ -1,6 +1,6 @@ --- title: String.prototype.bold() -slug: Web/JavaScript/Referencje/Obiekty/String/bold +slug: Web/JavaScript/Reference/Global_Objects/String/bold tags: - Deprecated - JavaScript @@ -8,6 +8,7 @@ tags: - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/bold +original_slug: Web/JavaScript/Referencje/Obiekty/String/bold ---

{{JSRef}}{{deprecated_header}}

diff --git a/files/pl/web/javascript/reference/global_objects/string/charat/index.html b/files/pl/web/javascript/reference/global_objects/string/charat/index.html index 30ce5303c2..44526655bd 100644 --- a/files/pl/web/javascript/reference/global_objects/string/charat/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/charat/index.html @@ -1,12 +1,13 @@ --- title: String.prototype.charAt() -slug: Web/JavaScript/Referencje/Obiekty/String/charAt +slug: Web/JavaScript/Reference/Global_Objects/String/charAt tags: - JavaScript - Method - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/charAt +original_slug: Web/JavaScript/Referencje/Obiekty/String/charAt ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/string/charcodeat/index.html b/files/pl/web/javascript/reference/global_objects/string/charcodeat/index.html index 21c7822f12..fefe5418b5 100644 --- a/files/pl/web/javascript/reference/global_objects/string/charcodeat/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/charcodeat/index.html @@ -1,6 +1,6 @@ --- title: String.prototype.charCodeAt() -slug: Web/JavaScript/Referencje/Obiekty/String/charCodeAt +slug: Web/JavaScript/Reference/Global_Objects/String/charCodeAt tags: - JavaScript - Method @@ -8,6 +8,7 @@ tags: - String - Unicode translation_of: Web/JavaScript/Reference/Global_Objects/String/charCodeAt +original_slug: Web/JavaScript/Referencje/Obiekty/String/charCodeAt ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/string/concat/index.html b/files/pl/web/javascript/reference/global_objects/string/concat/index.html index b4361f0fd7..ea0dbf7847 100644 --- a/files/pl/web/javascript/reference/global_objects/string/concat/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/concat/index.html @@ -1,12 +1,13 @@ --- title: String.prototype.concat() -slug: Web/JavaScript/Referencje/Obiekty/String/concat +slug: Web/JavaScript/Reference/Global_Objects/String/concat tags: - JavaScript - Method - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/concat +original_slug: Web/JavaScript/Referencje/Obiekty/String/concat ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/string/fontcolor/index.html b/files/pl/web/javascript/reference/global_objects/string/fontcolor/index.html index 0cc7fa1ccc..4753478194 100644 --- a/files/pl/web/javascript/reference/global_objects/string/fontcolor/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/fontcolor/index.html @@ -1,6 +1,6 @@ --- title: String.prototype.fontcolor() -slug: Web/JavaScript/Referencje/Obiekty/String/fontcolor +slug: Web/JavaScript/Reference/Global_Objects/String/fontcolor tags: - Deprecated - JavaScript @@ -8,6 +8,7 @@ tags: - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/fontcolor +original_slug: Web/JavaScript/Referencje/Obiekty/String/fontcolor ---
{{JSRef}} {{deprecated_header}}
diff --git a/files/pl/web/javascript/reference/global_objects/string/fontsize/index.html b/files/pl/web/javascript/reference/global_objects/string/fontsize/index.html index 3de3c5bb4c..7c15a79def 100644 --- a/files/pl/web/javascript/reference/global_objects/string/fontsize/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/fontsize/index.html @@ -1,6 +1,6 @@ --- title: String.prototype.fontsize() -slug: Web/JavaScript/Referencje/Obiekty/String/fontsize +slug: Web/JavaScript/Reference/Global_Objects/String/fontsize tags: - Deprecated - JavaScript @@ -8,6 +8,7 @@ tags: - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/fontsize +original_slug: Web/JavaScript/Referencje/Obiekty/String/fontsize ---

{{JSRef}}{{ Non-standard_header() }}

diff --git a/files/pl/web/javascript/reference/global_objects/string/fromcharcode/index.html b/files/pl/web/javascript/reference/global_objects/string/fromcharcode/index.html index 7d00613db2..d9a96bafd0 100644 --- a/files/pl/web/javascript/reference/global_objects/string/fromcharcode/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/fromcharcode/index.html @@ -1,12 +1,13 @@ --- title: String.fromCharCode() -slug: Web/JavaScript/Referencje/Obiekty/String/fromCharCode +slug: Web/JavaScript/Reference/Global_Objects/String/fromCharCode tags: - JavaScript - Method - String - Unicode translation_of: Web/JavaScript/Reference/Global_Objects/String/fromCharCode +original_slug: Web/JavaScript/Referencje/Obiekty/String/fromCharCode ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/string/fromcodepoint/index.html b/files/pl/web/javascript/reference/global_objects/string/fromcodepoint/index.html index a8c17af7f1..d929675696 100644 --- a/files/pl/web/javascript/reference/global_objects/string/fromcodepoint/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/fromcodepoint/index.html @@ -1,7 +1,8 @@ --- title: String.fromCodePoint() -slug: Web/JavaScript/Referencje/Obiekty/String/fromCodePoint +slug: Web/JavaScript/Reference/Global_Objects/String/fromCodePoint translation_of: Web/JavaScript/Reference/Global_Objects/String/fromCodePoint +original_slug: Web/JavaScript/Referencje/Obiekty/String/fromCodePoint ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/string/index.html b/files/pl/web/javascript/reference/global_objects/string/index.html index ff27fbc81a..e343b8b35a 100644 --- a/files/pl/web/javascript/reference/global_objects/string/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/index.html @@ -1,10 +1,11 @@ --- title: String -slug: Web/JavaScript/Referencje/Obiekty/String +slug: Web/JavaScript/Reference/Global_Objects/String tags: - JavaScript - String translation_of: Web/JavaScript/Reference/Global_Objects/String +original_slug: Web/JavaScript/Referencje/Obiekty/String ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/string/italics/index.html b/files/pl/web/javascript/reference/global_objects/string/italics/index.html index 016a400805..16c5d77bcb 100644 --- a/files/pl/web/javascript/reference/global_objects/string/italics/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/italics/index.html @@ -1,6 +1,6 @@ --- title: String.prototype.italics() -slug: Web/JavaScript/Referencje/Obiekty/String/italics +slug: Web/JavaScript/Reference/Global_Objects/String/italics tags: - Deprecated - JavaScript @@ -8,6 +8,7 @@ tags: - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/italics +original_slug: Web/JavaScript/Referencje/Obiekty/String/italics ---

{{JSRef}}{{deprecated_header}}

diff --git a/files/pl/web/javascript/reference/global_objects/string/link/index.html b/files/pl/web/javascript/reference/global_objects/string/link/index.html index 6d8baeb078..dddd49ecf7 100644 --- a/files/pl/web/javascript/reference/global_objects/string/link/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/link/index.html @@ -1,12 +1,13 @@ --- title: String.prototype.link() -slug: Web/JavaScript/Referencje/Obiekty/String/link +slug: Web/JavaScript/Reference/Global_Objects/String/link tags: - JavaScript - Method - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/link +original_slug: Web/JavaScript/Referencje/Obiekty/String/link ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/string/repeat/index.html b/files/pl/web/javascript/reference/global_objects/string/repeat/index.html index 76bf932753..a6542a4bb7 100644 --- a/files/pl/web/javascript/reference/global_objects/string/repeat/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/repeat/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.repeat() -slug: Web/JavaScript/Referencje/Obiekty/String/repeat +slug: Web/JavaScript/Reference/Global_Objects/String/repeat translation_of: Web/JavaScript/Reference/Global_Objects/String/repeat +original_slug: Web/JavaScript/Referencje/Obiekty/String/repeat ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/string/search/index.html b/files/pl/web/javascript/reference/global_objects/string/search/index.html index 29b9d8e8fb..ab4d438903 100644 --- a/files/pl/web/javascript/reference/global_objects/string/search/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/search/index.html @@ -1,12 +1,13 @@ --- title: String.prototype.search() -slug: Web/JavaScript/Referencje/Obiekty/String/search +slug: Web/JavaScript/Reference/Global_Objects/String/search tags: - JavaScript - Method - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/search +original_slug: Web/JavaScript/Referencje/Obiekty/String/search ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/string/slice/index.html b/files/pl/web/javascript/reference/global_objects/string/slice/index.html index 4fca8a78ca..65ae41a685 100644 --- a/files/pl/web/javascript/reference/global_objects/string/slice/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/slice/index.html @@ -1,12 +1,13 @@ --- title: String.prototype.slice() -slug: Web/JavaScript/Referencje/Obiekty/String/slice +slug: Web/JavaScript/Reference/Global_Objects/String/slice tags: - JavaScript - Method - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/slice +original_slug: Web/JavaScript/Referencje/Obiekty/String/slice ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/string/small/index.html b/files/pl/web/javascript/reference/global_objects/string/small/index.html index be9d33a5bb..176d59deed 100644 --- a/files/pl/web/javascript/reference/global_objects/string/small/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/small/index.html @@ -1,9 +1,10 @@ --- title: String.prototype.small() -slug: Web/JavaScript/Referencje/Obiekty/String/small +slug: Web/JavaScript/Reference/Global_Objects/String/small tags: - JavaScript translation_of: Web/JavaScript/Reference/Global_Objects/String/small +original_slug: Web/JavaScript/Referencje/Obiekty/String/small ---
{{JSRef}} {{deprecated_header}}
diff --git a/files/pl/web/javascript/reference/global_objects/string/strike/index.html b/files/pl/web/javascript/reference/global_objects/string/strike/index.html index cef74018f1..09e3615055 100644 --- a/files/pl/web/javascript/reference/global_objects/string/strike/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/strike/index.html @@ -1,12 +1,13 @@ --- title: String.prototype.strike() -slug: Web/JavaScript/Referencje/Obiekty/String/strike +slug: Web/JavaScript/Reference/Global_Objects/String/strike tags: - JavaScript - Method - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/strike +original_slug: Web/JavaScript/Referencje/Obiekty/String/strike ---

{{JSRef}}{{deprecated_header}}

diff --git a/files/pl/web/javascript/reference/global_objects/string/sub/index.html b/files/pl/web/javascript/reference/global_objects/string/sub/index.html index 4c36c53a39..94bfb8722e 100644 --- a/files/pl/web/javascript/reference/global_objects/string/sub/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/sub/index.html @@ -1,12 +1,13 @@ --- title: String.prototype.sub() -slug: Web/JavaScript/Referencje/Obiekty/String/sub +slug: Web/JavaScript/Reference/Global_Objects/String/sub tags: - JavaScript - Method - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/sub +original_slug: Web/JavaScript/Referencje/Obiekty/String/sub ---

{{JSRef}}{{deprecated_header}}

diff --git a/files/pl/web/javascript/reference/global_objects/string/substr/index.html b/files/pl/web/javascript/reference/global_objects/string/substr/index.html index 61487db384..de389081b7 100644 --- a/files/pl/web/javascript/reference/global_objects/string/substr/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/substr/index.html @@ -1,12 +1,13 @@ --- title: String.prototype.substr() -slug: Web/JavaScript/Referencje/Obiekty/String/substr +slug: Web/JavaScript/Reference/Global_Objects/String/substr tags: - JavaScript - Method - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/substr +original_slug: Web/JavaScript/Referencje/Obiekty/String/substr ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/string/substring/index.html b/files/pl/web/javascript/reference/global_objects/string/substring/index.html index 5a446e0225..718663d8f4 100644 --- a/files/pl/web/javascript/reference/global_objects/string/substring/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/substring/index.html @@ -1,12 +1,13 @@ --- title: String.prototype.substring() -slug: Web/JavaScript/Referencje/Obiekty/String/substring +slug: Web/JavaScript/Reference/Global_Objects/String/substring tags: - JavaScript - Method - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/substring +original_slug: Web/JavaScript/Referencje/Obiekty/String/substring ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/string/sup/index.html b/files/pl/web/javascript/reference/global_objects/string/sup/index.html index dbf33ea3ed..50aca68b97 100644 --- a/files/pl/web/javascript/reference/global_objects/string/sup/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/sup/index.html @@ -1,6 +1,6 @@ --- title: String.prototype.sup() -slug: Web/JavaScript/Referencje/Obiekty/String/sup +slug: Web/JavaScript/Reference/Global_Objects/String/sup tags: - Deprecated - JavaScript @@ -8,6 +8,7 @@ tags: - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/sup +original_slug: Web/JavaScript/Referencje/Obiekty/String/sup ---

{{JSRef}}{{deprecated_header}}

diff --git a/files/pl/web/javascript/reference/global_objects/string/tolowercase/index.html b/files/pl/web/javascript/reference/global_objects/string/tolowercase/index.html index 0b871b9ca6..8cb6d10a10 100644 --- a/files/pl/web/javascript/reference/global_objects/string/tolowercase/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/tolowercase/index.html @@ -1,12 +1,13 @@ --- title: String.prototype.toLowerCase() -slug: Web/JavaScript/Referencje/Obiekty/String/toLowerCase +slug: Web/JavaScript/Reference/Global_Objects/String/toLowerCase tags: - JavaScript - Method - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/toLowerCase +original_slug: Web/JavaScript/Referencje/Obiekty/String/toLowerCase ---

{{jsref}}

diff --git a/files/pl/web/javascript/reference/global_objects/string/tosource/index.html b/files/pl/web/javascript/reference/global_objects/string/tosource/index.html index cb372d673c..3540727b00 100644 --- a/files/pl/web/javascript/reference/global_objects/string/tosource/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/tosource/index.html @@ -1,6 +1,6 @@ --- title: String.prototype.toSource() -slug: Web/JavaScript/Referencje/Obiekty/String/toSource +slug: Web/JavaScript/Reference/Global_Objects/String/toSource tags: - JavaScript - Method @@ -8,6 +8,7 @@ tags: - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/toSource +original_slug: Web/JavaScript/Referencje/Obiekty/String/toSource ---

{{JSRef}}{{non-standard_header}}

diff --git a/files/pl/web/javascript/reference/global_objects/string/tostring/index.html b/files/pl/web/javascript/reference/global_objects/string/tostring/index.html index 16028dff15..ab19cbe40c 100644 --- a/files/pl/web/javascript/reference/global_objects/string/tostring/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/tostring/index.html @@ -1,12 +1,13 @@ --- title: String.protype.toString() -slug: Web/JavaScript/Referencje/Obiekty/String/toString +slug: Web/JavaScript/Reference/Global_Objects/String/toString tags: - JavaScript - Method - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/toString +original_slug: Web/JavaScript/Referencje/Obiekty/String/toString ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/string/touppercase/index.html b/files/pl/web/javascript/reference/global_objects/string/touppercase/index.html index 4b792076fe..f56902e420 100644 --- a/files/pl/web/javascript/reference/global_objects/string/touppercase/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/touppercase/index.html @@ -1,12 +1,13 @@ --- title: String.prototype.toUpperCase() -slug: Web/JavaScript/Referencje/Obiekty/String/toUpperCase +slug: Web/JavaScript/Reference/Global_Objects/String/toUpperCase tags: - JavaScript - Method - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/toUpperCase +original_slug: Web/JavaScript/Referencje/Obiekty/String/toUpperCase ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/string/valueof/index.html b/files/pl/web/javascript/reference/global_objects/string/valueof/index.html index 1eda0e3021..9d7e986682 100644 --- a/files/pl/web/javascript/reference/global_objects/string/valueof/index.html +++ b/files/pl/web/javascript/reference/global_objects/string/valueof/index.html @@ -1,12 +1,13 @@ --- title: String.prototype.valueOf() -slug: Web/JavaScript/Referencje/Obiekty/String/valueOf +slug: Web/JavaScript/Reference/Global_Objects/String/valueOf tags: - JavaScript - Method - Property - String translation_of: Web/JavaScript/Reference/Global_Objects/String/valueOf +original_slug: Web/JavaScript/Referencje/Obiekty/String/valueOf ---

{{JSRef}}

diff --git a/files/pl/web/javascript/reference/global_objects/symbol/index.html b/files/pl/web/javascript/reference/global_objects/symbol/index.html index 4124cb2a46..4ff4612b3f 100644 --- a/files/pl/web/javascript/reference/global_objects/symbol/index.html +++ b/files/pl/web/javascript/reference/global_objects/symbol/index.html @@ -1,7 +1,8 @@ --- title: Symbol -slug: Web/JavaScript/Referencje/Obiekty/Symbol +slug: Web/JavaScript/Reference/Global_Objects/Symbol translation_of: Web/JavaScript/Reference/Global_Objects/Symbol +original_slug: Web/JavaScript/Referencje/Obiekty/Symbol ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/syntaxerror/index.html b/files/pl/web/javascript/reference/global_objects/syntaxerror/index.html index c8a65cd46b..eaef4344ce 100644 --- a/files/pl/web/javascript/reference/global_objects/syntaxerror/index.html +++ b/files/pl/web/javascript/reference/global_objects/syntaxerror/index.html @@ -1,6 +1,6 @@ --- title: SyntaxError -slug: Web/JavaScript/Referencje/Obiekty/SyntaxError +slug: Web/JavaScript/Reference/Global_Objects/SyntaxError tags: - Błąd składniowy - JavaScript @@ -9,6 +9,7 @@ tags: - Referencja - SyntaxError translation_of: Web/JavaScript/Reference/Global_Objects/SyntaxError +original_slug: Web/JavaScript/Referencje/Obiekty/SyntaxError ---
{{JSRef}}
diff --git a/files/pl/web/javascript/reference/global_objects/uint16array/index.html b/files/pl/web/javascript/reference/global_objects/uint16array/index.html index ef744c5848..759ad9d56e 100644 --- a/files/pl/web/javascript/reference/global_objects/uint16array/index.html +++ b/files/pl/web/javascript/reference/global_objects/uint16array/index.html @@ -1,7 +1,8 @@ --- title: Uint16Array -slug: Web/JavaScript/Referencje/Obiekty/Uint16Array +slug: Web/JavaScript/Reference/Global_Objects/Uint16Array translation_of: Web/JavaScript/Reference/Global_Objects/Uint16Array +original_slug: Web/JavaScript/Referencje/Obiekty/Uint16Array ---
{{JSRef("Global_Objects", "TypedArray", "Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array")}}
diff --git a/files/pl/web/javascript/reference/global_objects/undefined/index.html b/files/pl/web/javascript/reference/global_objects/undefined/index.html index 9b9460985f..f2e31e90c2 100644 --- a/files/pl/web/javascript/reference/global_objects/undefined/index.html +++ b/files/pl/web/javascript/reference/global_objects/undefined/index.html @@ -1,9 +1,10 @@ --- title: undefined -slug: Web/JavaScript/Referencje/Obiekty/undefined +slug: Web/JavaScript/Reference/Global_Objects/undefined tags: - JavaScript translation_of: Web/JavaScript/Reference/Global_Objects/undefined +original_slug: Web/JavaScript/Referencje/Obiekty/undefined ---
diff --git a/files/pl/web/javascript/reference/index.html b/files/pl/web/javascript/reference/index.html index e493d4ad80..b73167e191 100644 --- a/files/pl/web/javascript/reference/index.html +++ b/files/pl/web/javascript/reference/index.html @@ -1,6 +1,6 @@ --- title: Dokumentacja referencyjna JavaScript -slug: Web/JavaScript/Referencje +slug: Web/JavaScript/Reference tags: - AJAX - Dokumentacja_JavaScript @@ -8,6 +8,7 @@ tags: - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference +original_slug: Web/JavaScript/Referencje ---

{{JsSidebar}}

diff --git a/files/pl/web/javascript/reference/lexical_grammar/index.html b/files/pl/web/javascript/reference/lexical_grammar/index.html index ad8e73f32c..e91df42d84 100644 --- a/files/pl/web/javascript/reference/lexical_grammar/index.html +++ b/files/pl/web/javascript/reference/lexical_grammar/index.html @@ -1,6 +1,6 @@ --- title: Komentarz -slug: Web/JavaScript/Referencje/Komentarz +slug: Web/JavaScript/Reference/Lexical_grammar tags: - Dokumentacja_JavaScript - Dokumentacje @@ -8,6 +8,7 @@ tags: - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Lexical_grammar#Comments translation_of_original: Web/JavaScript/Reference/Code_comments +original_slug: Web/JavaScript/Referencje/Komentarz ---

 

Podsumowanie

diff --git a/files/pl/web/javascript/reference/operators/comma_operator/index.html b/files/pl/web/javascript/reference/operators/comma_operator/index.html index b037dcfdc8..b0614efae6 100644 --- a/files/pl/web/javascript/reference/operators/comma_operator/index.html +++ b/files/pl/web/javascript/reference/operators/comma_operator/index.html @@ -1,12 +1,13 @@ --- title: Operator przecinkowy -slug: Web/JavaScript/Referencje/Operatory/Operator_przecinkowy +slug: Web/JavaScript/Reference/Operators/Comma_Operator tags: - JavaScript - Operator - Przecinek - Przecinkowy translation_of: Web/JavaScript/Reference/Operators/Comma_Operator +original_slug: Web/JavaScript/Referencje/Operatory/Operator_przecinkowy ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/web/javascript/reference/operators/conditional_operator/index.html b/files/pl/web/javascript/reference/operators/conditional_operator/index.html index b5b00d0aa1..5714f03aed 100644 --- a/files/pl/web/javascript/reference/operators/conditional_operator/index.html +++ b/files/pl/web/javascript/reference/operators/conditional_operator/index.html @@ -1,9 +1,10 @@ --- title: Operator warunkowy -slug: Web/JavaScript/Referencje/Operatory/Operator_warunkowy +slug: Web/JavaScript/Reference/Operators/Conditional_Operator tags: - JavaScript translation_of: Web/JavaScript/Reference/Operators/Conditional_Operator +original_slug: Web/JavaScript/Referencje/Operatory/Operator_warunkowy ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/web/javascript/reference/operators/delete/index.html b/files/pl/web/javascript/reference/operators/delete/index.html index d2a3679804..c3652b8a45 100644 --- a/files/pl/web/javascript/reference/operators/delete/index.html +++ b/files/pl/web/javascript/reference/operators/delete/index.html @@ -1,9 +1,10 @@ --- title: Operator delete -slug: Web/JavaScript/Referencje/Operatory/Operator_delete +slug: Web/JavaScript/Reference/Operators/delete tags: - JavaScript translation_of: Web/JavaScript/Reference/Operators/delete +original_slug: Web/JavaScript/Referencje/Operatory/Operator_delete ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/web/javascript/reference/operators/destructuring_assignment/index.html b/files/pl/web/javascript/reference/operators/destructuring_assignment/index.html index 851acea725..1cb7728404 100644 --- a/files/pl/web/javascript/reference/operators/destructuring_assignment/index.html +++ b/files/pl/web/javascript/reference/operators/destructuring_assignment/index.html @@ -1,7 +1,8 @@ --- title: Przypisanie destrukturyzujące -slug: Web/JavaScript/Referencje/Operatory/Destructuring_assignment +slug: Web/JavaScript/Reference/Operators/Destructuring_assignment translation_of: Web/JavaScript/Reference/Operators/Destructuring_assignment +original_slug: Web/JavaScript/Referencje/Operatory/Destructuring_assignment ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/web/javascript/reference/operators/function/index.html b/files/pl/web/javascript/reference/operators/function/index.html index 1d13d1a3c0..33d31d0306 100644 --- a/files/pl/web/javascript/reference/operators/function/index.html +++ b/files/pl/web/javascript/reference/operators/function/index.html @@ -1,12 +1,13 @@ --- title: Operator function -slug: Web/JavaScript/Referencje/Operatory/Operator_function +slug: Web/JavaScript/Reference/Operators/function tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Operators/function +original_slug: Web/JavaScript/Referencje/Operatory/Operator_function ---

 

diff --git a/files/pl/web/javascript/reference/operators/function_star_/index.html b/files/pl/web/javascript/reference/operators/function_star_/index.html index 52d7a67c98..027e2d2c2b 100644 --- a/files/pl/web/javascript/reference/operators/function_star_/index.html +++ b/files/pl/web/javascript/reference/operators/function_star_/index.html @@ -1,6 +1,6 @@ --- title: wyrażenie function* -slug: Web/JavaScript/Referencje/Operatory/function* +slug: Web/JavaScript/Reference/Operators/function* tags: - ECMAScript2015 - Iterator @@ -8,6 +8,7 @@ tags: - Operator - funkcja translation_of: Web/JavaScript/Reference/Operators/function* +original_slug: Web/JavaScript/Referencje/Operatory/function* ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/web/javascript/reference/operators/grouping/index.html b/files/pl/web/javascript/reference/operators/grouping/index.html index 5a076c3fb0..41d40d22a5 100644 --- a/files/pl/web/javascript/reference/operators/grouping/index.html +++ b/files/pl/web/javascript/reference/operators/grouping/index.html @@ -1,10 +1,11 @@ --- title: Operator grupowania -slug: Web/JavaScript/Referencje/Operatory/Grouping +slug: Web/JavaScript/Reference/Operators/Grouping tags: - JavaScript - Operator translation_of: Web/JavaScript/Reference/Operators/Grouping +original_slug: Web/JavaScript/Referencje/Operatory/Grouping ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/web/javascript/reference/operators/in/index.html b/files/pl/web/javascript/reference/operators/in/index.html index 0a8ef0f068..adaff558e3 100644 --- a/files/pl/web/javascript/reference/operators/in/index.html +++ b/files/pl/web/javascript/reference/operators/in/index.html @@ -1,12 +1,13 @@ --- title: Operator in -slug: Web/JavaScript/Referencje/Operatory/Operator_in +slug: Web/JavaScript/Reference/Operators/in tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Operators/in +original_slug: Web/JavaScript/Referencje/Operatory/Operator_in ---

 

Podsumowanie

diff --git a/files/pl/web/javascript/reference/operators/index.html b/files/pl/web/javascript/reference/operators/index.html index 016c55af35..94b7e05429 100644 --- a/files/pl/web/javascript/reference/operators/index.html +++ b/files/pl/web/javascript/reference/operators/index.html @@ -1,10 +1,11 @@ --- title: Operatory -slug: Web/JavaScript/Referencje/Operatory +slug: Web/JavaScript/Reference/Operators tags: - JavaScript - Operators translation_of: Web/JavaScript/Reference/Operators +original_slug: Web/JavaScript/Referencje/Operatory ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/web/javascript/reference/operators/instanceof/index.html b/files/pl/web/javascript/reference/operators/instanceof/index.html index d9b83cd838..bd98d29e0f 100644 --- a/files/pl/web/javascript/reference/operators/instanceof/index.html +++ b/files/pl/web/javascript/reference/operators/instanceof/index.html @@ -1,6 +1,6 @@ --- title: Operator instanceof -slug: Web/JavaScript/Referencje/Operatory/Operator_instanceof +slug: Web/JavaScript/Reference/Operators/instanceof tags: - Dokumentacja_JavaScript - Dokumentacje @@ -8,6 +8,7 @@ tags: - Strony_wymagające_dopracowania - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Operators/instanceof +original_slug: Web/JavaScript/Referencje/Operatory/Operator_instanceof ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/web/javascript/reference/operators/new.target/index.html b/files/pl/web/javascript/reference/operators/new.target/index.html index 8b60074e92..f992f20edb 100644 --- a/files/pl/web/javascript/reference/operators/new.target/index.html +++ b/files/pl/web/javascript/reference/operators/new.target/index.html @@ -1,7 +1,8 @@ --- title: new.target -slug: Web/JavaScript/Referencje/Operatory/new.target +slug: Web/JavaScript/Reference/Operators/new.target translation_of: Web/JavaScript/Reference/Operators/new.target +original_slug: Web/JavaScript/Referencje/Operatory/new.target ---
{{JSSidebar("Operators")}}
diff --git a/files/pl/web/javascript/reference/operators/new/index.html b/files/pl/web/javascript/reference/operators/new/index.html index e6153d3a69..15e6d37549 100644 --- a/files/pl/web/javascript/reference/operators/new/index.html +++ b/files/pl/web/javascript/reference/operators/new/index.html @@ -1,6 +1,6 @@ --- title: Operator new -slug: Web/JavaScript/Referencje/Operatory/Operator_new +slug: Web/JavaScript/Reference/Operators/new tags: - Dokumentacja_JavaScript - Dokumentacje @@ -8,6 +8,7 @@ tags: - Strony_wymagające_dopracowania - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Operators/new +original_slug: Web/JavaScript/Referencje/Operatory/Operator_new ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/web/javascript/reference/operators/nullish_coalescing_operator/index.html b/files/pl/web/javascript/reference/operators/nullish_coalescing_operator/index.html index c8a264e50e..8ae6ee56a2 100644 --- a/files/pl/web/javascript/reference/operators/nullish_coalescing_operator/index.html +++ b/files/pl/web/javascript/reference/operators/nullish_coalescing_operator/index.html @@ -1,6 +1,6 @@ --- title: Operator null'owego scalania (??) -slug: Web/JavaScript/Referencje/Operatory/Nullish_coalescing_operator +slug: Web/JavaScript/Reference/Operators/Nullish_coalescing_operator tags: - JavaScript - Language feature @@ -8,6 +8,7 @@ tags: - Reference - nullish coalescing translation_of: Web/JavaScript/Reference/Operators/Nullish_coalescing_operator +original_slug: Web/JavaScript/Referencje/Operatory/Nullish_coalescing_operator ---

{{JSSidebar("Operators")}}

diff --git a/files/pl/web/javascript/reference/operators/object_initializer/index.html b/files/pl/web/javascript/reference/operators/object_initializer/index.html index 4148cc07d1..545c4130bb 100644 --- a/files/pl/web/javascript/reference/operators/object_initializer/index.html +++ b/files/pl/web/javascript/reference/operators/object_initializer/index.html @@ -1,7 +1,8 @@ --- title: Inicjalizator obiektu -slug: Web/JavaScript/Referencje/Operatory/Object_initializer +slug: Web/JavaScript/Reference/Operators/Object_initializer translation_of: Web/JavaScript/Reference/Operators/Object_initializer +original_slug: Web/JavaScript/Referencje/Operatory/Object_initializer ---
{{JsSidebar("Operators")}}
diff --git a/files/pl/web/javascript/reference/operators/operator_precedence/index.html b/files/pl/web/javascript/reference/operators/operator_precedence/index.html index 87765f3e1a..5b377584c9 100644 --- a/files/pl/web/javascript/reference/operators/operator_precedence/index.html +++ b/files/pl/web/javascript/reference/operators/operator_precedence/index.html @@ -1,11 +1,12 @@ --- title: Pierwszeństwo operatorów -slug: Web/JavaScript/Referencje/Operatory/Pierwszeństwo_operatorów +slug: Web/JavaScript/Reference/Operators/Operator_Precedence tags: - JavaScript - Operator - pierwszeństwo translation_of: Web/JavaScript/Reference/Operators/Operator_Precedence +original_slug: Web/JavaScript/Referencje/Operatory/Pierwszeństwo_operatorów ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/web/javascript/reference/operators/pipeline_operator/index.html b/files/pl/web/javascript/reference/operators/pipeline_operator/index.html index 9bc36390af..6f62fbda6d 100644 --- a/files/pl/web/javascript/reference/operators/pipeline_operator/index.html +++ b/files/pl/web/javascript/reference/operators/pipeline_operator/index.html @@ -1,11 +1,12 @@ --- title: Operator potoku -slug: Web/JavaScript/Referencje/Operatory/Operator_potoku +slug: Web/JavaScript/Reference/Operators/Pipeline_operator tags: - JavaScript - Operator - ekxperymentalny translation_of: Web/JavaScript/Reference/Operators/Pipeline_operator +original_slug: Web/JavaScript/Referencje/Operatory/Operator_potoku ---
{{jsSidebar("Operators")}} {{SeeCompatTable}}
diff --git a/files/pl/web/javascript/reference/operators/property_accessors/index.html b/files/pl/web/javascript/reference/operators/property_accessors/index.html index 5db4669011..2f9a053fd8 100644 --- a/files/pl/web/javascript/reference/operators/property_accessors/index.html +++ b/files/pl/web/javascript/reference/operators/property_accessors/index.html @@ -1,10 +1,11 @@ --- title: Operatory pamięci -slug: Web/JavaScript/Referencje/Operatory/Operatory_pamięci +slug: Web/JavaScript/Reference/Operators/Property_Accessors tags: - JavaScript - Operator translation_of: Web/JavaScript/Reference/Operators/Property_Accessors +original_slug: Web/JavaScript/Referencje/Operatory/Operatory_pamięci ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/web/javascript/reference/operators/spread_syntax/index.html b/files/pl/web/javascript/reference/operators/spread_syntax/index.html index a45d730722..fe872cea4c 100644 --- a/files/pl/web/javascript/reference/operators/spread_syntax/index.html +++ b/files/pl/web/javascript/reference/operators/spread_syntax/index.html @@ -1,7 +1,8 @@ --- title: Składnia rozwinięcia -slug: Web/JavaScript/Referencje/Operatory/Składnia_rozwinięcia +slug: Web/JavaScript/Reference/Operators/Spread_syntax translation_of: Web/JavaScript/Reference/Operators/Spread_syntax +original_slug: Web/JavaScript/Referencje/Operatory/Składnia_rozwinięcia ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/web/javascript/reference/operators/super/index.html b/files/pl/web/javascript/reference/operators/super/index.html index c217af33e9..d3b49b5886 100644 --- a/files/pl/web/javascript/reference/operators/super/index.html +++ b/files/pl/web/javascript/reference/operators/super/index.html @@ -1,7 +1,8 @@ --- title: super -slug: Web/JavaScript/Referencje/Operatory/super +slug: Web/JavaScript/Reference/Operators/super translation_of: Web/JavaScript/Reference/Operators/super +original_slug: Web/JavaScript/Referencje/Operatory/super ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/web/javascript/reference/operators/this/index.html b/files/pl/web/javascript/reference/operators/this/index.html index 523e210cb6..427d3f843e 100644 --- a/files/pl/web/javascript/reference/operators/this/index.html +++ b/files/pl/web/javascript/reference/operators/this/index.html @@ -1,7 +1,8 @@ --- title: this -slug: Web/JavaScript/Referencje/Operatory/this +slug: Web/JavaScript/Reference/Operators/this translation_of: Web/JavaScript/Reference/Operators/this +original_slug: Web/JavaScript/Referencje/Operatory/this ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/web/javascript/reference/operators/typeof/index.html b/files/pl/web/javascript/reference/operators/typeof/index.html index dfb169a9b5..d842ce1751 100644 --- a/files/pl/web/javascript/reference/operators/typeof/index.html +++ b/files/pl/web/javascript/reference/operators/typeof/index.html @@ -1,12 +1,13 @@ --- title: Operator typeof -slug: Web/JavaScript/Referencje/Operatory/Operator_typeof +slug: Web/JavaScript/Reference/Operators/typeof tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Operators/typeof +original_slug: Web/JavaScript/Referencje/Operatory/Operator_typeof ---

 

diff --git a/files/pl/web/javascript/reference/operators/void/index.html b/files/pl/web/javascript/reference/operators/void/index.html index 65b3fe8fa2..7170f6a91e 100644 --- a/files/pl/web/javascript/reference/operators/void/index.html +++ b/files/pl/web/javascript/reference/operators/void/index.html @@ -1,12 +1,13 @@ --- title: Operator void -slug: Web/JavaScript/Referencje/Operatory/Operator_void +slug: Web/JavaScript/Reference/Operators/void tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Operators/void +original_slug: Web/JavaScript/Referencje/Operatory/Operator_void ---

 

diff --git a/files/pl/web/javascript/reference/operators/yield/index.html b/files/pl/web/javascript/reference/operators/yield/index.html index 8d814a5aa8..05d2999160 100644 --- a/files/pl/web/javascript/reference/operators/yield/index.html +++ b/files/pl/web/javascript/reference/operators/yield/index.html @@ -1,7 +1,8 @@ --- title: yield -slug: Web/JavaScript/Referencje/Operatory/yield +slug: Web/JavaScript/Reference/Operators/yield translation_of: Web/JavaScript/Reference/Operators/yield +original_slug: Web/JavaScript/Referencje/Operatory/yield ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/web/javascript/reference/operators/yield_star_/index.html b/files/pl/web/javascript/reference/operators/yield_star_/index.html index ddef530622..e27a1c3aca 100644 --- a/files/pl/web/javascript/reference/operators/yield_star_/index.html +++ b/files/pl/web/javascript/reference/operators/yield_star_/index.html @@ -1,7 +1,8 @@ --- title: yield* -slug: Web/JavaScript/Referencje/Operatory/yield* +slug: Web/JavaScript/Reference/Operators/yield* translation_of: Web/JavaScript/Reference/Operators/yield* +original_slug: Web/JavaScript/Referencje/Operatory/yield* ---
{{jsSidebar("Operators")}}
diff --git a/files/pl/web/javascript/reference/statements/async_function/index.html b/files/pl/web/javascript/reference/statements/async_function/index.html index 95b488405e..75666ca091 100644 --- a/files/pl/web/javascript/reference/statements/async_function/index.html +++ b/files/pl/web/javascript/reference/statements/async_function/index.html @@ -1,7 +1,8 @@ --- title: funkcja async -slug: Web/JavaScript/Referencje/Polecenia/funkcja_async +slug: Web/JavaScript/Reference/Statements/async_function translation_of: Web/JavaScript/Reference/Statements/async_function +original_slug: Web/JavaScript/Referencje/Polecenia/funkcja_async ---
{{jsSidebar("Statements")}}
diff --git a/files/pl/web/javascript/reference/statements/block/index.html b/files/pl/web/javascript/reference/statements/block/index.html index bbc5c7e4fb..fa96c171fe 100644 --- a/files/pl/web/javascript/reference/statements/block/index.html +++ b/files/pl/web/javascript/reference/statements/block/index.html @@ -1,12 +1,13 @@ --- title: block -slug: Web/JavaScript/Referencje/Polecenia/block +slug: Web/JavaScript/Reference/Statements/block tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Statements/block +original_slug: Web/JavaScript/Referencje/Polecenia/block ---

Blok instrukcji jest stosowany do zgrupowania zero lub więcej instrukcji. Blok jest ograniczony parą nawiasów klamrowych i opcjonalnie może posiadać etykietę.

diff --git a/files/pl/web/javascript/reference/statements/break/index.html b/files/pl/web/javascript/reference/statements/break/index.html index 661b130d71..3d78bf4f1a 100644 --- a/files/pl/web/javascript/reference/statements/break/index.html +++ b/files/pl/web/javascript/reference/statements/break/index.html @@ -1,12 +1,13 @@ --- title: break -slug: Web/JavaScript/Referencje/Polecenia/break +slug: Web/JavaScript/Reference/Statements/break tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Statements/break +original_slug: Web/JavaScript/Referencje/Polecenia/break ---

diff --git a/files/pl/web/javascript/reference/statements/class/index.html b/files/pl/web/javascript/reference/statements/class/index.html index 05cdb7b2d4..a073ac3959 100644 --- a/files/pl/web/javascript/reference/statements/class/index.html +++ b/files/pl/web/javascript/reference/statements/class/index.html @@ -1,7 +1,8 @@ --- title: class -slug: Web/JavaScript/Referencje/Polecenia/class +slug: Web/JavaScript/Reference/Statements/class translation_of: Web/JavaScript/Reference/Statements/class +original_slug: Web/JavaScript/Referencje/Polecenia/class ---
{{jsSidebar("Statements")}}
diff --git a/files/pl/web/javascript/reference/statements/const/index.html b/files/pl/web/javascript/reference/statements/const/index.html index ead1ca32fb..ee672c1eee 100644 --- a/files/pl/web/javascript/reference/statements/const/index.html +++ b/files/pl/web/javascript/reference/statements/const/index.html @@ -1,12 +1,13 @@ --- title: const -slug: Web/JavaScript/Referencje/Polecenia/const +slug: Web/JavaScript/Reference/Statements/const tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Statements/const +original_slug: Web/JavaScript/Referencje/Polecenia/const ---

diff --git a/files/pl/web/javascript/reference/statements/continue/index.html b/files/pl/web/javascript/reference/statements/continue/index.html index b6c2a05d94..3087e1b374 100644 --- a/files/pl/web/javascript/reference/statements/continue/index.html +++ b/files/pl/web/javascript/reference/statements/continue/index.html @@ -1,11 +1,12 @@ --- title: continue -slug: Web/JavaScript/Referencje/Polecenia/continue +slug: Web/JavaScript/Reference/Statements/continue tags: - JavaScript - instrukcja - polecenie translation_of: Web/JavaScript/Reference/Statements/continue +original_slug: Web/JavaScript/Referencje/Polecenia/continue ---
{{jsSidebar("Statements")}}
diff --git a/files/pl/web/javascript/reference/statements/debugger/index.html b/files/pl/web/javascript/reference/statements/debugger/index.html index b4fe9548a7..ffc338c1f0 100644 --- a/files/pl/web/javascript/reference/statements/debugger/index.html +++ b/files/pl/web/javascript/reference/statements/debugger/index.html @@ -1,7 +1,8 @@ --- title: debugger -slug: Web/JavaScript/Referencje/Polecenia/debugger +slug: Web/JavaScript/Reference/Statements/debugger translation_of: Web/JavaScript/Reference/Statements/debugger +original_slug: Web/JavaScript/Referencje/Polecenia/debugger ---
{{jsSidebar("Statements")}}
diff --git a/files/pl/web/javascript/reference/statements/do...while/index.html b/files/pl/web/javascript/reference/statements/do...while/index.html index a57caf17ee..4ccd8b8666 100644 --- a/files/pl/web/javascript/reference/statements/do...while/index.html +++ b/files/pl/web/javascript/reference/statements/do...while/index.html @@ -1,12 +1,13 @@ --- title: do...while -slug: Web/JavaScript/Referencje/Polecenia/do...while +slug: Web/JavaScript/Reference/Statements/do...while tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Statements/do...while +original_slug: Web/JavaScript/Referencje/Polecenia/do...while ---

diff --git a/files/pl/web/javascript/reference/statements/empty/index.html b/files/pl/web/javascript/reference/statements/empty/index.html index 4c55c3f4dd..f38b0612c3 100644 --- a/files/pl/web/javascript/reference/statements/empty/index.html +++ b/files/pl/web/javascript/reference/statements/empty/index.html @@ -1,11 +1,12 @@ --- title: empty -slug: Web/JavaScript/Referencje/Polecenia/Empty +slug: Web/JavaScript/Reference/Statements/Empty tags: - JavaScript - funkcja języka - wyrażenie translation_of: Web/JavaScript/Reference/Statements/Empty +original_slug: Web/JavaScript/Referencje/Polecenia/Empty ---
{{jsSidebar("Statements")}}
diff --git a/files/pl/web/javascript/reference/statements/export/index.html b/files/pl/web/javascript/reference/statements/export/index.html index 3b29f1987b..0b3aaa1bae 100644 --- a/files/pl/web/javascript/reference/statements/export/index.html +++ b/files/pl/web/javascript/reference/statements/export/index.html @@ -1,12 +1,13 @@ --- title: export -slug: Web/JavaScript/Referencje/Polecenia/export +slug: Web/JavaScript/Reference/Statements/export tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Statements/export +original_slug: Web/JavaScript/Referencje/Polecenia/export ---

diff --git a/files/pl/web/javascript/reference/statements/for...in/index.html b/files/pl/web/javascript/reference/statements/for...in/index.html index d8c17d3b3e..6e79b44b84 100644 --- a/files/pl/web/javascript/reference/statements/for...in/index.html +++ b/files/pl/web/javascript/reference/statements/for...in/index.html @@ -1,10 +1,11 @@ --- title: for...in -slug: Web/JavaScript/Referencje/Polecenia/for...in +slug: Web/JavaScript/Reference/Statements/for...in tags: - JavaScript - wyrażenie translation_of: Web/JavaScript/Reference/Statements/for...in +original_slug: Web/JavaScript/Referencje/Polecenia/for...in ---
{{jsSidebar("Statements")}}
diff --git a/files/pl/web/javascript/reference/statements/for/index.html b/files/pl/web/javascript/reference/statements/for/index.html index 1178c277ef..b6040c8e71 100644 --- a/files/pl/web/javascript/reference/statements/for/index.html +++ b/files/pl/web/javascript/reference/statements/for/index.html @@ -1,12 +1,13 @@ --- title: for -slug: Web/JavaScript/Referencje/Polecenia/for +slug: Web/JavaScript/Reference/Statements/for tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Statements/for +original_slug: Web/JavaScript/Referencje/Polecenia/for ---

diff --git a/files/pl/web/javascript/reference/statements/function/index.html b/files/pl/web/javascript/reference/statements/function/index.html index 6b9eba95dd..745680d28e 100644 --- a/files/pl/web/javascript/reference/statements/function/index.html +++ b/files/pl/web/javascript/reference/statements/function/index.html @@ -1,12 +1,13 @@ --- title: function -slug: Web/JavaScript/Referencje/Polecenia/function +slug: Web/JavaScript/Reference/Statements/function tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Statements/function +original_slug: Web/JavaScript/Referencje/Polecenia/function ---

diff --git a/files/pl/web/javascript/reference/statements/function_star_/index.html b/files/pl/web/javascript/reference/statements/function_star_/index.html index 5962e0c286..d8212ed492 100644 --- a/files/pl/web/javascript/reference/statements/function_star_/index.html +++ b/files/pl/web/javascript/reference/statements/function_star_/index.html @@ -1,7 +1,8 @@ --- title: function* -slug: Web/JavaScript/Referencje/Polecenia/function* +slug: Web/JavaScript/Reference/Statements/function* translation_of: Web/JavaScript/Reference/Statements/function* +original_slug: Web/JavaScript/Referencje/Polecenia/function* ---
{{jsSidebar("Statements")}}
diff --git a/files/pl/web/javascript/reference/statements/if...else/index.html b/files/pl/web/javascript/reference/statements/if...else/index.html index 38dd3c8f8a..3a829581c6 100644 --- a/files/pl/web/javascript/reference/statements/if...else/index.html +++ b/files/pl/web/javascript/reference/statements/if...else/index.html @@ -1,12 +1,13 @@ --- title: if...else -slug: Web/JavaScript/Referencje/Polecenia/if...else +slug: Web/JavaScript/Reference/Statements/if...else tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Statements/if...else +original_slug: Web/JavaScript/Referencje/Polecenia/if...else ---

diff --git a/files/pl/web/javascript/reference/statements/import/index.html b/files/pl/web/javascript/reference/statements/import/index.html index 406050c420..07388d5a96 100644 --- a/files/pl/web/javascript/reference/statements/import/index.html +++ b/files/pl/web/javascript/reference/statements/import/index.html @@ -1,12 +1,13 @@ --- title: import -slug: Web/JavaScript/Referencje/Polecenia/import +slug: Web/JavaScript/Reference/Statements/import tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Statements/import +original_slug: Web/JavaScript/Referencje/Polecenia/import ---

diff --git a/files/pl/web/javascript/reference/statements/index.html b/files/pl/web/javascript/reference/statements/index.html index b6f58b783c..ba1f639312 100644 --- a/files/pl/web/javascript/reference/statements/index.html +++ b/files/pl/web/javascript/reference/statements/index.html @@ -1,6 +1,6 @@ --- title: Polecenia -slug: Web/JavaScript/Referencje/Polecenia +slug: Web/JavaScript/Reference/Statements tags: - Dokumentacja_JavaScript - Dokumentacje @@ -8,6 +8,7 @@ tags: - Strony_wymagające_dopracowania - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Statements +original_slug: Web/JavaScript/Referencje/Polecenia ---
{{jsSidebar("Statements")}}
diff --git a/files/pl/web/javascript/reference/statements/label/index.html b/files/pl/web/javascript/reference/statements/label/index.html index 7ff42b3940..073a568a3c 100644 --- a/files/pl/web/javascript/reference/statements/label/index.html +++ b/files/pl/web/javascript/reference/statements/label/index.html @@ -1,12 +1,13 @@ --- title: etykieta -slug: Web/JavaScript/Referencje/Polecenia/etykieta +slug: Web/JavaScript/Reference/Statements/label tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Statements/label +original_slug: Web/JavaScript/Referencje/Polecenia/etykieta ---

diff --git a/files/pl/web/javascript/reference/statements/return/index.html b/files/pl/web/javascript/reference/statements/return/index.html index ed7849ed65..c6676b151d 100644 --- a/files/pl/web/javascript/reference/statements/return/index.html +++ b/files/pl/web/javascript/reference/statements/return/index.html @@ -1,10 +1,11 @@ --- title: return -slug: Web/JavaScript/Referencje/Polecenia/return +slug: Web/JavaScript/Reference/Statements/return tags: - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Statements/return +original_slug: Web/JavaScript/Referencje/Polecenia/return ---

diff --git a/files/pl/web/javascript/reference/statements/switch/index.html b/files/pl/web/javascript/reference/statements/switch/index.html index d131e042ca..d67905077e 100644 --- a/files/pl/web/javascript/reference/statements/switch/index.html +++ b/files/pl/web/javascript/reference/statements/switch/index.html @@ -1,6 +1,6 @@ --- title: switch -slug: Web/JavaScript/Referencje/Polecenia/switch +slug: Web/JavaScript/Reference/Statements/switch tags: - Dokumentacja_JavaScript - Dokumentacje @@ -8,6 +8,7 @@ tags: - Strony_wymagające_dopracowania - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Statements/switch +original_slug: Web/JavaScript/Referencje/Polecenia/switch ---
{{jsSidebar("Statements")}}
diff --git a/files/pl/web/javascript/reference/statements/throw/index.html b/files/pl/web/javascript/reference/statements/throw/index.html index a8d57064f5..d47ab9803b 100644 --- a/files/pl/web/javascript/reference/statements/throw/index.html +++ b/files/pl/web/javascript/reference/statements/throw/index.html @@ -1,6 +1,6 @@ --- title: throw -slug: Web/JavaScript/Referencje/Polecenia/throw +slug: Web/JavaScript/Reference/Statements/throw tags: - Dokumentacja_JavaScript - Dokumentacje @@ -8,6 +8,7 @@ tags: - Strony_wymagające_dopracowania - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Statements/throw +original_slug: Web/JavaScript/Referencje/Polecenia/throw ---
{{jsSidebar("Statements")}}
diff --git a/files/pl/web/javascript/reference/statements/var/index.html b/files/pl/web/javascript/reference/statements/var/index.html index aff42bcdac..e9e8633814 100644 --- a/files/pl/web/javascript/reference/statements/var/index.html +++ b/files/pl/web/javascript/reference/statements/var/index.html @@ -1,12 +1,13 @@ --- title: var -slug: Web/JavaScript/Referencje/Polecenia/var +slug: Web/JavaScript/Reference/Statements/var tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Statements/var +original_slug: Web/JavaScript/Referencje/Polecenia/var ---

diff --git a/files/pl/web/javascript/reference/statements/while/index.html b/files/pl/web/javascript/reference/statements/while/index.html index 103762fd01..2523fcee19 100644 --- a/files/pl/web/javascript/reference/statements/while/index.html +++ b/files/pl/web/javascript/reference/statements/while/index.html @@ -1,12 +1,13 @@ --- title: while -slug: Web/JavaScript/Referencje/Polecenia/while +slug: Web/JavaScript/Reference/Statements/while tags: - Dokumentacja_JavaScript - Dokumentacje - JavaScript - Wszystkie_kategorie translation_of: Web/JavaScript/Reference/Statements/while +original_slug: Web/JavaScript/Referencje/Polecenia/while ---

diff --git a/files/pl/web/opensearch/index.html b/files/pl/web/opensearch/index.html index 91968f2ac8..38cb249fe8 100644 --- a/files/pl/web/opensearch/index.html +++ b/files/pl/web/opensearch/index.html @@ -1,12 +1,13 @@ --- title: Tworzenie wtyczek OpenSearch dla Firefoksa -slug: Tworzenie_wtyczek_OpenSearch_dla_Firefoksa +slug: Web/OpenSearch tags: - Dodatki - OpenSearch - Wszystkie_kategorie - Wtyczki_wyszukiwarek translation_of: Web/OpenSearch +original_slug: Tworzenie_wtyczek_OpenSearch_dla_Firefoksa ---

 

OpenSearch

diff --git a/files/pl/web/progressive_web_apps/responsive/media_types/index.html b/files/pl/web/progressive_web_apps/responsive/media_types/index.html index ef6c87f8cf..2314709ef4 100644 --- a/files/pl/web/progressive_web_apps/responsive/media_types/index.html +++ b/files/pl/web/progressive_web_apps/responsive/media_types/index.html @@ -1,9 +1,10 @@ --- title: Media -slug: Web/CSS/Na_początek/Media +slug: Web/Progressive_web_apps/Responsive/Media_types tags: - - 'CSS:Na_początek' + - CSS:Na_początek translation_of: Web/Progressive_web_apps/Responsive/Media_types +original_slug: Web/CSS/Na_początek/Media ---

Wiele stron tego kursu skupiało się na własnościach i wartościach CSS, których możesz użyć do określania wyglądu dokumentu. diff --git a/files/pl/web/security/certificate_transparency/index.html b/files/pl/web/security/certificate_transparency/index.html index 7a9b814c43..58b12d4e74 100644 --- a/files/pl/web/security/certificate_transparency/index.html +++ b/files/pl/web/security/certificate_transparency/index.html @@ -1,11 +1,12 @@ --- title: Certificate Transparency -slug: Web/Bezpieczeństwo/Certificate_Transparency +slug: Web/Security/Certificate_Transparency tags: - Bezpieczeństwo - Web - bezpieczeństwo aplikacji WWW translation_of: Web/Security/Certificate_Transparency +original_slug: Web/Bezpieczeństwo/Certificate_Transparency ---

Certyfikat Przejrzystości (Certificate Transparency) to otwarta platforma programistyczna (framework) stworzona do ochrony oraz monitorowania braków w certyfikacji. Świeżo wydane certyfikaty dostają się do obiegu publicznego, często niezależne logi CT zostają wpisane do rejestru, przez co zachowany zostaje zabezpieczony kryptograficznie rekord certyfikatów TLS.

diff --git a/files/pl/web/security/index.html b/files/pl/web/security/index.html index 0d3cdd2c07..f116bf83da 100644 --- a/files/pl/web/security/index.html +++ b/files/pl/web/security/index.html @@ -1,11 +1,12 @@ --- title: Bezpieczeństwo aplikacji WWW -slug: Web/Bezpieczeństwo +slug: Web/Security tags: - Bezpieczeństwo - Web - bezpieczeństwo aplikacji WWW translation_of: Web/Security +original_slug: Web/Bezpieczeństwo ---

Zapewnienie bezpieczeństwa Twojej strony lub aplikacji WWW jest niezwykle istotne. Nawet proste błędy w kodzie mogą skutkować wyciekiem prywatnych danych i ich kradzieżą przez nieodpowiednie osoby. Wymienione tutaj artykuły dot. bezpieczeństwa aplikacji WWW dostarczą Ci informacji, które mogą okazać się pomocne w zabezpieczeniu Twojej strony i jej kodu przez atakami i kradzieżą danych.

diff --git a/files/pl/web/security/same-origin_policy/index.html b/files/pl/web/security/same-origin_policy/index.html index 23f296444e..d8e19b5eca 100644 --- a/files/pl/web/security/same-origin_policy/index.html +++ b/files/pl/web/security/same-origin_policy/index.html @@ -1,6 +1,6 @@ --- title: Reguła tego samego pochodzenia (Same-origin policy) -slug: Web/Bezpieczeństwo/Same-origin_policy +slug: Web/Security/Same-origin_policy tags: - Bezpieczeństwo - CORS @@ -13,6 +13,7 @@ tags: - reguła tego samego pochodzenia - źródło translation_of: Web/Security/Same-origin_policy +original_slug: Web/Bezpieczeństwo/Same-origin_policy ---

Same-origin policy (reguła tego samego pochodzenia) to istotny mechanizm bezpieczeństwa, który określa sposób, w jaki dokument lub skrypt jednego pochodzenia ({{Glossary("origin")}}) może komunikować się z zasobem innego pochodzenia. Pozwala to na odizolowanie potencjalnie szkodliwych dokumentów i tym samym redukowane są czynniki sprzyjające atakom.

diff --git a/files/pl/web/security/subresource_integrity/index.html b/files/pl/web/security/subresource_integrity/index.html index 69f20709ec..24fed89b49 100644 --- a/files/pl/web/security/subresource_integrity/index.html +++ b/files/pl/web/security/subresource_integrity/index.html @@ -1,6 +1,6 @@ --- title: Integralność podzasobów (Subresource Integrity) -slug: Web/Bezpieczeństwo/Subresource_Integrity +slug: Web/Security/Subresource_Integrity tags: - Bezpieczeństwo - HTML @@ -8,6 +8,7 @@ tags: - Wstęp - bezpieczeństwo aplikacji WWW translation_of: Web/Security/Subresource_Integrity +original_slug: Web/Bezpieczeństwo/Subresource_Integrity ---

Subresource Integrity (SRI), w wolnym tłumaczeniu "integralność podzasobów", to funkcja bezpieczeństwa umożliwiająca przeglądarkom weryfikowanie, czy zasoby, które przechwytują (np. z CDN) docierają do nich bez nieporządanych zmian. Działanie takie jest możliwe dzięki używaniu hasha kryptograficznego, z którym przechwycony zasób musi być zgodny.

diff --git a/files/pl/web/svg/element/circle/index.html b/files/pl/web/svg/element/circle/index.html index 6ef2bca50e..0b71e745d9 100644 --- a/files/pl/web/svg/element/circle/index.html +++ b/files/pl/web/svg/element/circle/index.html @@ -1,7 +1,8 @@ --- title: -slug: Web/SVG/Element/okrąg +slug: Web/SVG/Element/circle translation_of: Web/SVG/Element/circle +original_slug: Web/SVG/Element/okrąg ---
{{SVGRef}}
diff --git a/files/pl/web/svg/other_resources/index.html b/files/pl/web/svg/other_resources/index.html index 6e5f2508b8..5658f2dcb5 100644 --- a/files/pl/web/svg/other_resources/index.html +++ b/files/pl/web/svg/other_resources/index.html @@ -1,10 +1,11 @@ --- title: Inne zasoby -slug: Web/SVG/Inne_zasoby +slug: Web/SVG/Other_Resources tags: - SVG - Wszystkie_kategorie translation_of: Web/SVG/Other_Resources +original_slug: Web/SVG/Inne_zasoby ---

diff --git a/files/pl/web/svg/tutorial/index.html b/files/pl/web/svg/tutorial/index.html index 7f150c7110..e95141e71d 100644 --- a/files/pl/web/svg/tutorial/index.html +++ b/files/pl/web/svg/tutorial/index.html @@ -1,11 +1,12 @@ --- title: SVG Poradnik -slug: Web/SVG/Przewodnik +slug: Web/SVG/Tutorial tags: - SVG - - 'SVG:Przewodnik' + - SVG:Przewodnik - Wszystkie_kategorie translation_of: Web/SVG/Tutorial +original_slug: Web/SVG/Przewodnik ---

 

diff --git a/files/pl/web/svg/tutorial/svg_and_css/index.html b/files/pl/web/svg/tutorial/svg_and_css/index.html index 1581fbdcd8..a918e69cc0 100644 --- a/files/pl/web/svg/tutorial/svg_and_css/index.html +++ b/files/pl/web/svg/tutorial/svg_and_css/index.html @@ -1,9 +1,10 @@ --- title: Grafika SVG -slug: Web/CSS/Na_początek/Grafika_SVG +slug: Web/SVG/Tutorial/SVG_and_CSS tags: - - 'CSS:Na_początek' + - CSS:Na_początek translation_of: Web/SVG/Tutorial/SVG_and_CSS +original_slug: Web/CSS/Na_początek/Grafika_SVG ---

Ta strona ilustruje specjalny język do tworzenia grafiki: SVG. diff --git a/files/pl/web/svg/tutorial/svg_in_html_introduction/index.html b/files/pl/web/svg/tutorial/svg_in_html_introduction/index.html index f816909090..0c74009689 100644 --- a/files/pl/web/svg/tutorial/svg_in_html_introduction/index.html +++ b/files/pl/web/svg/tutorial/svg_in_html_introduction/index.html @@ -1,10 +1,11 @@ --- title: SVG w XHTML - Wprowadzenie -slug: Web/SVG/Przewodnik/SVG_w_XHTML_-_Wprowadzenie +slug: Web/SVG/Tutorial/SVG_In_HTML_Introduction tags: - SVG - Wszystkie_kategorie translation_of: Web/SVG/Tutorial/SVG_In_HTML_Introduction +original_slug: Web/SVG/Przewodnik/SVG_w_XHTML_-_Wprowadzenie ---

diff --git a/files/pl/web/xml/xml_introduction/index.html b/files/pl/web/xml/xml_introduction/index.html index fbc828653f..dc40c9bad9 100644 --- a/files/pl/web/xml/xml_introduction/index.html +++ b/files/pl/web/xml/xml_introduction/index.html @@ -1,6 +1,6 @@ --- title: Wprowadzenie do XML-a -slug: Web/XML/Wprowadzenie_do_XML-a +slug: Web/XML/XML_introduction tags: - CSS - HTML @@ -8,6 +8,7 @@ tags: - XML - XSLT translation_of: Web/XML/XML_introduction +original_slug: Web/XML/Wprowadzenie_do_XML-a ---

Summary: This article introduces the 'eXtensible Markup Language' (XML) and tells of it's uses. diff --git a/files/pl/web/xpath/axes/index.html b/files/pl/web/xpath/axes/index.html index 2822465e16..b232f0cc18 100644 --- a/files/pl/web/xpath/axes/index.html +++ b/files/pl/web/xpath/axes/index.html @@ -1,13 +1,14 @@ --- title: Osie -slug: Web/XPath/Osie +slug: Web/XPath/Axes tags: - Dokumentacje - Wszystkie_kategorie - XPath - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Axes +original_slug: Web/XPath/Osie ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/boolean/index.html b/files/pl/web/xpath/functions/boolean/index.html index 15009d3c16..850eba445d 100644 --- a/files/pl/web/xpath/functions/boolean/index.html +++ b/files/pl/web/xpath/functions/boolean/index.html @@ -1,12 +1,13 @@ --- title: boolean -slug: Web/XPath/Funkcje/boolean +slug: Web/XPath/Functions/boolean tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/boolean +original_slug: Web/XPath/Funkcje/boolean ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/ceiling/index.html b/files/pl/web/xpath/functions/ceiling/index.html index ddfd5595e4..47e158b830 100644 --- a/files/pl/web/xpath/functions/ceiling/index.html +++ b/files/pl/web/xpath/functions/ceiling/index.html @@ -1,12 +1,13 @@ --- title: ceiling -slug: Web/XPath/Funkcje/ceiling +slug: Web/XPath/Functions/ceiling tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/ceiling +original_slug: Web/XPath/Funkcje/ceiling ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/concat/index.html b/files/pl/web/xpath/functions/concat/index.html index 35a0d5f932..fc9fcecfb0 100644 --- a/files/pl/web/xpath/functions/concat/index.html +++ b/files/pl/web/xpath/functions/concat/index.html @@ -1,12 +1,13 @@ --- title: concat -slug: Web/XPath/Funkcje/concat +slug: Web/XPath/Functions/concat tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/concat +original_slug: Web/XPath/Funkcje/concat ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/contains/index.html b/files/pl/web/xpath/functions/contains/index.html index e295462b27..435fbd8df5 100644 --- a/files/pl/web/xpath/functions/contains/index.html +++ b/files/pl/web/xpath/functions/contains/index.html @@ -1,12 +1,13 @@ --- title: contains -slug: Web/XPath/Funkcje/contains +slug: Web/XPath/Functions/contains tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/contains +original_slug: Web/XPath/Funkcje/contains ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/count/index.html b/files/pl/web/xpath/functions/count/index.html index 5be5ce5039..9220dc188d 100644 --- a/files/pl/web/xpath/functions/count/index.html +++ b/files/pl/web/xpath/functions/count/index.html @@ -1,12 +1,13 @@ --- title: count -slug: Web/XPath/Funkcje/count +slug: Web/XPath/Functions/count tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/count +original_slug: Web/XPath/Funkcje/count ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/current/index.html b/files/pl/web/xpath/functions/current/index.html index cb3752d7eb..dd9703e8e0 100644 --- a/files/pl/web/xpath/functions/current/index.html +++ b/files/pl/web/xpath/functions/current/index.html @@ -1,12 +1,13 @@ --- title: current -slug: Web/XPath/Funkcje/current +slug: Web/XPath/Functions/current tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/current +original_slug: Web/XPath/Funkcje/current ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/document/index.html b/files/pl/web/xpath/functions/document/index.html index c69211937f..421c0b59bc 100644 --- a/files/pl/web/xpath/functions/document/index.html +++ b/files/pl/web/xpath/functions/document/index.html @@ -1,12 +1,13 @@ --- title: document -slug: Web/XPath/Funkcje/document +slug: Web/XPath/Functions/document tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/document +original_slug: Web/XPath/Funkcje/document ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/element-available/index.html b/files/pl/web/xpath/functions/element-available/index.html index 59948e8acd..522740ad76 100644 --- a/files/pl/web/xpath/functions/element-available/index.html +++ b/files/pl/web/xpath/functions/element-available/index.html @@ -1,12 +1,13 @@ --- title: element-available -slug: Web/XPath/Funkcje/element-available +slug: Web/XPath/Functions/element-available tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/element-available +original_slug: Web/XPath/Funkcje/element-available ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/false/index.html b/files/pl/web/xpath/functions/false/index.html index 9eb932a51b..de98790056 100644 --- a/files/pl/web/xpath/functions/false/index.html +++ b/files/pl/web/xpath/functions/false/index.html @@ -1,12 +1,13 @@ --- title: 'false' -slug: Web/XPath/Funkcje/false +slug: Web/XPath/Functions/false tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/false +original_slug: Web/XPath/Funkcje/false ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/floor/index.html b/files/pl/web/xpath/functions/floor/index.html index 1d82807ae2..9bf48b75d2 100644 --- a/files/pl/web/xpath/functions/floor/index.html +++ b/files/pl/web/xpath/functions/floor/index.html @@ -1,12 +1,13 @@ --- title: floor -slug: Web/XPath/Funkcje/floor +slug: Web/XPath/Functions/floor tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/floor +original_slug: Web/XPath/Funkcje/floor ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/format-number/index.html b/files/pl/web/xpath/functions/format-number/index.html index 5801ec3064..a8b95829d5 100644 --- a/files/pl/web/xpath/functions/format-number/index.html +++ b/files/pl/web/xpath/functions/format-number/index.html @@ -1,12 +1,13 @@ --- title: format-number -slug: Web/XPath/Funkcje/format-number +slug: Web/XPath/Functions/format-number tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/format-number +original_slug: Web/XPath/Funkcje/format-number ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/function-available/index.html b/files/pl/web/xpath/functions/function-available/index.html index db24249160..b4471a0825 100644 --- a/files/pl/web/xpath/functions/function-available/index.html +++ b/files/pl/web/xpath/functions/function-available/index.html @@ -1,12 +1,13 @@ --- title: function-available -slug: Web/XPath/Funkcje/function-available +slug: Web/XPath/Functions/function-available tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/function-available +original_slug: Web/XPath/Funkcje/function-available ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/generate-id/index.html b/files/pl/web/xpath/functions/generate-id/index.html index 92ba7a2774..9d91c5c872 100644 --- a/files/pl/web/xpath/functions/generate-id/index.html +++ b/files/pl/web/xpath/functions/generate-id/index.html @@ -1,12 +1,13 @@ --- title: generate-id -slug: Web/XPath/Funkcje/generate-id +slug: Web/XPath/Functions/generate-id tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/generate-id +original_slug: Web/XPath/Funkcje/generate-id ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/id/index.html b/files/pl/web/xpath/functions/id/index.html index 8473cb77f6..e8665cd598 100644 --- a/files/pl/web/xpath/functions/id/index.html +++ b/files/pl/web/xpath/functions/id/index.html @@ -1,12 +1,13 @@ --- title: id -slug: Web/XPath/Funkcje/id +slug: Web/XPath/Functions/id tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/id +original_slug: Web/XPath/Funkcje/id ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/index.html b/files/pl/web/xpath/functions/index.html index 0ea3d23bfa..6efc6c0524 100644 --- a/files/pl/web/xpath/functions/index.html +++ b/files/pl/web/xpath/functions/index.html @@ -1,13 +1,14 @@ --- title: Funkcje -slug: Web/XPath/Funkcje +slug: Web/XPath/Functions tags: - Dokumentacje - Wszystkie_kategorie - XPath - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions +original_slug: Web/XPath/Funkcje ---

{{ XsltRef() }} Poniżej znajduje się lista objaśnionych funkcji głównych XPath i specyficznych dla XSLT dodatków do XPath, włączając opis, składnię, listę argumentów, typ wyniku oraz źródło w odpowiedniej rekomendacji W3C i stopień aktualnej obsługi przez Gecko. Aby uzyskać więcej informacji na temat zastosowania funkcji XPath/XSLT, przejdź na stronę: Przeczytaj więcej.

diff --git a/files/pl/web/xpath/functions/key/index.html b/files/pl/web/xpath/functions/key/index.html index 41db252168..3227bf3a8a 100644 --- a/files/pl/web/xpath/functions/key/index.html +++ b/files/pl/web/xpath/functions/key/index.html @@ -1,12 +1,13 @@ --- title: key -slug: Web/XPath/Funkcje/key +slug: Web/XPath/Functions/key tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/key +original_slug: Web/XPath/Funkcje/key ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/lang/index.html b/files/pl/web/xpath/functions/lang/index.html index fc938aa6c3..d394553395 100644 --- a/files/pl/web/xpath/functions/lang/index.html +++ b/files/pl/web/xpath/functions/lang/index.html @@ -1,12 +1,13 @@ --- title: lang -slug: Web/XPath/Funkcje/lang +slug: Web/XPath/Functions/lang tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/lang +original_slug: Web/XPath/Funkcje/lang ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/last/index.html b/files/pl/web/xpath/functions/last/index.html index f3a507ad3f..480b366981 100644 --- a/files/pl/web/xpath/functions/last/index.html +++ b/files/pl/web/xpath/functions/last/index.html @@ -1,12 +1,13 @@ --- title: last -slug: Web/XPath/Funkcje/last +slug: Web/XPath/Functions/last tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/last +original_slug: Web/XPath/Funkcje/last ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/local-name/index.html b/files/pl/web/xpath/functions/local-name/index.html index 95996699eb..351b0b5411 100644 --- a/files/pl/web/xpath/functions/local-name/index.html +++ b/files/pl/web/xpath/functions/local-name/index.html @@ -1,12 +1,13 @@ --- title: local-name -slug: Web/XPath/Funkcje/local-name +slug: Web/XPath/Functions/local-name tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/local-name +original_slug: Web/XPath/Funkcje/local-name ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/name/index.html b/files/pl/web/xpath/functions/name/index.html index d9817c87dd..9a9eb43d50 100644 --- a/files/pl/web/xpath/functions/name/index.html +++ b/files/pl/web/xpath/functions/name/index.html @@ -1,12 +1,13 @@ --- title: name -slug: Web/XPath/Funkcje/name +slug: Web/XPath/Functions/name tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/name +original_slug: Web/XPath/Funkcje/name ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/namespace-uri/index.html b/files/pl/web/xpath/functions/namespace-uri/index.html index 4c5e2e5d16..25bfe03ffa 100644 --- a/files/pl/web/xpath/functions/namespace-uri/index.html +++ b/files/pl/web/xpath/functions/namespace-uri/index.html @@ -1,12 +1,13 @@ --- title: namespace-uri -slug: Web/XPath/Funkcje/namespace-uri +slug: Web/XPath/Functions/namespace-uri tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/namespace-uri +original_slug: Web/XPath/Funkcje/namespace-uri ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/normalize-space/index.html b/files/pl/web/xpath/functions/normalize-space/index.html index 4fb220da39..e74ec06e67 100644 --- a/files/pl/web/xpath/functions/normalize-space/index.html +++ b/files/pl/web/xpath/functions/normalize-space/index.html @@ -1,12 +1,13 @@ --- title: normalize-space -slug: Web/XPath/Funkcje/normalize-space +slug: Web/XPath/Functions/normalize-space tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/normalize-space +original_slug: Web/XPath/Funkcje/normalize-space ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/not/index.html b/files/pl/web/xpath/functions/not/index.html index 9de59d5d7a..eea6b2eb96 100644 --- a/files/pl/web/xpath/functions/not/index.html +++ b/files/pl/web/xpath/functions/not/index.html @@ -1,12 +1,13 @@ --- title: not -slug: Web/XPath/Funkcje/not +slug: Web/XPath/Functions/not tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/not +original_slug: Web/XPath/Funkcje/not ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/number/index.html b/files/pl/web/xpath/functions/number/index.html index 22d3f72b02..9632eb41b7 100644 --- a/files/pl/web/xpath/functions/number/index.html +++ b/files/pl/web/xpath/functions/number/index.html @@ -1,12 +1,13 @@ --- title: number -slug: Web/XPath/Funkcje/number +slug: Web/XPath/Functions/number tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/number +original_slug: Web/XPath/Funkcje/number ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/position/index.html b/files/pl/web/xpath/functions/position/index.html index 9c7b6fbe21..b31ed31db7 100644 --- a/files/pl/web/xpath/functions/position/index.html +++ b/files/pl/web/xpath/functions/position/index.html @@ -1,12 +1,13 @@ --- title: position -slug: Web/XPath/Funkcje/position +slug: Web/XPath/Functions/position tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/position +original_slug: Web/XPath/Funkcje/position ---

{{ XsltRef() }}

diff --git a/files/pl/web/xpath/functions/round/index.html b/files/pl/web/xpath/functions/round/index.html index 8f9d827b74..638cc0cf24 100644 --- a/files/pl/web/xpath/functions/round/index.html +++ b/files/pl/web/xpath/functions/round/index.html @@ -1,12 +1,13 @@ --- title: round -slug: Web/XPath/Funkcje/round +slug: Web/XPath/Functions/round tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/round +original_slug: Web/XPath/Funkcje/round ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/starts-with/index.html b/files/pl/web/xpath/functions/starts-with/index.html index f833baa82f..73f2d5f993 100644 --- a/files/pl/web/xpath/functions/starts-with/index.html +++ b/files/pl/web/xpath/functions/starts-with/index.html @@ -1,12 +1,13 @@ --- title: starts-with -slug: Web/XPath/Funkcje/starts-with +slug: Web/XPath/Functions/starts-with tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/starts-with +original_slug: Web/XPath/Funkcje/starts-with ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/string-length/index.html b/files/pl/web/xpath/functions/string-length/index.html index d0890579ab..4c778a0d55 100644 --- a/files/pl/web/xpath/functions/string-length/index.html +++ b/files/pl/web/xpath/functions/string-length/index.html @@ -1,12 +1,13 @@ --- title: string-length -slug: Web/XPath/Funkcje/string-length +slug: Web/XPath/Functions/string-length tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/string-length +original_slug: Web/XPath/Funkcje/string-length ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/string/index.html b/files/pl/web/xpath/functions/string/index.html index d84708e71f..456c3a81e5 100644 --- a/files/pl/web/xpath/functions/string/index.html +++ b/files/pl/web/xpath/functions/string/index.html @@ -1,12 +1,13 @@ --- title: string -slug: Web/XPath/Funkcje/string +slug: Web/XPath/Functions/string tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/string +original_slug: Web/XPath/Funkcje/string ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/substring-after/index.html b/files/pl/web/xpath/functions/substring-after/index.html index faf0b7ae6a..622749003e 100644 --- a/files/pl/web/xpath/functions/substring-after/index.html +++ b/files/pl/web/xpath/functions/substring-after/index.html @@ -1,12 +1,13 @@ --- title: substring-after -slug: Web/XPath/Funkcje/substring-after +slug: Web/XPath/Functions/substring-after tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/substring-after +original_slug: Web/XPath/Funkcje/substring-after ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/substring-before/index.html b/files/pl/web/xpath/functions/substring-before/index.html index 9786005f7c..72b9b11da3 100644 --- a/files/pl/web/xpath/functions/substring-before/index.html +++ b/files/pl/web/xpath/functions/substring-before/index.html @@ -1,12 +1,13 @@ --- title: substring-before -slug: Web/XPath/Funkcje/substring-before +slug: Web/XPath/Functions/substring-before tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/substring-before +original_slug: Web/XPath/Funkcje/substring-before ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/substring/index.html b/files/pl/web/xpath/functions/substring/index.html index 4ed67fda88..845e717cfb 100644 --- a/files/pl/web/xpath/functions/substring/index.html +++ b/files/pl/web/xpath/functions/substring/index.html @@ -1,12 +1,13 @@ --- title: substring -slug: Web/XPath/Funkcje/substring +slug: Web/XPath/Functions/substring tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/substring +original_slug: Web/XPath/Funkcje/substring ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/sum/index.html b/files/pl/web/xpath/functions/sum/index.html index e0fac8e7bc..ec70b2e5c8 100644 --- a/files/pl/web/xpath/functions/sum/index.html +++ b/files/pl/web/xpath/functions/sum/index.html @@ -1,12 +1,13 @@ --- title: sum -slug: Web/XPath/Funkcje/sum +slug: Web/XPath/Functions/sum tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/sum +original_slug: Web/XPath/Funkcje/sum ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/system-property/index.html b/files/pl/web/xpath/functions/system-property/index.html index 7faf04e266..de23581021 100644 --- a/files/pl/web/xpath/functions/system-property/index.html +++ b/files/pl/web/xpath/functions/system-property/index.html @@ -1,12 +1,13 @@ --- title: system-property -slug: Web/XPath/Funkcje/system-property +slug: Web/XPath/Functions/system-property tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/system-property +original_slug: Web/XPath/Funkcje/system-property ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/translate/index.html b/files/pl/web/xpath/functions/translate/index.html index 7627d29300..a76cc6e6fb 100644 --- a/files/pl/web/xpath/functions/translate/index.html +++ b/files/pl/web/xpath/functions/translate/index.html @@ -1,12 +1,13 @@ --- title: translate -slug: Web/XPath/Funkcje/translate +slug: Web/XPath/Functions/translate tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/translate +original_slug: Web/XPath/Funkcje/translate ---

{{ XsltRef() }}

diff --git a/files/pl/web/xpath/functions/true/index.html b/files/pl/web/xpath/functions/true/index.html index 03ac9c380c..6273d299a1 100644 --- a/files/pl/web/xpath/functions/true/index.html +++ b/files/pl/web/xpath/functions/true/index.html @@ -1,12 +1,13 @@ --- title: 'true' -slug: Web/XPath/Funkcje/true +slug: Web/XPath/Functions/true tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/true +original_slug: Web/XPath/Funkcje/true ---

{{ XsltRef() }} diff --git a/files/pl/web/xpath/functions/unparsed-entity-url/index.html b/files/pl/web/xpath/functions/unparsed-entity-url/index.html index 57a6a1b41f..41575d64da 100644 --- a/files/pl/web/xpath/functions/unparsed-entity-url/index.html +++ b/files/pl/web/xpath/functions/unparsed-entity-url/index.html @@ -1,12 +1,13 @@ --- title: unparsed-entity-url -slug: Web/XPath/Funkcje/unparsed-entity-url +slug: Web/XPath/Functions/unparsed-entity-url tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XPath/Functions/unparsed-entity-url +original_slug: Web/XPath/Funkcje/unparsed-entity-url ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/apply-imports/index.html b/files/pl/web/xslt/element/apply-imports/index.html index 5f8b4296f7..114fba1464 100644 --- a/files/pl/web/xslt/element/apply-imports/index.html +++ b/files/pl/web/xslt/element/apply-imports/index.html @@ -1,12 +1,13 @@ --- title: apply-imports -slug: Web/XSLT/apply-imports +slug: Web/XSLT/Element/apply-imports tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/apply-imports +original_slug: Web/XSLT/apply-imports ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/apply-templates/index.html b/files/pl/web/xslt/element/apply-templates/index.html index 8165fda910..13a9d92cd6 100644 --- a/files/pl/web/xslt/element/apply-templates/index.html +++ b/files/pl/web/xslt/element/apply-templates/index.html @@ -1,12 +1,13 @@ --- title: apply-templates -slug: Web/XSLT/apply-templates +slug: Web/XSLT/Element/apply-templates tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/apply-templates +original_slug: Web/XSLT/apply-templates ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/attribute-set/index.html b/files/pl/web/xslt/element/attribute-set/index.html index c936ae76dc..878e94e6d7 100644 --- a/files/pl/web/xslt/element/attribute-set/index.html +++ b/files/pl/web/xslt/element/attribute-set/index.html @@ -1,12 +1,13 @@ --- title: attribute-set -slug: Web/XSLT/attribute-set +slug: Web/XSLT/Element/attribute-set tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/attribute-set +original_slug: Web/XSLT/attribute-set ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/attribute/index.html b/files/pl/web/xslt/element/attribute/index.html index aa3c94dca5..d20fc25769 100644 --- a/files/pl/web/xslt/element/attribute/index.html +++ b/files/pl/web/xslt/element/attribute/index.html @@ -1,12 +1,13 @@ --- title: attribute -slug: Web/XSLT/attribute +slug: Web/XSLT/Element/attribute tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/attribute +original_slug: Web/XSLT/attribute ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/call-template/index.html b/files/pl/web/xslt/element/call-template/index.html index 283e041fec..6e41094d19 100644 --- a/files/pl/web/xslt/element/call-template/index.html +++ b/files/pl/web/xslt/element/call-template/index.html @@ -1,12 +1,13 @@ --- title: call-template -slug: Web/XSLT/call-template +slug: Web/XSLT/Element/call-template tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/call-template +original_slug: Web/XSLT/call-template ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/choose/index.html b/files/pl/web/xslt/element/choose/index.html index 319ed34d09..eaca71352b 100644 --- a/files/pl/web/xslt/element/choose/index.html +++ b/files/pl/web/xslt/element/choose/index.html @@ -1,12 +1,13 @@ --- title: choose -slug: Web/XSLT/choose +slug: Web/XSLT/Element/choose tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/choose +original_slug: Web/XSLT/choose ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/comment/index.html b/files/pl/web/xslt/element/comment/index.html index 0c0fa5cba8..401eef2a48 100644 --- a/files/pl/web/xslt/element/comment/index.html +++ b/files/pl/web/xslt/element/comment/index.html @@ -1,12 +1,13 @@ --- title: comment -slug: Web/XSLT/comment +slug: Web/XSLT/Element/comment tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/comment +original_slug: Web/XSLT/comment ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/copy-of/index.html b/files/pl/web/xslt/element/copy-of/index.html index c458c88fdc..59bf73bf4e 100644 --- a/files/pl/web/xslt/element/copy-of/index.html +++ b/files/pl/web/xslt/element/copy-of/index.html @@ -1,12 +1,13 @@ --- title: copy-of -slug: Web/XSLT/copy-of +slug: Web/XSLT/Element/copy-of tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/copy-of +original_slug: Web/XSLT/copy-of ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/copy/index.html b/files/pl/web/xslt/element/copy/index.html index ffc164b603..56b042a3ce 100644 --- a/files/pl/web/xslt/element/copy/index.html +++ b/files/pl/web/xslt/element/copy/index.html @@ -1,12 +1,13 @@ --- title: copy -slug: Web/XSLT/copy +slug: Web/XSLT/Element/copy tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/copy +original_slug: Web/XSLT/copy ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/decimal-format/index.html b/files/pl/web/xslt/element/decimal-format/index.html index 7effc29b96..d2eae2c65e 100644 --- a/files/pl/web/xslt/element/decimal-format/index.html +++ b/files/pl/web/xslt/element/decimal-format/index.html @@ -1,12 +1,13 @@ --- title: decimal-format -slug: Web/XSLT/decimal-format +slug: Web/XSLT/Element/decimal-format tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/decimal-format +original_slug: Web/XSLT/decimal-format ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/fallback/index.html b/files/pl/web/xslt/element/fallback/index.html index 420a32dd23..b2b2f377fa 100644 --- a/files/pl/web/xslt/element/fallback/index.html +++ b/files/pl/web/xslt/element/fallback/index.html @@ -1,12 +1,13 @@ --- title: fallback -slug: Web/XSLT/fallback +slug: Web/XSLT/Element/fallback tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/fallback +original_slug: Web/XSLT/fallback ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/for-each/index.html b/files/pl/web/xslt/element/for-each/index.html index d2f9d387e8..7288605887 100644 --- a/files/pl/web/xslt/element/for-each/index.html +++ b/files/pl/web/xslt/element/for-each/index.html @@ -1,12 +1,13 @@ --- title: for-each -slug: Web/XSLT/for-each +slug: Web/XSLT/Element/for-each tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/for-each +original_slug: Web/XSLT/for-each ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/if/index.html b/files/pl/web/xslt/element/if/index.html index 888e264082..dace5470a9 100644 --- a/files/pl/web/xslt/element/if/index.html +++ b/files/pl/web/xslt/element/if/index.html @@ -1,12 +1,13 @@ --- title: if -slug: Web/XSLT/if +slug: Web/XSLT/Element/if tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/if +original_slug: Web/XSLT/if ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/import/index.html b/files/pl/web/xslt/element/import/index.html index ba7348198e..63f4a5dc6f 100644 --- a/files/pl/web/xslt/element/import/index.html +++ b/files/pl/web/xslt/element/import/index.html @@ -1,12 +1,13 @@ --- title: import -slug: Web/XSLT/import +slug: Web/XSLT/Element/import tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/import +original_slug: Web/XSLT/import ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/include/index.html b/files/pl/web/xslt/element/include/index.html index 2a1a0f84b7..74128327d9 100644 --- a/files/pl/web/xslt/element/include/index.html +++ b/files/pl/web/xslt/element/include/index.html @@ -1,12 +1,13 @@ --- title: include -slug: Web/XSLT/include +slug: Web/XSLT/Element/include tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/include +original_slug: Web/XSLT/include ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/key/index.html b/files/pl/web/xslt/element/key/index.html index 77b5245afd..868c1d65b9 100644 --- a/files/pl/web/xslt/element/key/index.html +++ b/files/pl/web/xslt/element/key/index.html @@ -1,12 +1,13 @@ --- title: key -slug: Web/XSLT/key +slug: Web/XSLT/Element/key tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/key +original_slug: Web/XSLT/key ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/message/index.html b/files/pl/web/xslt/element/message/index.html index 38ea60cd32..8dbf83e141 100644 --- a/files/pl/web/xslt/element/message/index.html +++ b/files/pl/web/xslt/element/message/index.html @@ -1,12 +1,13 @@ --- title: message -slug: Web/XSLT/message +slug: Web/XSLT/Element/message tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/message +original_slug: Web/XSLT/message ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/namespace-alias/index.html b/files/pl/web/xslt/element/namespace-alias/index.html index 9ed3b83f10..3fe968944e 100644 --- a/files/pl/web/xslt/element/namespace-alias/index.html +++ b/files/pl/web/xslt/element/namespace-alias/index.html @@ -1,12 +1,13 @@ --- title: namespace-alias -slug: Web/XSLT/namespace-alias +slug: Web/XSLT/Element/namespace-alias tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/namespace-alias +original_slug: Web/XSLT/namespace-alias ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/number/index.html b/files/pl/web/xslt/element/number/index.html index e54b37df37..19a0270ef4 100644 --- a/files/pl/web/xslt/element/number/index.html +++ b/files/pl/web/xslt/element/number/index.html @@ -1,12 +1,13 @@ --- title: number -slug: Web/XSLT/number +slug: Web/XSLT/Element/number tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/number +original_slug: Web/XSLT/number ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/otherwise/index.html b/files/pl/web/xslt/element/otherwise/index.html index 7b3a02ace5..b5fdcfe1da 100644 --- a/files/pl/web/xslt/element/otherwise/index.html +++ b/files/pl/web/xslt/element/otherwise/index.html @@ -1,12 +1,13 @@ --- title: otherwise -slug: Web/XSLT/otherwise +slug: Web/XSLT/Element/otherwise tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/otherwise +original_slug: Web/XSLT/otherwise ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/output/index.html b/files/pl/web/xslt/element/output/index.html index 44a63ffdb7..2555c25f91 100644 --- a/files/pl/web/xslt/element/output/index.html +++ b/files/pl/web/xslt/element/output/index.html @@ -1,12 +1,13 @@ --- title: output -slug: Web/XSLT/output +slug: Web/XSLT/Element/output tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/output +original_slug: Web/XSLT/output ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/param/index.html b/files/pl/web/xslt/element/param/index.html index 43eead74c1..ad8a334074 100644 --- a/files/pl/web/xslt/element/param/index.html +++ b/files/pl/web/xslt/element/param/index.html @@ -1,12 +1,13 @@ --- title: param -slug: Web/XSLT/param +slug: Web/XSLT/Element/param tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/param +original_slug: Web/XSLT/param ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/preserve-space/index.html b/files/pl/web/xslt/element/preserve-space/index.html index 962f299793..9e6423c121 100644 --- a/files/pl/web/xslt/element/preserve-space/index.html +++ b/files/pl/web/xslt/element/preserve-space/index.html @@ -1,12 +1,13 @@ --- title: preserve-space -slug: Web/XSLT/preserve-space +slug: Web/XSLT/Element/preserve-space tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/preserve-space +original_slug: Web/XSLT/preserve-space ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/processing-instruction/index.html b/files/pl/web/xslt/element/processing-instruction/index.html index 4f1e67f565..bf6610f52c 100644 --- a/files/pl/web/xslt/element/processing-instruction/index.html +++ b/files/pl/web/xslt/element/processing-instruction/index.html @@ -1,12 +1,13 @@ --- title: processing-instruction -slug: Web/XSLT/processing-instruction +slug: Web/XSLT/Element/processing-instruction tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/processing-instruction +original_slug: Web/XSLT/processing-instruction ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/sort/index.html b/files/pl/web/xslt/element/sort/index.html index 9a6ab04701..418d75935f 100644 --- a/files/pl/web/xslt/element/sort/index.html +++ b/files/pl/web/xslt/element/sort/index.html @@ -1,12 +1,13 @@ --- title: sort -slug: Web/XSLT/sort +slug: Web/XSLT/Element/sort tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/sort +original_slug: Web/XSLT/sort ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/strip-space/index.html b/files/pl/web/xslt/element/strip-space/index.html index 55daf99a8d..749d71de90 100644 --- a/files/pl/web/xslt/element/strip-space/index.html +++ b/files/pl/web/xslt/element/strip-space/index.html @@ -1,12 +1,13 @@ --- title: strip-space -slug: Web/XSLT/strip-space +slug: Web/XSLT/Element/strip-space tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/strip-space +original_slug: Web/XSLT/strip-space ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/stylesheet/index.html b/files/pl/web/xslt/element/stylesheet/index.html index 36275a7efd..806d8b66c4 100644 --- a/files/pl/web/xslt/element/stylesheet/index.html +++ b/files/pl/web/xslt/element/stylesheet/index.html @@ -1,12 +1,13 @@ --- title: stylesheet -slug: Web/XSLT/stylesheet +slug: Web/XSLT/Element/stylesheet tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/stylesheet +original_slug: Web/XSLT/stylesheet ---

{{ XsltRef() }}

Element <xsl:stylesheet> (lub odpowiadający mu element <xsl:transform>) jest najbardziej zewnętrznym elementem arkusza.

diff --git a/files/pl/web/xslt/element/template/index.html b/files/pl/web/xslt/element/template/index.html index b428b9eaf0..7abfd0463a 100644 --- a/files/pl/web/xslt/element/template/index.html +++ b/files/pl/web/xslt/element/template/index.html @@ -1,12 +1,13 @@ --- title: template -slug: Web/XSLT/template +slug: Web/XSLT/Element/template tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/template +original_slug: Web/XSLT/template ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/text/index.html b/files/pl/web/xslt/element/text/index.html index af8c6473af..cde8988ea5 100644 --- a/files/pl/web/xslt/element/text/index.html +++ b/files/pl/web/xslt/element/text/index.html @@ -1,12 +1,13 @@ --- title: text -slug: Web/XSLT/text +slug: Web/XSLT/Element/text tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/text +original_slug: Web/XSLT/text ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/transform/index.html b/files/pl/web/xslt/element/transform/index.html index 8fc9637505..f2f13f9c7f 100644 --- a/files/pl/web/xslt/element/transform/index.html +++ b/files/pl/web/xslt/element/transform/index.html @@ -1,12 +1,13 @@ --- title: transform -slug: Web/XSLT/transform +slug: Web/XSLT/Element/transform tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/transform +original_slug: Web/XSLT/transform ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/value-of/index.html b/files/pl/web/xslt/element/value-of/index.html index 3da1744972..a7b6effd0f 100644 --- a/files/pl/web/xslt/element/value-of/index.html +++ b/files/pl/web/xslt/element/value-of/index.html @@ -1,12 +1,13 @@ --- title: value-of -slug: Web/XSLT/value-of +slug: Web/XSLT/Element/value-of tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/value-of +original_slug: Web/XSLT/value-of ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/variable/index.html b/files/pl/web/xslt/element/variable/index.html index 3a8137da82..aca7814664 100644 --- a/files/pl/web/xslt/element/variable/index.html +++ b/files/pl/web/xslt/element/variable/index.html @@ -1,12 +1,13 @@ --- title: variable -slug: Web/XSLT/variable +slug: Web/XSLT/Element/variable tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/variable +original_slug: Web/XSLT/variable ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/when/index.html b/files/pl/web/xslt/element/when/index.html index e0a132be76..322ed4d96d 100644 --- a/files/pl/web/xslt/element/when/index.html +++ b/files/pl/web/xslt/element/when/index.html @@ -1,12 +1,13 @@ --- title: when -slug: Web/XSLT/when +slug: Web/XSLT/Element/when tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/when +original_slug: Web/XSLT/when ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/element/with-param/index.html b/files/pl/web/xslt/element/with-param/index.html index 6d00d21d50..fba4d114ed 100644 --- a/files/pl/web/xslt/element/with-param/index.html +++ b/files/pl/web/xslt/element/with-param/index.html @@ -1,12 +1,13 @@ --- title: with-param -slug: Web/XSLT/with-param +slug: Web/XSLT/Element/with-param tags: - Dokumentacje - Wszystkie_kategorie - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Element/with-param +original_slug: Web/XSLT/with-param ---

{{ XsltRef() }} diff --git a/files/pl/web/xslt/transforming_xml_with_xslt/for_further_reading/index.html b/files/pl/web/xslt/transforming_xml_with_xslt/for_further_reading/index.html index 7eff31a7f4..c04c9a2595 100644 --- a/files/pl/web/xslt/transforming_xml_with_xslt/for_further_reading/index.html +++ b/files/pl/web/xslt/transforming_xml_with_xslt/for_further_reading/index.html @@ -1,12 +1,13 @@ --- title: Przeczytaj więcej -slug: Web/XSLT/Transformacje_XML_z_XSLT/Przeczytaj_więcej +slug: Web/XSLT/Transforming_XML_with_XSLT/For_Further_Reading tags: - Transformacje_XML_z_XSLT - Wszystkie_kategorie - XML - XSLT translation_of: Web/XSLT/Transforming_XML_with_XSLT/For_Further_Reading +original_slug: Web/XSLT/Transformacje_XML_z_XSLT/Przeczytaj_więcej --- « Transformacje XML z XSLT diff --git a/files/pl/web/xslt/transforming_xml_with_xslt/index.html b/files/pl/web/xslt/transforming_xml_with_xslt/index.html index b02e157f61..29899cce19 100644 --- a/files/pl/web/xslt/transforming_xml_with_xslt/index.html +++ b/files/pl/web/xslt/transforming_xml_with_xslt/index.html @@ -1,6 +1,6 @@ --- title: Transformacje XML z XSLT -slug: Web/XSLT/Transformacje_XML_z_XSLT +slug: Web/XSLT/Transforming_XML_with_XSLT tags: - Strony_wymagające_dopracowania - Transformacje_XML_z_XSLT @@ -8,6 +8,7 @@ tags: - XML - XSLT translation_of: Web/XSLT/Transforming_XML_with_XSLT +original_slug: Web/XSLT/Transformacje_XML_z_XSLT ---

Ogólny przegląd

diff --git a/files/pl/web/xslt/transforming_xml_with_xslt/the_netscape_xslt_xpath_reference/index.html b/files/pl/web/xslt/transforming_xml_with_xslt/the_netscape_xslt_xpath_reference/index.html index 59da884b56..20148ad48d 100644 --- a/files/pl/web/xslt/transforming_xml_with_xslt/the_netscape_xslt_xpath_reference/index.html +++ b/files/pl/web/xslt/transforming_xml_with_xslt/the_netscape_xslt_xpath_reference/index.html @@ -1,13 +1,14 @@ --- title: Dokumentacja XSLT/XPath -slug: Web/XSLT/Transformacje_XML_z_XSLT/Dokumentacja_XSLT_XPath +slug: Web/XSLT/Transforming_XML_with_XSLT/The_Netscape_XSLT_XPath_Reference tags: - Dokumentacje - Wszystkie_kategorie - XPath - XSLT - - 'XSLT:Dokumentacje' + - XSLT:Dokumentacje translation_of: Web/XSLT/Transforming_XML_with_XSLT/The_Netscape_XSLT_XPath_Reference +original_slug: Web/XSLT/Transformacje_XML_z_XSLT/Dokumentacja_XSLT_XPath ---

{{ XsltRef() }} -- cgit v1.2.3-54-g00ecf

Dokumentacja

Hacking documentation on mozilla.org
Another page with hacking-related documentation. We're working on this.
Hakowanie Firefoksa oraz kilka fragmentów kodu
Getting involved in front-end development.
Kompilowanie Firefoksa, Thunderbirda oraz innych aplikacji
This section contains documentation on how to build Firefox, Thunderbird, and other Mozilla-based applications.
Strategie programowania Mozilli
Jak sprawić by programowanie w środowisku Mozilli było wydajne.
Developing Tests
Testing information and automation tools.
Debugging FAQs
Tips on debugging are platform specific. Choose: Windows, Linux, or Mac OS X.
Tworzenie poprawki i jak dostać review i włączyć kod do repozytorium
Podpowiedzi jak tworzyć poprawki i sprawić by zmiany znalazły się w drzewie.
Przeglądanie i przeszukiwanie kodu źródłowego Mozilli online
Użycie systemu Mozilla Cross Reference (MXR) do przeglądania i przeszukiwania kodu źródłowego wszystkich produktów Mozilli.
Uzyskiwanie praw zapisu do kodu źródłowego Mozilli
Dowiedz się jak uzyskać dostęp do zapisu do repozytorium.

Pokaż wszystkie...

Społeczność

Narzędzia

  • Bugzilla : baza danych błędów projektów Mozilli.
  • MXR (wcześniej LXR): przeglądanie i przeszukiwanie źródeł repozytoriów.
  • Bonsai: dowiedz się kto zmienił co, w jakim pliku i kiedy.
  • Tinderbox : Pokazuje status drzewa. Zajrzyj tam zanim pobierzesz źródła, albo coś wyślesz do repozytorium.
  • Crash tracking: Socorro, Talkback
  • graphs.mozilla.org analiza wydajności.

Pokaż wszystkie...

Powiązane tematy

Kontrola Jakości