times_.times(n, iteratee, [context]) Invokes the given iteratee function n times. Each invocation of iteratee is called
iteratee_.iteratee(value, [context]) Generates a callback that can be applied to each element in a collection. _.iteratee
random_.random(min, max) Returns a random integer between min and max, inclusive. If you only pass one argument, it
result_.result(object, property, [defaultValue]) If the value of the named property is a function then invoke it with the
noop_.noop() Returns undefined irrespective of the arguments passed to it. Useful as the default for optional callback arguments
identity_.identity(value) Returns the same value that is used as the argument. In math: f(x) = x This function looks
constant_.constant(value) Creates a function that returns the same value that is used as the argument of _.constant.
escape_.escape(string) Escapes a string for insertion into HTML, replacing &, <, >, "
uniqueId_.uniqueId([prefix]) Generate a globally-unique id for client-side models or DOM elements that need one. If prefix
unescape_.unescape(string) The opposite of escape
Page 1 of 2