Skip to main content
Module

x/rambda/rambda.js>last

Faster and smaller alternative to Ramda
Latest
function last
import { last } from "https://deno.land/x/rambda@v9.2.0/rambda.js";

It returns the last element of input, as the input can be either a string or an array.

Parameters

str: ""

Returns

undefined

Parameters

str: string

Returns

string

Parameters

list: never[]

Returns

undefined

Type Parameters

T extends unknown[]

Returns

LastArrayElement<T>

Type Parameters

T extends readonly unknown[]

Returns

LastArrayElement<T>