Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
How come the code below doesn't work?
var x = {}; x.a = alert; x.a('asdf'); // TypeError: Illegal invocation
window
Because the internals of the alert function requires that the value of this be window.
alert
this
x.a.call(window,'asdf');
… will work.
Add a comment
null
x.a.call(null, 'asdf');
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.
windowso it can't be called with a different context