⟩ Tell me what Is The Difference Between Undefined Value And Null Value?
<undefined> Vs. <null> value.
1. A variable will have <undefined> value if it has declaration but not assigned any value.
2. A variable will yield a <null> value if assigned with null.
3. <undefined> is a type itself whreeas <null> is an object.
4. <undefined> value is set via JavaScript engine whereas null value is set directly in the code.