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

What is R, given `Uppercase` applied to a union inside a template literal?

type Route = "users" | "posts"; type R = `/${Uppercase<Route>}`;