首页 > 作业帮提前批前端一面
头像
solo~
编辑于 2020-08-20 23:03
+ 关注

作业帮提前批前端一面

  1. 自我介绍

  2. 问了些校园经历

  3. 怎么学习的?

  4. 跨域是什么意思?为什么需要跨域?怎么跨域?怎么判断同源?a.baidu.com和b.baidu.com需要跨域吗?

  5. get和post的区别?

  6. 知道哪些加密方法?

  7. https了解吗?

  8. http2.0有哪些变化?

  9. http1.1链接限制

  10. vue生命周期

  11. vue-router

  12. 原型链

    var F = function() {};
    
    Object.prototype.a = function() {
      console.log('a');
    };
    
    Function.prototype.b = function() {
      console.log('b');
    }
    
    var f = new F();
    
    f.a();
    f.b();
    
    F.a();
    F.b();
    
    
  13. call和apply和bind的区别

  14. 手写bind函数

  15. setTimeout(function () {
      console.log(1);
    }, 100);
    
    new Promise(function (resolve) {
      console.log(2);
      resolve();
      console.log(3);
    }).then(function () {
      console.log(4);
      new Promise((resove, reject) => {
        console.log(5);
        setTimeout(() =>  {
          console.log(6);
        }, 10);
      })
    });
    console.log(7);
    console.log(8);
    
  16. 有什么要问的

更多模拟面试

全部评论

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

推荐话题

相关热帖

近期热帖

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

近期精华帖

热门推荐