cara menghapus __proto__ dari objek JavaScript

// Replacing the original prototype with null
MyConstructor.prototype = Object.create(null);
Expensive Emu