[1,2,3].forEach(console.log)
Expected Results:
logs 3 messages in the console
Actual Results:
Error: 'log' called on an object that does not implement interface Console.
This used to be the behavior in Firefox, but it recently broke. I've filed a bug to revert to the old behavior where the methods were always bound to console, but figured we should codify this behavior here too.
Its kind of masochistic to force developers to bind every time they pass console.log as an argument!