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

Which statement about `bigint` and `number` in TypeScript is correct?

const a = 10n; const b = 10; const sum = a + b;