So I am aware about prototype and proto
function Vehicle() { this.brand=brand } const vehicle =new Vehicle("Ford") console.log(vehicle.__proto__===Vehicle.prototype) // true
and when I print this I get this
Why I cant see the proto property ? .Is __proto__ === [[Prototype]] ?
Is __proto__ === [[Prototype]] ?