Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumTypeScriptassertion functionsSingle-choice MCQ

What does this assertion function declaration require of every code path through its body?

function assertIsString(val: unknown): asserts val is string { if (typeof val !== "string") { throw new Error("Not a string"); } }