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

What is the type of `x` after this code, given `typeof null === "object"` at runtime?

const x: number = 5; const y: bigint = 10n; const sum = x + y;