diff --git a/src/data/roadmaps/javascript/content/null@CxyNyFMuTLS3owtRMgClD.md b/src/data/roadmaps/javascript/content/null@CxyNyFMuTLS3owtRMgClD.md index b0925b362..1046d6c60 100644 --- a/src/data/roadmaps/javascript/content/null@CxyNyFMuTLS3owtRMgClD.md +++ b/src/data/roadmaps/javascript/content/null@CxyNyFMuTLS3owtRMgClD.md @@ -1 +1,12 @@ -# null \ No newline at end of file +# null + +The `null` value in JavaScript signifies the deliberate absence of any object value. It is considered as one of JavaScript's primitive values and a `falsy` value. + +*Deliberate absence* emphasises the intentional use of `null` to indicate that a variable does not point to any object. This explicit declaration conveys the purposeful nature of null, showing that the variable is meant to be empty or non-existent at execution time. + +In essence, `null` is a way to reset a variable, signalling that it should not reference any object. + +Visit the following resources to learn more: + +- [@article@What is null in JavaScript](https://www.altcademy.com/blog/what-is-null-in-javascript/) +- [@article@null in JavaScript](https://masteringjs.io/tutorials/fundamentals/null) \ No newline at end of file