_.unescape
  • References/JavaScript/Underscore/Utility

unescape_.unescape(string) The opposite of escape

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

map_.map(list, iteratee, [context]) Alias: collect Produces a new array of values by mapping each

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

isNumber_.isNumber(object) Returns true if object is a Number (including NaN).

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

isObject_.isObject(value) Returns true if value is an Object. Note that JavaScript arrays and functions are objects

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

isBoolean_.isBoolean(object) Returns true if object is either true or false.

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

partition_.partition(array, predicate) Split array into two arrays: one whose elements all satisfy predicate and one

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

each_.each(list, iteratee, [context]) Alias: forEach Iterates over a list of elements, yielding

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
_.indexOf
  • References/JavaScript/Underscore/Array

indexOf_.indexOf(array, value, [isSorted]) Returns the index at which value can be found in the array, or -1

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

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

2025-01-10 15:47:30