Objects - Introduction to Javascript Data Types - Part 2 ๐
๐ This article is part of the Javascript Deep Dive series.
Check out the first part: Primitives: Introduction to Javascript Data Types - Part 1 ๐ฅ
Objects ๐
Everything that's not a primitive is an object in Javascript.
> typeof {x:1}
'object'
Th...
alexzaharia.com5 min read