Fun with arrays
In this article, we'll look at some weird quirks with JavaScript arrays to learn a little more about how they work under the hood.
An array is a collection or list of values. It could hold just strings:
const names = ['Luke', 'Leia', 'Han'];
Or a mi...
joeattardi.dev4 min read