Comment on A re-introduction to JavaScriptparentComments−foldr11yBasically, an object which implements call will always cause `typeof` to return "function".Are there any implementations which actually do this? In Node:typeof({ call: function () { } }) --> 'object'({ call: function () { } })() --> TypeError: object is not a function
Comments
Are there any implementations which actually do this? In Node:
typeof({ call: function () { } }) --> 'object'
({ call: function () { } })() --> TypeError: object is not a function