If you look at Object
in Chrome DevTools you'll see that it's prototype
property points towards an object, and I expect this.
Object
Function
s prototype
property looks like it points towards a function which I find suprising.
Function
First of all, is this true? And if so, is there any reason why Function
's prototype
key points towards a function object instead of just a plain object? (Are there any big implications to this?)