Tagged Questions
9
votes
1answer
2k views
What is the difference between a function object and a callable object?
I recently saw the presentation about the changes in ECMAScript 5. And there was a slide with this statement:
Function vs Callable
typeof f === 'function' // → f is Callable
...