Javascript Notes
Variables
let is the preferred way in modern JavaScript.
Data Types
Null = Null (type of null is an object: its a bug)
Null specifies that we have something to store value but that value is simply nonexistent.
Undefined = undefined
The value is n...
avadhut.hashnode.dev3 min read