JavaScript Data

JavaScript Data #

Types #

  • numbers

  • BigInts

  • strings

  • booleans

  • null

  • undefined

  • symbols

  • objects

Properties #

Each data type inherits particular sets of properties.

e.g.., strings have length:

console.log("Yo".length)