Lodash教程

Lodash delay method

语法

_.delay(func, wait, [args])
Invokes func after wait milliseconds. Any additional arguments are provided to func when it's invoked.

参数

func (Function) − The function to delay. wait (number) − The number of milliseconds to delay invocation. [args] (...*) − The arguments to invoke func with.

输出

(number) − Returns the timer id.

实例

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

输出

15
1024 ms
昵称: 邮箱:
Copyright © 2022 立地货 All Rights Reserved.
备案号:京ICP备14037608号-4