Null
What is Null
The data type null
represents that there is no value. It is a primitive value in javascript.
To have a better understanding of null
, we must know these two features about null
:
null
provides the non-existent value or empty value.null
has to be assigned to a variable as it is not assigned by default (unlike theundefined
).
12let number = null; console.log(number);
Swipe to start coding
Declare a variable selectColor
and assign the value of null
to the variable and display the value of the variable.
Lösung
Danke für Ihr Feedback!
single
Fragen Sie AI
Fragen Sie AI
Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen
Awesome!
Completion rate improved to 2
Null
Swipe um das Menü anzuzeigen
What is Null
The data type null
represents that there is no value. It is a primitive value in javascript.
To have a better understanding of null
, we must know these two features about null
:
null
provides the non-existent value or empty value.null
has to be assigned to a variable as it is not assigned by default (unlike theundefined
).
12let number = null; console.log(number);
Swipe to start coding
Declare a variable selectColor
and assign the value of null
to the variable and display the value of the variable.
Lösung
Danke für Ihr Feedback!
Awesome!
Completion rate improved to 2single