// 字面量方法创建对象 var mrDeng = { name: "MrDeng", age: 40, sex: "male", smoke: function () { console.log("yi yang qian xi!"); } }
// 构造函数方法创建对象// 大驼峰命名法