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
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
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