repl.txt (525B)
1 2 {{alias}}( clbk[, ...args] ) 3 Adds a callback to the "next tick queue". 4 5 The queue is fully drained after the current operation on the JavaScript 6 stack runs to completion and before the event loop is allowed to continue. 7 8 Parameters 9 ---------- 10 clbk: Function 11 Callback to invoke. 12 13 ...args: any (optional) 14 Arguments to provide to the callback upon invocation. 15 16 Examples 17 -------- 18 > function f() { console.log( 'beep' ); }; 19 > {{alias}}( f ) 20 21 See Also 22 -------- 23