首页 > CVTE前端电话一面面经
头像
梦.幽辰
编辑于 2021-01-08 10:25
+ 关注

CVTE前端电话一面面经

  • BFC

  • 原型链

  • 同源策略(跨域:postMessage,jsonP,CORS)

  • 行内元素 块级元素 的margin和padding

  • 环形进度条

  • 选择排序

  • 强缓存 协商缓存

  • 平时项目中用过什么优化手段

  • ES6(箭头函数),箭头函数是否可以new

  • 插入排序优化

  • 任务队列

    new Promise((resolve)=>{
        resolve()
    }).then(() => {
        console.log(1)
        setTimeout(() => {
            console.log(2)
        }, 0);
    })
    
    setTimeout(() => {
        console.log(3)
        new Promise((resolve)=>{
            resolve()
        }).then(() => {
            console.log(4)
        })
    }, 0);
    
    // 1, 3, 4, 2
  • 四种存储方式,跨域时保证localStorage共享(postMessage)

  • 水平居中,在不设置宽高的情况下

应该就这么多,面了将近一小时

更多模拟面试

全部评论

(2) 回帖
加载中...
话题 回帖

推荐话题

相关热帖

近期热帖

历年真题 真题热练榜 24小时
技术(软件)/信息技术类
查看全部

近期精华帖

热门推荐