Why can't `window.location.reload` be called back

Why can"t window.location.reload be called back?

        // 
        function fn01 (fn){
            fn && fn();
        };
        function callBackFn(){
            console.log("");
        };

        // 
        fn01(callBackFn); //
        fn01(window.print); //
        fn01(window.location.reload); //
        //
        

-

I know that you can wrap location.reload with an anonymous function, and then you can implement a callback
. I wonder why it can"t be called back.
Thank you for your help from the old driver, and thank you for answering
-

at the front desk.
 ` ` 
 this 
fn01(window.location.reload.bind(location));
May.30,2022

because this has changed


Thank you for changing the name
it seems that this has changed. You can solve
fn01 (window.location.reload.bind (location)) by doing the following

Menu