9951 explained code solutions for 126 technologies


javascriptDifference between null and undefined


var a;
typeof a; // undefined
a = null;
typeof a; // objectctrl + c
var a;

declare variable but assign no value, will result in undefined

a = null;

assign null value to variable