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

Which value is rejected by this recursive `Json` type?

type Json = | string | number | boolean | null | Json[] | { [k: string]: Json };