返回数组中的最后一个元素。
使用 arr.length - 1 来计算给定数组的最后一个元素的索引并返回。
arr.length - 1
const last = arr => arr[arr.length - 1];
last([1, 2, 3]); // 3