1.如何使用两个栈实现一个队列?
2、new Fn() 的过程中发生了什么?
3、
var name = “global”;
function Person(name) {
this.name = name;
this.sayName = () => {
console.log(this.name)
}
}
const personA = new Person(‘aaa’);
const personB = new Person(‘bbb’);
personA.sayName();
personB.sayName();
4、背景图宽度固定,高度自适应
background-size
5、外边距折叠
全部评论
(2) 回帖