Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 2.15 KB

File metadata and controls

22 lines (15 loc) · 2.15 KB

Last of Array medium #array

by Anthony Fu @antfu

Take the Challenge    简体中文 日本語

TypeScript 4.0 is recommended in this challenge

Implement a generic Last<T> that takes an Array T and returns its last element.

For example

type arr1 = ['a', 'b', 'c']
type arr2 = [3, 2, 1]

type tail1 = Last<arr1> // expected to be 'c'
type tail2 = Last<arr2> // expected to be 1

풀이:

type Last<T extends any[]> = T extends [...infer R,infer L] ? L : never

Back Share your Solutions Check out Solutions

Related Challenges

14・First of Array 16・Pop