// 字面量 json
var student={
id:10001,
name:"张三",
scores:[
{subject:"html",score:90},
{subject:"JS",score:90},
]
}
student.id
function Student(id,name){
this.id = id;
this.name = name;
this.scores=[
{subject:"html",score:90},
{subject:"JS",score:90},
]
}
Student.prototype.sex="男";
Student.prototype.eat=function(food){
console.log("吃"+food)
}
var stu=new Student(1000,"张三");
stu.eat("米饭");
console.log(stu.sex)
// Object
var stu2=new Object();
stu2.id=1000;
stu2.name="张三";
stu2.scores=[
{subject:"html",score:90},
{subject:"JS",score:90},
]
// 链式编程
function Student(id,name){
this.id = id;
this.name = name;
this.eat=function(food){
console.log("吃"+food)
return this
},
this.sleep=function(){
console.log("睡")
return this
}
}
var stu = new Student(1001,"张三");
stu.eat("").sleep().eat("").sleep().eat("").sleep().eat("").sleep();
浙公网安备 33010602011771号