What does javascript null mean?
The null value is a unique value representing no value or no object. It implies no object,or null string,no valid boolean value,no number and no array object. In JavaScript, null is a special value that represents the intentional absence of any object value. It’s a primitive value. When a variable is assigned null, it means … Read more