Node.js examples for Data Type:function
Delay a function call
Function.prototype.delay = function(timeout){ return setTimeout(this, timeout); };