SOURCE

var length = 100;
function f1(){
    console.log(this.length)
}
var obj = {
    x:10,
    f2:function(){
        f1();
        arguments[0]();
    }
}
obj.f2(f1,1)

console 命令行工具 X clear

                    
>
console