Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumTypeScriptgeneric constraintsSingle-choice MCQ

Which call to this generic factory is rejected?

function create<T extends { length: number }>(seed: T): T { return seed; }