Symbol and BigInt Primitives
Two newer primitive types: Symbol for guaranteed-unique property keys, and BigInt for integers beyond Number's safe range.
Symbol and BigInt are the two newest additions to JavaScript's set of primitive types, and while they show up far less often than strings or numbers, interviewers ask about them specifically to see whether your knowledge extends past the 'classic' primitives that existed since JavaScript's first version.
A Symbol is like a one-of-a-kind serial number stamped on an item — even if two items have the same product name, their serial numbers are guaranteed to be different. BigInt is like switching from a calculator with a fixed digit display to a full ledger book — you trade a bit of convenience for the ability to write numbers of any size without rounding.