标签:turn -- 代码 this his 重复 总结 创建对象 创建
<script>
// 使用Object创建对象
// var car = new Object();
// car.name = ‘merz‘
// car.color = ‘red‘;
// 对象字面量创建对象
// var car = {
// name :"BMW",
// color :"blue"
// };
// 局限性:当需要创建n个同类重复对象时,需要重复代码n次。
// 工厂模式
function Car(color) { this.name="Audi"; this.age=3; this.color=color; this.health=function () { console.log(this.age); this.age--; return; } } var car1= new Car("red"); car1.age=5;
标签:turn -- 代码 this his 重复 总结 创建对象 创建
原文地址:https://www.cnblogs.com/nice2018/p/9789299.html