首页 > 字节实习前端一面面经
头像
LYNNzZ361
编辑于 2021-03-22 22:51
+ 关注

字节实习前端一面面经

1. 讲讲js原型和原型链?
2. setTimeout(fn, 0)什么意思? 讲到了事件循环、宏任务、微任务
3. 有哪些宏任务和微任务?
4 宏任务和微任务的执行顺序问题
5. 轮播图无限滑动怎么做?
6. requestanimationframe?
7. cookie、sessionStorage、localStorage、session?
8. 哪些可以共享?
9 同源策略?
10. 跨域有哪些方法?
任务1
输出什么?
Function.prototype.a = 'Function';
Object.prototype.a = 'Object';

function Person() {};
var child = new Person();
console.log(Person.a);
console.log(child.a);
console.log(child.__proto__.__proto__.constructor.constructor.constructor);
任务3
输出什么?
 if ([] == false) {console.log(1);};
 if ({} == false ) {console.log(2);};
 if ([]) {console.log(3);};
 if ([1] == [1]) {console.log(4);};
任务3
输出什么?
1)从二叉树的根到叶子节点称为一条路径,路径上每个节点的value之和为路径和值,本题要求所有的路径中是否存在一条和值为N的
任务4
输出什么?
2)给定单链表,求离"终点"距离为 k 的节点,要求只扫一次且空间复杂度为O(1)

更多模拟面试

全部评论

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

推荐话题

相关热帖

近期热帖

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

近期精华帖

热门推荐