一面(70分钟) 盒模型是什么? 下面代码中div的实际宽度是多少? <style> div { width: 200px; margin: 20px; padding: 10px; } </style> <div> </div> box-sizing的意义是什么 箭头函数的特点? 临时性死区 js中有哪些基本类型? 下面的代码输出什么? function A(x) { this.x = x; } A.prototype.x = 1; function B(x) { this.x = x; } B.prot...