Skip to content

Instantly share code, notes, and snippets.

@shoaibmehedi7
Created April 13, 2021 13:36
Show Gist options
  • Save shoaibmehedi7/37754b90016ca94727d4328710bb0f5a to your computer and use it in GitHub Desktop.
Save shoaibmehedi7/37754b90016ca94727d4328710bb0f5a to your computer and use it in GitHub Desktop.
var object = {
res: 0,
add: function(a, b) {
this.res = a + b;
return this;
},
multiply: function(a) {
this.res = this.res * a;
return this;
}
};
object.add(5, 10).multiply(10)
console.log(object.res)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment