Is there a difference between:
window.onload = someFunction;
window.onload = someFunction();
Th
if you use
a function with the name of someFunction is called on window.onload
someFunction() runs and the result is assigned to window.onload