字节飞书文档 12.20 15:00 二面 自我介绍 介绍一下你的项目,有什么难点吗 this指向输出问题 var a = function(){ this.b = 3 } var c = new a() a.prototype.b = 10 var b = 7 a() console.log(b)//3 console.log(c.b)//3 repeat问题 function repeat(func, times, wait){ ... } var rp = repeat(alert, 4, 3) rp('helloWorld') //每隔3秒Alert一次helloWorld,...