当前位置: 首页 > 面试经验 >

字节前端实习二面凉经

优质
小牛编辑
168浏览
2023-03-28

字节前端实习二面凉经

字节一面

为什么学前端

自我介绍

介绍项目

项目难点

双向绑定原理

v-model语法糖,具体绑定哪些属性

节流时参数改变,请求发不出去怎么办

前端高并发

图片高并发

es6新特性

箭头函数

const fn1 = x => x;

const fn2 = x => {x};

const fn3 = x => ({x});

console.log(fn1(1));

console.log(fn2(1));

console.log(fn3(1));

var, let, const 区别

跨域

事件循环

强缓存协商缓存

v-if,v-show区别

vue-router原理

hash模式和history模式如何跳转?

代码题:链表交点

Promise.all手写

函数柯里化手写实现add(2, 3, 4) = 9, add(2, 3)(4) = 9, add(2)(3)(4) = 9

字节二面

axios和ajax的区别

进程和线程的区别

轮播图的js实现

setTimeout实际延迟时间

项目跨域

tcp,udp区别

xss,csrf防范手段

vue响应式原理

css实现三栏布局

写一个get方法

resp = {

message: 'success',

code: 0,

data: [{title: 'hello'}]

}

get(resp, 'data[0].title') // hello

get(resp, 'data[1].title') // null

#字节跳动##实习##面经#
 类似资料: