Node.js examples for Array:Last Element
Get array last element
export function last(a) { return a.length > 0 ? a[a.length - 1] : null; }