function last(a) { return a[a.length - 1]; } function first(a) { return a[0]; } module.exports = { last, first, };