Skip to content
This repository has been archived by the owner on Aug 28, 2019. It is now read-only.

Latest commit

 

History

History
6 lines (4 loc) · 241 Bytes

js-data-types.md

File metadata and controls

6 lines (4 loc) · 241 Bytes
  • Primitive: stored as simple data (strings, numbers)
  • Reference: stored as objects (references to locations in memory)

To see if something is a primitive, use typeof.

Except with null. That'll say it's an object. Because JavaScript.