about

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
function People(name,sex){
this.name = name
this.sex = sex
this.hobbit = []
}
People.prototype.addHobbit = function(h){
this.hobbit.push(h)
return this
}
People.prototype.todos = function(){
console.log('Looking for work.......')
}
var I = new People('Elsie','female')
I.addHobbit('eat').addHobbit('sleep').addHobbit('coding').addHobbit('music').addHobbit('lose weight')
while (true){
I.todos()
}