服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.delay(func, wait, args)

等待毫秒后调用func。 任何其他参数在调用时都会提供给func。

初始

0.1.0

参数
  1. func (功能):延迟的功能。
  2. wait (数字):延迟调用的毫秒数。
  3. [args] (... *):用来调用的参数func
返回

(数字):返回定时器ID。

_.delay(function(text) {
  console.log(text);
}, 1000, 'later');
// => Logs 'later' after one second.