Gli ultimi tutorial di sviluppo web
 

JavaScript undefined Property

<Funzioni JavaScript globali

Esempio

Prova se una variabile non è definita:

var x;

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

Il risultato di txt sarà:

x is undefined
Prova tu stesso "

Più "Try it Yourself" esempi di seguito.


Definizione e l'utilizzo

La proprietà non definita indica che una variabile non è stato assegnato un valore.


Supporto browser

Proprietà
undefined

Dettagli tecnici

Versione JavaScript: 1.3

Esempi

Altri esempi

Esempio

Verifica se le variabili sono undefined:

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;

Il risultato di txt sarà:

t1 is defined
t2 is undefined
Prova tu stesso "

<Funzioni JavaScript globali