Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumTypeScripttemplate literal typesSingle-choice MCQ

What does `LastSegment<"2026.06.17">` resolve to?

type LastSegment<S extends string> = S extends `${string}.${infer Rest}` ? LastSegment<Rest> : S; type R = LastSegment<"2026.06.17">;