-
自我介绍
-
问了些校园经历
-
怎么学习的?
-
跨域是什么意思?为什么需要跨域?怎么跨域?怎么判断同源?a.baidu.com和b.baidu.com需要跨域吗?
-
get和post的区别?
-
知道哪些加密方法?
-
https了解吗?
-
http2.0有哪些变化?
-
http1.1链接限制
-
vue生命周期
-
vue-router
-
原型链
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();
-
call和apply和bind的区别
-
手写bind函数
-
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);
-
有什么要问的
全部评论
(1) 回帖