创建一个不含原型对象的对象

index.js

const specialObj = Object.create(null);
console.log(specialObj.__proto__); // undefined
原文地址:https://www.cnblogs.com/aisowe/p/15245942.html