Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

last.js 401B

1234567891011121314151617181920
  1. /**
  2. * Gets the last element of `array`.
  3. *
  4. * @static
  5. * @memberOf _
  6. * @since 0.1.0
  7. * @category Array
  8. * @param {Array} array The array to query.
  9. * @returns {*} Returns the last element of `array`.
  10. * @example
  11. *
  12. * _.last([1, 2, 3]);
  13. * // => 3
  14. */
  15. function last(array) {
  16. var length = array == null ? 0 : array.length;
  17. return length ? array[length - 1] : undefined;
  18. }
  19. module.exports = last;