Lets imagine function like this:

function foo(x) {
    x += '+';
    return x;
}

Usage of it would be like:

var x, y;
x = 'Notepad';
y = foo(x);
console.log(y); // Prints 'Notepad+'.

I'm looking for a way to create function that's chainable with other functions.

Imagine usage:

var x, y;
x = 'Notepad';
y = x.foo().foo().toUpperCase(); // Prints 'NOTEPAD++'.
console.log(y);

How would I do this?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

Sure, the trick is to return the object once you're done modifying it:

String.prototype.foo = function() {
    return this + "+";
}

var str = "Notepad";
console.log(str.foo().foo().toUpperCase());

http://jsfiddle.net/Xeon06/vyFek/

To make the method available on String, I'm modifying it's prototype. Be careful not to do this on Object though, as it can cause problems when enumerating over their properties.

link|improve this answer
2  
it's a good idea to at least check for a property on the native types before adding it, i.e. if ( !('foo' in String.prototype) ) {String.prototype.foo = function() {...} } – keeganwatkins Oct 11 '11 at 18:03
If you want to extend an object without breaking the enumeration, use the (semi-modern) Object.defineProperty: Object.defineProperty( String.prototype, {value:function(){ return this+"+"; } } ). By default the enumerable flag is set to false. – Phrogz Oct 11 '11 at 18:04
@keeganwatkins yes it is :). I assume the OP was only asking about strings as an example, so I kept the warnings to a minimum, but that's a good point. – Xeon06 Oct 11 '11 at 18:04
Good solution, mine was too generic – Andrey Oct 11 '11 at 18:04
1  
You can't assign this in a string. Return the result instead. If you need to do multiple operations, store it in a temporary variable and return that instead. For example, var str = this; str += "foo"; return str; – Xeon06 Oct 11 '11 at 18:47
show 2 more comments
feedback

If I remember correctly, you can use "this" as a context of a function (object it belongs to) and return it to make the function chainable. In other words:

var obj = 
{
    f1: function() { ...do something...; return this;},
    f2: function() { ...do something...; return this;}
}

then you can chain the calls like obj.f1().f2()

Keep in mind, you won't be able to achieve what you are expecting by calling obj.f1().toUpperCase() - it will execute f1(), return "this" and will try to call obj.toUpperCase().

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.