爱用科技 上海 校招 HR 面 已OC
2023-03-06 11:30
- 前端规模 四十人
- 新项目 Vue3+ts 诸多老项目
- 9:30 - 12:30 14:00 - 19:00
一面
2023-03-07 12:00
博客的背景动画 改成火焰
dependencies 和 devDependencies 的区别
monorepo 的优点
npm 发包时的 workspace
git fetch 和 git pull 区别
git rebase
react18 和 react17 的区别
虚拟列表 定高 => 不定高
webpack 的工作流程
loader 和 plugin 的区别
node 和浏览器中的事件循环的区别
下面的代码 a 输出结果
ts
const a = await console.log(1)
1
- 下面两段代码的区别
ts
let count = 0
const setCount = async () => {
count += await getCount()
}
const setCount2 = async () => {
const oldCount = await getCount()
count += oldCount
}
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
- 遇到过的最难的问题
反问
前端 react 为主,sass 服务,老项目迁移 php => node
二面
2023-03-07 18:00