MCPcopy
hub / github.com/lodash/lodash / last

Function last

lodash.js:7704–7707  ·  view source on GitHub ↗

* Gets the last element of `array`. * * @static * @memberOf _ * @since 0.1.0 * @category Array * @param {Array} array The array to query. * @returns {*} Returns the last element of `array`. * @example * * _.last([1, 2, 3]); * // => 3

(array)

Source from the content-addressed store, hash-verified

7702 * // => 3
7703 */
7704 function last(array) {
7705 var length = array == null ? 0 : array.length;
7706 return length ? array[length - 1] : undefined;
7707 }
7708
7709 /**
7710 * This method is like `_.indexOf` except that it iterates over elements of

Callers 3

baseInvokeFunction · 0.85
baseUnsetFunction · 0.85
lodash.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected