2021-10-18 腾讯初面

基础题

  1. TCP三次握手
  2. http2.0相对于http1.1有哪些变化
  3. https为什么更安全
  4. 301与304的区别
  5. vue双向绑定原理
  6. 事件循环
  7. 重绘与回流
  8. script标签是否按照顺序执行
  9. 从浏览器地址栏输入一个地址,发生了什么

实操题

随便打开一个网页,提出三点优化建议

编码题

let list = [
  {
    id: 'ab',
    children: [
      {
        id: 'cd',
        children: [{
          id: 'ef',
          children: []
        }]
      }
    ]
  }
]


// 输入:'ef'
// 输出:ab-->cd-->ef
function getResult(list,target) {
  
}


你可能感兴趣的:(2021-10-18 腾讯初面)