快手前端一面凉经
一、CSS
- CSS Position定位的各个参数分别是基于什么定位的?
二、JS
- 你理解的继承是什么?
- 继承有什么作用?
- 写demo:Parent类里有name属性和方法,写一个Child类继承Parent类,让Child的实例调到Parent的方法。
- 一个类的原型对象、实例、构造函数,他们三个的关系是什么?
- 以Parent为例,写注释标注上述三个具体指的什么?(constructor寄托在谁身上的)
- 原型对象:Parent.prototype
- 实例:new Parent()
- 构造函数:Parent本身
- 手写防抖函数
- 闭包是怎么形成的?
- 手写算法:最长回归字串