Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

(This question is not really restricted to the language so please feel free to submit solution in other languages too.)

I was just wondering if it would be possible to write something like this in JavaScript:

// Wait 3 seconds and then say our message in an alert box
wait(3).then(function(){alert("Hello World!");});

Where the traditional way would be to write

// Wait 3 seconds and then say our message in an alert box
setTimeout(function(){alert("Hello World!");}, 3000);

Sorry if this is a noob question :p

share|improve this question
I think you answered your own question.... what is wrong with the second block of code? – Zoidberg Sep 18 '09 at 17:05
@Zoidberg: The title is method chaining so the thing here is not really about getting it to work but getting it to work using method chaining. – kizzx2 Sep 18 '09 at 18:29

4 Answers

up vote 35 down vote accepted

You can write it easily:

function wait(delay) {
  return {
    then: function (callback) {
      setTimeout(callback, delay*1000);
    }
  };
}

wait(3).then(function(){alert("Hello World!");});

If you want to go in-deep, I recommend you to read about currying and partial function application, those topics are really interesting.

share|improve this answer
Beat me too it!!! – Zoidberg Sep 18 '09 at 17:09
Fast typer badge. (or was that ready?) – Cem Kalyoncu Sep 18 '09 at 17:13
@cemkalyoncu: I'm a fast typist, and I use Vim-like edition everywhere :-D – CMS Sep 18 '09 at 17:14
+1 Nicely done. – Josh Stodola Sep 18 '09 at 17:25
Thank you @Josh – CMS Sep 18 '09 at 17:26

Yet another version, without closure:

function wait(seconds) {
    if(this instanceof wait)
        this.delay = seconds;
    else return new wait(seconds);
}

wait.prototype.then = function(callback) {
    setTimeout(callback, this.delay * 1000);
};

With some more code, you can even call the functions repeatedly:

function wait(seconds) {
    if(this instanceof wait)
        this.delay = seconds;
    else return new wait(seconds);
}

wait.prototype.then = function(callback) {
    setTimeout(callback, this.delay * 1000);
    return this;
};

wait.prototype.wait = function(seconds) {
    this.delay += seconds;
    return this;
};

var start = new Date;
function alertTimeDiff() {
    alert((new Date - start)/1000);
}

wait(1).then(alertTimeDiff).wait(3).then(alertTimeDiff);
share|improve this answer
@Christoph: Your approach is good and is what I think to be more comprehensive than CMS'. But then again he answered the question correctly faster so I gave the correct answer to him :p – kizzx2 Sep 18 '09 at 18:31

Chaining is rather used to execute multiple methods on one object. So you would rather consider the function as the object and set the timeout there:

Function.prototype.callAfter = function(delay) {
    setTimeout(this, delay*1000);
};

(function(){alert("Hello World!");}).callAfter(3);
share|improve this answer

If you do OO Javascript, then yes, you can do method chaining.

Some of the popular JavaScript frameworks do this. jQuery does this by returning the jQuery object for functions that usually wouldn't return a value.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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