I want to step into(e.g.F11) Object.create() and see what is happening internally. Is there any way to achieve this in Chrome Dev tools?
var o = {name: 'pat'};
var p = Object.create(o);
I want to step into(e.g.F11) Object.create() and see what is happening internally. Is there any way to achieve this in Chrome Dev tools?
var o = {name: 'pat'};
var p = Object.create(o);