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