Primitive
The Primitive data type is a basic, low-level, built-in data type in multiple programming languages.
In JavaScript, there are 7 primitive data types:
- undefined
- null
- boolean
- string
- symbol
- number
- bigint
Not to be mistaken with The Primitives.
References:
- https://tc39.es/ecma262/#sec-ecmascript-overview — Official specification
- https://developer.mozilla.org/en-US/docs/Glossary/Primitive
In: