_.constant
  • References/JavaScript/Underscore/Utility

constant_.constant(value) Creates a function that returns the same value that is used as the argument of _.constant.

2025-01-10 15:47:30
_.escape
  • References/JavaScript/Underscore/Utility

escape_.escape(string) Escapes a string for insertion into HTML, replacing &, <, >, "

2025-01-10 15:47:30
_.zip
  • References/JavaScript/Underscore/Array

zip_.zip(*arrays) Merges together the values of each of the arrays with the values at the corresponding position. Useful when

2025-01-10 15:47:30
_.tail
  • References/JavaScript/Underscore/Array

rest_.rest(array, [index]) Alias: tail, drop Returns the rest of the elements in an array

2025-01-10 15:47:30
_.create
  • References/JavaScript/Underscore/Object

create_.create(prototype, props) Creates a new object with the given prototype, optionally attaching props as own properties

2025-01-10 15:47:30
_.some
  • References/JavaScript/Underscore/Collection

some_.some(list, [predicate], [context]) Alias: any Returns true if any of the values in

2025-01-10 15:47:30
_.indexBy
  • References/JavaScript/Underscore/Collection

indexBy_.indexBy(list, iteratee, [context]) Given a list, and an iteratee function that returns a key for each element

2025-01-10 15:47:30
_.template
  • References/JavaScript/Underscore/Utility

template_.template(templateString, [settings]) Compiles JavaScript templates into functions that can be evaluated for rendering.

2025-01-10 15:47:30
_.reduce
  • References/JavaScript/Underscore/Collection

reduce_.reduce(list, iteratee, [memo], [context]) Aliases: inject, foldl Also known as inject

2025-01-10 15:47:30
_.isString
  • References/JavaScript/Underscore/Object

isString_.isString(object) Returns true if object is a String.

2025-01-10 15:47:30