首页 > 快手商业化研发前端实习面经
头像
灯野鹿丶
编辑于 2020-11-09 19:26
+ 关注

快手商业化研发前端实习面经

  1. <style>
    .classA {
     color: blue;
    }
    .classB {
     color: red;
    }
    </style>
    <p class="classB classA">123</p>
    p的颜色是bule还是red?
  2. div.
    margin-top: 30%
    padding-top: 30%是基于什么的百分比
  3. let a = 0;
    console.log(a);
    console.log(b);
    let b = 0;
    console.log(c);
    function c() {}
    输出什么?
  4. function a(b, c) {
      function b(){};
      alert(b);
    }
    a(1, 2);
    function a(b, c) {
      var b;
      alert(b);
    }
    a(1, 2);
    输出什么
  5. function Parent() {}
    var p = new Parent()
    写下p、Parent、Function、Object的原型链
  6. console.log(1);
    setTimeout(() => {
    console.log(2);
    });
    new Promise(resolve => {
    console.log(5);
    resolve();
    console.log(6);
    }).then(() => {
    console.log(7);
    });
    Promise.resolve().then(() => {
    console.log(8);
    process.nextTick(() => {
      console.log(9);
    });
    });
    输出什么?
  7. 说说vue的scoped
  8. vue父组件和子组件的生命周期
  9. computed和watch的区别
  10. vue router的hash和history的区别
  11. vue数组用下标更改元素会更新视图吗?那用什么方法可以更新?
  12. 说说http缓存
  13. css垂直居中方法
  14. Element-UI要覆盖默认样式怎么做
  15. 算法题:(LC. 384)打乱数组(只需要打乱功能)

更多模拟面试

全部评论

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

推荐话题

相关热帖

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

近期精华帖

热门推荐