* 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)
| 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 |
no outgoing calls
no test coverage detected