1.如何区分array,null和object2.vue的优点和缺点3.http和https的异同4.https的缺点5.flex布局6.浅拷贝和深拷贝7.回流的重绘的优化方法8.js数据类型9.问项目代码题1: let a = 0 function f1(){ setTimeout(function(){ console.log(this.a) }, 200) } function f2(){ setTimeout(()=>{ console.log(this.a) }, 200) } f1.call({a:1}) f2.call({a:2})代码题2:每隔一秒,打印当前的时间代码3:见图片