Created
February 19, 2013 18:29
-
-
Save Sljubura/4988514 to your computer and use it in GitHub Desktop.
Simple chaining
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Chaining pattern | |
| var main = { | |
| index: 10, | |
| addToIndex: function () { | |
| this.index += 10; | |
| return this; // return instance of the object and allow chaining | |
| }, | |
| subtractFromIndex: function () { | |
| this.index -= 10; | |
| return this; // return instance of the object and allow chaining | |
| } | |
| }; | |
| console.log(main.addToIndex().subtractFromIndex()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment