What's the type of prototypes in Javascript?
I mean for example the type of:
- Object.prototype
- Boolean.prototype
- Number.prototype
- String.prototype
- Date.prototype
- RegExp.prototype
- Array.prototype
- Set.prototype
- Map.prototype
- Function.prototype
When using typeof all of them return "object", but I was wondering if they are instances of a particular type of Object.