Welcome to the second Type | Treat challenge! Today we will be deriving the types of pumpkins and busting ghosts!
Yesterday's Solution
Beginner/Learner Challenge
The solution for this challenge used indexed types to extract a part of an existing type to avoid duplication. The need to use [number]
is an interesting twist, because [0]
or [1]
(or any number) would have worked just as well too. Doing this right would also have raised the typo in the original code.
// Your goal: remove this any, without changing GhostAPIResponse
- const displayHauntings = (haunting: any) => {
+ const displayHauntings = (haunting: GhostAPIResponse["hauntings"][number]) => {
console.log(` - Title: ${haunting.title}`)
Intermediate/Advanced Challenge
// You're first going to need to separate out the candy from the treats,
// you can do that via conditional types.
- // type AllCandies = ...
+ type IsCandy<A> = A extends { candy: true } ? A : never;
+ type AllCandies = IsCandy<ResultsFromHalloween>
- // type AllTricks = ...
+ type IsTrick<A> = A extends { trick: true } ? A : never;
+ type AllTricks = IsTrick<ResultsFromHalloween>
// Almost there, but little 'Bobby Tables' cannot have peanuts. Can
// you make a list of candies just for him?
- // type AllCandiesWithoutPeanuts = ...
type HasPeanuts<A> = A extends { peanuts: true } ? A : never;
type AllCandiesWithoutPeanuts = HasPeanuts<AllCandies>
Our original answer relied on using Conditional Types to narrow the union, however we got a lot of responses using the Exclude
utility type to make it a single liner:
type AllCandies = Exclude<ResultsFromHalloween, { candy: true }>
Which is a great solution. Full link
The Challenge
Beginner/Learner Challenge
Lets take a trip to the pumpkin patch and try to find the perfect one for our Jack O'Lantern. But in order to make sure we have located the right type of pumpkin, we need your help in identifying pumpkin types.
We created some starter code you can find here, lets see if you can finish it.
Intermediate/Advanced Challenge
Your job busting ghosts just got real tricky. Before you head in to guard Manhattan, you need to assert to those ghosts who is boss. Help finalize the ghost-busting algorithm because who else are you gonna call?
Sharing
Be sure to submit your solution by using the Share button in the TypeScript playground.
Then go to Twitter, and create a tweet about the challenge, add the link to your code and mention the TypeScript page (@typescript)
Need Extra Help?
If you need additional help you can utilize the following:
- The TypeScript Handbook
- TypeScript Discord Page
- The comments on each Dev.to posts!
Happy Typing :)