一共43min
1. 为什么选择前端
2. 项目问题
3. 聊到了缓存, 问了sessionStorage是什么
4. 了解cookie吗, 如何设置禁止脚本操作cookie
5. http状态码
6. 304是做什么的, 这个状态码涉及到的操作是什么
7. http如何维持持久的连接
8. TCP为什么可靠
9. Vue3相比Vue2的区别
10. 为什么Vue2和Vue3响应式原理不同
11. Vue2如何对数组设置响应式
12. 选项式API和组合式API的区别
13. 说结果:
async functio async1() {
console.log('async1 start')
await async2()
console.log('async1 end')
}
async function async2() {
console.log('async2')
}
console.log('script start')
setTimeout(function () {
console.log('setTimeout')
}, 0)
async1()
new Promise(function (resolve){
console.log('promise1')
resolve()
}).then(function() {
console.log('promise2')
})
console.log('script end')
14. 手写Promise.all
15. 反问
飞书来捞我了, 面试过程还算不错, 只不过最后一题没写完就进入反问环节了