Value and Reference Types
Learn about the value and reference types in JavaScript.
We'll cover the following...
Introduction
JavaScript does not give you full access to your data structures in memory. However, reference types still exist in the language. Mixing value and reference types come with unwanted side effects and bugs. Understanding the difference between value and reference types plays a vital role in writing robust programs.
Numbers, booleans, ...