Primitive Types and Their Behavior
JavaScript primitives include string, number, bigint, boolean, undefined, null, and symbol.
Primitives are immutable values. Operations create new values rather than changing original primitive data.
typeof helps with quick checks, but note that typeof null returns object due to historical behavior.