字节飞书提前批前端一面
1.自我介绍
2.三个题,闭包作用域相关、手写promise.all、括号匹配
-------------
var a = 3;
var total = 0;
var res = [];
function foo(a) {
for (var i = 0; i < 3; ++i) {
res[i] = function () {
total += i * a;
console.log(total);
};
}
}
foo(1);
res[0]();
res[1]();
res[2]();
------------------------
3.工程化模块化的理解
4.react hooks的理解,hooks底层原理是什么
5.实习、项目拷打
别的记不得了
#字节# #字节跳动信息集散地# #字节提前批前端#
2.三个题,闭包作用域相关、手写promise.all、括号匹配
-------------
var a = 3;
var total = 0;
var res = [];
function foo(a) {
for (var i = 0; i < 3; ++i) {
res[i] = function () {
total += i * a;
console.log(total);
};
}
}
foo(1);
res[0]();
res[1]();
res[2]();
------------------------
3.工程化模块化的理解
4.react hooks的理解,hooks底层原理是什么
5.实习、项目拷打
别的记不得了
#字节# #字节跳动信息集散地# #字节提前批前端#
全部评论
大佬,一面过了吗?
hooks的底层原理是什么🤔️
base那里呀
前三个题一模一样 但是第一题答错了呜呜呜
相关推荐