Undecided/null
- zakariyesahid96
- Jan 29, 2022
- 1 min read
Updated: Feb 16, 2022
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