I was going through the concept of inheritance ,Now the situation is that let us have and empty constructor function
function Constructor(/* i am an empty function */ );
Now we are going to add a property to Object.prototype and make an instance of Constructor function
Object.prototype.game = "hello i am a game";
let a = new Constructor();
a.game();
Now we Know the output is Going to be "hello i am a game".Therefore var a inherits from Object and therefore Constructor function inherits from Object therefore
Constructor.__proto__ === Object.prototype
Must be true than why is it coming out to be false