Basic Definition
null and undefined is part of Javascript primitive datatypes living happily with 5 others.
let javascriptPrimitives = ['string','number','null','undefined','boolean','symbol', 'bigint'];
Note - Both null and undefined will represen...