A continuación se muestra el ejemplo de la propiedad indefinida .
- Ejemplo:
<script>
var
a =
"Geeksforgeeks"
function
test() {
if
(
typeof
a ===
"undefined"
) {
txt =
"'a' is undefined"
;
}
else
{
txt =
"'a' is defined"
;
}
document.write(txt);
}
test();
</script>
- Producción:
'a' is defined
La propiedad undefined se utiliza para comprobar si se asigna un valor a una variable o no .
Sintaxis:
var x; if (typeof x === "undefined") { txt = "x is undefined"; } else { txt = "x is defined"; }
Valor devuelto: Devuelve ‘definido’ si a la variable se le asigna algún valor e ‘indefinido’ si a la variable no se le asigna ningún valor.
Más código de ejemplo para la propiedad anterior son los siguientes:
Programa 1:
<!DOCTYPE html> <html> <body> <center> <h1 style="color: green"> GeeksforGeeks </h1> <button onclick="test()"> Press </button> <h4> Click on the Press button to check if "a" is defined or undefined. </h4> <p id="gfg"></p> <script> function test() { if (typeof a === "undefined") { txt = "'a' is undefined"; } else { txt = "'a' is defined"; } document.getElementById( "gfg").innerHTML = txt; } </script> </center> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- Firefox
- explorador de Internet
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por riarawal99 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA