Node.js examples for Array:Last Element
Get the last element from an array
export default function last(arr) { return arr[arr.length - 1]; }