CodeNewbie Community 🌱

Cover image for Data Structures in JavaScript: Arrays
Jared Nielsen
Jared Nielsen

Posted on • Originally published at jarednielsen.com on

Data Structures in JavaScript: Arrays

At some point in your career (today?!) you will want to learn data structures. It's not just to ace the technical interview and land your dream job. Learning data structures will help you understand how software works and improve your problem-solving skills. In this tutorial, you will learn the array data structure in JavaScript.

This article originally published on jarednielsen.com

What is an Array?

An array is the simplest data structure. It is a sequential collection of elements each identified by index.

We can think of our computer as an array of switches. A byte is an array of eight bits. From bytes we build complex layers of abstraction to create memory, characters, and cat videos.

What Problem(s) Do Arrays Solve?

  • Arrays allow us to store similar values in a single variable, rather than individual variables for each value.

  • Arrays allow us to quickly and easily perform operations on similar values.

  • Arrays are fast. If we know the index of the element, an array search is in the order of O(1).

  • Arrays are multidimensional, meaning we can store arrays in arrays in arrays...

Learn JavaScript Array Data Structure

In JavaScript, (almost) everything is an object, including arrays. The JavaScript Array object contains property/value pairs where the property name corresponds with the array index. You guessed it. Because it’s an object, the property name is a string and not an integer. Because they are objects, they are not as efficient as arrays in other languages.

Arrays in statically typed programming languages cannot store different data types. Because JavaScript is a dynamically typed language and arrays are objects, we can store different data types in them, but that doesn't mean we should.

πŸ₯‡ Best practice is to limit our arrays to one data type. Why? Arrays are classically defined as a systematic arrangement of similar objects and if we declare an array containing multiple data types, there is no obvious structure, which may be fine if we are very careful about not mutating the array as it is used throughout an application, but what happens if we aren't? It should be immediately apparent in this example:

var bad = [1, "two", {}, true];

var best = {
  number: 1,
  string: "two",
  object: {},
  bool: true
}

Enter fullscreen mode Exit fullscreen mode

Creating Arrays in JavaScript

There are several approaches available for creating arrays. The first is array declaration with literals:

Array Declaration

const empty = [];

Enter fullscreen mode Exit fullscreen mode

Or,

const full = ["this", "that", "the other"];

Enter fullscreen mode Exit fullscreen mode

To prove the point above:

typeof empty // returns 'object'

empty.constructor // returns [Function: Array]  

Enter fullscreen mode Exit fullscreen mode

Array Constructor

There's also the Array constructor, but, as we will see below, it can be problematic:

const nums = new Array(1,2,3);

console.log(nums[0]); //returns 1

console.log(nums.length); // returns 3

Enter fullscreen mode Exit fullscreen mode

We clearly and obviously created an array with three elements. But if we run the following:

const numnums = new Array(4);

console.log(numnums[0]); // returns undefined

console.log(numnums.length); // returns 4

Enter fullscreen mode Exit fullscreen mode

Maddening! What's inside numnums?

console.log(numnums);

Enter fullscreen mode Exit fullscreen mode

... returns:

[<4 empty items>]

Enter fullscreen mode Exit fullscreen mode

Passing only one numerical argument to the Array constructor will return an array with a corresponding number of empty elements, whereas passing multiple integers will create an array containing each argument. It gets worse:

const numnums = new Array("4");

console.log(numnums); //returns ['4']

Enter fullscreen mode Exit fullscreen mode

If we were to use the Array constructor without type-checking, there's a possibility that we would create an array containing a string, rather than an array of empty elements.

Array.of()

Fortunately for us, Array.of() was introduced in ES6 to bring some sanity to array instantiation and address the issue of passing types to the Array constructor.

const nums = Array.of(4);

console.log(numbers); // returns [4]

const strings = Array.of("string", "")

console.log(strings);
// returns ['string', '']

Enter fullscreen mode Exit fullscreen mode

Array Mutator Methods

I’m going to assume you are familiar with push and pop, but maybe not unshift and shift, which add and remove elements at the beginning of an array, respectively.

unshift

We can think of unshift() as the opposite of push(). The push() method adds items to the end of an array. The unshift() method adds items to the beginning.

const nums = [1, 2, 3];

nums.unshift(4, 5, 6);

console.log(nums); // returns [4, 5, 6, 1, 2, 3]

Enter fullscreen mode Exit fullscreen mode

shift

As unshift() is to push(), shift() is to pop(). This method will shift the array one index by removing the first item.

nums.shift();

console.log(nums); // returns [5, 6, 1, 2, 3]

Enter fullscreen mode Exit fullscreen mode

Data Structures in JavaScript: Arrays

Arrays are commonplace in development. That means they are also commonplace in technical interviews. It's important to understand the basics but also be aware of the quirks. For example, if you're a JavaScript developer, you probably take your JS engine for granted. But under-the-hood, V8 or Spidermonkey in Chrome and Firefox, respectively, are written in C++, and are using data structures, such as stacks and queues, to implement the JavaScript execution context. When you query a database, your DBMS is using data structures, such as hash tables and trees, to parse and optimize execution.

Some common interview questions are:

  • Determine if all elements in an array are unique values

  • Find the missing number in an array of 1 to 100

  • Find the duplicate number on a given integer array

  • Merge two sorted arrays

  • Sort an array in place using quicksort

In this tutorial, you learned the array data structure in JavaScript. Learning data structures will help you understand how software works and improve your problem-solving skills. Want to stay in the loop? I write a weekly newsletter about programming, problem solving and lifelong learning.

βœ‰οΈ Sign up for The Solution

Top comments (0)