Posts

Showing posts from October, 2018

NULL vs Undefined in javascript

Undefined - Its a type.When we declare a variable in javascript but not assigning any value to that variable. so when you read that variable, it will show as undefined. Null - Its an assignment value. You can assign this value to any variable. Also, null is an object.