SOURCE

console 命令行工具 X clear
> Uncaught TypeError: Cannot read properties of undefined (reading 'call')
>
console
function fn1() {
    name = 'tom'
    // console.log(this.name)
}

function fn2() {
    name = 'caldey'
}

fn1().call(fn2)