This vector shows all the available events on the window object.
Object.getOwnPropertyNames(window).forEach(prop=>/^on/.test(prop)&&log(prop))
1337