merges
This commit is contained in:
parent
779601901f
commit
5372c18379
152 changed files with 482 additions and 371 deletions
|
@ -0,0 +1,15 @@
|
|||
|
||||
let ladder = {
|
||||
step: 0,
|
||||
up: function() {
|
||||
this.step++;
|
||||
return this;
|
||||
},
|
||||
down: function() {
|
||||
this.step--;
|
||||
return this;
|
||||
},
|
||||
showStep: function() {
|
||||
alert(this.step);
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue