DEV Community

Cover image for Advanced TypeScript Exercises - Question 9
Pragmatic Maciej
Pragmatic Maciej

Posted on

Advanced TypeScript Exercises - Question 9

Short but very interesting question ahead of you. Write a type which will represent not empty array NonEmptyArray. Type should behave in the same way as original Array is behaving, with this difference that empty array is a value which is not a valid member of NonEmptyArray

type NonEmptyArray<T> = /* your type level code here 💪 */
const a: NonEmptyArray<string> = [] // should be compilation error 🛑
const b: NonEmptyArray<string> = ['Hi TS'] // should be ok! 👌
Enter fullscreen mode Exit fullscreen mode

Watch out, there is not one possible solution. How many solutions can you make? Post your answers in comments (preferred links to the playground). Have fun! Answer will be published soon!

This series will continue. If you want to know about new exciting questions from advanced TypeScript please follow me on dev.to and twitter.

Top comments (5)

Collapse
 
jfet97 profile image
Andrea Simone Costa

My first solution :D

type NEA<T> = [T, ...T[]]
Collapse
 
Sloan, the sloth mascot
Comment deleted
Collapse
 
dwjohnston profile image
David Johnston

So why doesn't this work for an array of length 2?

Collapse
 
akashkava profile image
Akash Kava

TypeScript has endless magic, doesn’t stop to amaze me.

Collapse
 
chrismatheson profile image
Chris Matheson

@macsikora I actually added a NonEmptyArray type to my codebase a while ago. It’s been useful, but not as much as I had hopped.

Have you found this type useful in a real world setting?

From memory the main “problem” was things like ‘map’ don’t “flow” the underlying type through...