(1)手写clearfix
.clearfix:after{
content:'';
display:table;
clear:both;
}
(2) 手写圣杯模型
(3)手写深拷贝 递归
const obj3={
age:20,
name:'xxx',
address:{
}
},
arr:['a','b','c']
function deeepClone(obj={}){
}
(4)手写画图解释原型链(class的原型和本质)