Skip to content

Instantly share code, notes, and snippets.

@ff6347
Last active April 2, 2020 07:28
Show Gist options
  • Save ff6347/aecc0854658a786197bf8449422602c0 to your computer and use it in GitHub Desktop.
Save ff6347/aecc0854658a786197bf8449422602c0 to your computer and use it in GitHub Desktop.
JS Method Chaining example #js
const chain = {
value: 0,
up () {
this.value = this.value + 1;
return this;
},
down (){
this.value = this.value - 1;
return this;
}
}
chain.up().up().down().down().up().up();
console.log(chain.value)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment