Najnowsze tutoriale tworzenie stron internetowych
 

JavaScript undefined Property

<JavaScript Funkcje globalne

Przykład

Sprawdź, czy zmienna jest zdefiniowana:

var x;

if (x === undefined) {
    txt = "x is undefined";
} else {
    txt = "x is defined";
}

Wynikiem txt będą:

x is undefined
Spróbuj sam "

Więcej "Try it Yourself" przykłady poniżej.


Definicja i Wykorzystanie

Nieruchomość niezdefiniowany wskazuje, że zmienna nie została przypisana wartość.


Wsparcie przeglądarka

Nieruchomość
undefined tak tak tak tak tak

Szczegóły techniczne

JavaScript wersja: 1.3

Przykłady

Więcej przykładów

Przykład

Sprawdź, czy zmienne są niezdefiniowane:

var t1 = "myVar";               // defined
var t2;                         // undefined

if (t1 === undefined) {
    txt1 = "t1 is undefined";
} else {
    txt1 = "t1 is defined";
}

if (t2 === undefined) {
    txt2 = "t2 is undefined";
} else {
    txt2 = "t2 is defined";
}

txt = txt1 + "<br>" + txt2;

Wynikiem txt będą:

t1 is defined
t2 is undefined
Spróbuj sam "

<JavaScript Funkcje globalne