0.3.1 • Published 4 years ago

array-nth-last v0.3.1

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

array-nth-last

Tiny function to get nth last entry from array

Install

$ yarn add array-nth-last

or

$ npm install array-nth-last --save

Usage

const last = require('array-nth-last');

const arr = [1, 2, 3, 4, 5];

last(arr); // => 5
last(arr, 3); // => 2

API


last(array, n?)

Returns the nth last entry from the array

array

Type: Array

The array from which to get the nth entry

n? optional

Type: number

The desired entry of the array to return