
Syntax Of Lodash delay method
_.delay(func, wait, [args])
Lodash delay method Invokes func after wait milliseconds. Any additional arguments are provided to func when itβs invoked.
Arguments
- func (Function) β The function to delay.
- wait (number) β The number of milliseconds to delay invocation.
- [args] (β¦*) β The arguments to invoke func with.
Output
- (number) β Returns the timer id.
Example
var _ = require('lodash'); var startTimestamp = new Date().getTime(); var add = function(a,b) { console.log(a + b); var endTimestamp = new Date().getTime(); console.log(((endTimestamp - startTimestamp)) + ' ms'); }; _.delay(add, 1000, 5, 10);
Save the above program in tester.js. Run the following command to execute this program.
Command
\>node tester.js
Output
15 1024 ms
Next Topic β Click Here
Pingback: Lodash - curry Right method - Adglob Infosystem Pvt Ltd