_.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
_.uniqueId
  • References/JavaScript/Underscore/Utility

uniqueId_.uniqueId([prefix]) Generate a globally-unique id for client-side models or DOM elements that need one. If prefix

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

extendOwn_.extendOwn(destination, *sources) Alias: assign Like extend, but only copies own

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
_.isUndefined
  • References/JavaScript/Underscore/Object

isUndefined_.isUndefined(value) Returns true if value is undefined.

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
_.findKey
  • References/JavaScript/Underscore/Object

findKey_.findKey(object, predicate, [context]) Similar to _

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

isNaN_.isNaN(object) Returns true if object is NaN. Note: this is not the same as the native isNaN

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

pairs_.pairs(object) Convert an object into a list of [key, value] pairs.

2025-01-10 15:47:30