Yes it's possible but you can't do it by simply returning from the delay() function after ms - calls to setTimeout are asynchronous and so return immediately. To achieve this effect you must implement your own queuing system. Some code:
var queue = new Queue();
function delay(ms) {
queue.enqueue("delay");
setTimeout(function() {
popQueue(true);
}, ms);
return this;
}
function say(s) {
queue.enqueue(function() {
alert(s);
});
popQueue();
return this;
}
function popQueue(removeDelay) {
if (removeDelay) {
if (queue.peek() == "delay") queue.dequeue();
}
while (!queue.isEmpty() && queue.peek() != "delay") {
(queue.dequeue())();
}
}
In essence, the code works by modifying every function that is "delayable", so that it inserts itself into a queue, rather than executing immediately. The delay() function inserts a string into the queue as a "blocking" item, that prevents functions added to the queue from executing. You can then use a timeout to remove the block from the queue after the given number of milliseconds.
The above code just gives you an idea of how delaying can be implemented but isn't a working example. Obviously you'd need some sort of Queue implementation, or you can modify it to use arrays, or you can implement your own SelfExecutingQueue object to automatically continue to execute functions (until it hits a non-function object) immediately after queuing or dequeuing without requiring you to manually call popQueue(), etc...