Null is intentional absence of any value as it must be assigned.
undefined variables don’t have an assigned value are undefined.
To demonstrate an example for the both:
let logged in user =null
value is explicitly nothing
logged in user= ‘zak’
User logs in.
Comments