When the length of the second parameters is greater than the length of the array,The `undefined` will be included in the result. example: var last = require('array-last'); var a = last(['a', 'b', 'c', 'd', 'e', 'f'],7); result [ undefined, 'a', 'b', 'c', 'd', 'e', 'f' ]