记住的就这么多了
一面
1.CDN
2.强语言转弱语言
3.http/https
4.去重
5.找最长不重复子串
6.事件轮询机制
7.树形结构存储的优点
8.缓存
9.时间复杂度的概念、排序算法的时间复杂度
二面:
(二面给我的感觉就是我啥也不是,我说了太多废话,面试官好几次打断我)
1.跨域
2.https加密
3.
fucntion a(){
var x=0;
return function(){
return x++;
}
}
var a1=a;
var a2=a;
console.log(a1());
console.log(a2());
var a3=a;
console.log(a3());
console.log(a3())
4.
function a(){
this.x='hello'
}
a.prototype.x='world';
a.x='123';
console.log(a.x);
delete a.x;
console.log(a.x);
delete a.x;
console.log(a.x);
a.x="undefined"
console.log(a.x);
5.强制缓存和协商缓存的区别
6.React实现一个dialog
7.实现水平垂直居中
8.闭包的应用
9.call、bind、apply区别
10.
function a(x,y,z){
cosnole.log(this,x,y,z)
}
a.bind({},'qq','ww')('aa','zz')
11.字符串转对象嵌套
12.es6新增的特性
13.BFC
#好未来秋招##好未来面试#