Diferencias entre `undefined` y `null`
undefined
significa una variable no se ha declarado, o se ha declarado pero aún no se le ha asignado un valornull
es un valor de asignación que significa “no value”- Javascript establece variables no asignadas con un valor por defecto de
undefined
- Javascript nunca se setea un valor de
null
. Es utilizado por los programadores para indicar que unvar
no tiene ningún valor. undefined
no es válido en JSON, mientras quenull
si lo esundefined
typeof esundefined
null
typeof es unobject
. porque?- Ambos son primitivos
- Ambos son falsy
(
Boolean(undefined) // false
,Boolean(null) // false
) -
Se puede saber si una variable es undefined
typeof variable === "undefined"
-
Puede comprobar si una variable es null
variable === null
-
The equality operator considers them equal, but the identity doesn’t El operador igualdad considera iguales, pero la identidad no lo hace
null == undefined // true null === undefined // false
MEET THE NEW JSTIPS BOOK
You no longer need 10+ years of experience to get your dream job.
Use the 100 answers in this short book to boost your confidence and skills to ace the interviews at your favorite companies like Twitter, Google and Netflix.
GET THE BOOK NOW
MEET THE NEW JSTIPS BOOK
The book to ace the JavaScript Interview.
A short book with 100 answers designed to boost your knowledge and help you ace the technical interview within a few days.
GET THE BOOK NOW