Joined January 2018
·

nerdchacha

var a = Object.create(null); is not the same as var a = {};
var a = Object.create(null); sets the prototype of a as null where as
var a = {}; sets the prototype of a as the Object object

Achievements
1 Karma
0 Total ProTip Views