Why I can't create a new instance of window.
When I try:
var mywin = new window();
it throws:
TypeError: object is not a function
I guess window is a static object, is there any way of converting static objects to dynamic so that I can do something like this:
window.prototype.something = 'value';
Could someone shed some light on this please?