Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardJavaScriptthis-binding spec edge casesSingle-choice MCQ

What does the spec say happens to the this argument when a bound function (from Function.prototype.bind) is later invoked with new?

function C(x) { this.x = x; } const B = C.bind({ tag: 'ignored' }); const obj = new B(5);