继续日更。真的有用哇发面经攒rp,加大力度!!2025.9.5 抖音电商 45min没有什么项目拷打,八股盛筵&寿司盛筵自我介绍&项目介绍vue中虚拟dom的优缺点CSS中的定位方式http的header中有什么常见的关键字浏览器缓存中的关键字,怎么用的开发时网页白屏怎么排查问题变量的作用域怎么确定this怎么判断---手撕:1. 二叉树的右视图2. 变量作用域题,求输出var a = 10;(function () {console.log(a); // ①a = 5; // ②console.log(window.a); // ③})();console.log(a); // ④var a = 20;console.log(a); // ⑤3. this相关题,求输出window.name = 'ByteDance';function A() {this.name = 125;}A.prototype.getA = function () {console.log(this);return this.name;};