[Fixed] Using arguments.callee in strict mode causes an error.

There is no mapping mechanism for using arguments and parameters in strict mode;

function fn(){
    console.log(this)
}
fn();
Copy the code

This function prints the window object in non-strict mode and undefined in strict mode