Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumTypeScriptindex signaturesSingle-choice MCQ

What does TypeScript report for `value` and the access below?

interface Counts { [name: string]: number; } const c: Counts = {}; const value = c.somethingNotPresent;