What's the difference between window.location.reload () and location.reload ()?

does it feel the same?

Mar.24,2022

window.location = location

true


location is in the window object.


makes no difference. Window is the global object of the browser JS engine


. The latter will report an error in strict mode

.
Menu