JavaScript has primitive types. These are basic building blocks that hold a single value:
string - text like "hello"
number - any number like or
boolean - true or false
undefined - no value assigned yet
null - intentionally empty
symbol - unique identifiers
bigint - arbitrarily large integers
You'll use the first constantly. Symbols and BigInt are for special cases.