Why is it that this works,
setTimeout(function() { window.location.reload() }, 3000);
but this doesn't?
setTimeout(window.location.reload, 3000);
I receive the following error: TypeError: 'reload' called on an object that does not implement interface Location.