Skip Main Navigation
Ben IlegboduBen Ilegbodu

How to shallow clone a JavaScript array

8 different approaches in JavaScript for creating a shallow copy of an array

Sunday, August 29, 2021 · 5 min read

Usually the rationale for shallow cloning an array is because we want to mutate it, but we need to leave the original unchanged. This practice of "defensive programming" is common in utility functions because we don't know if the caller will need to use the array for other purposes. Mutating the array directly can cause hard-to-catch bugs. So we copy it first, and then perform whatever mutations are necessary.

To help ground this need in reality, let's apply shallow cloning an array in a real-world scenario. Let's say we have a helper function called addMessge() that will add a specified message to the list of messages with the current timestamp.

There are likely more, but I've got 8 approaches for creating a shallow copy of a JavaScript array. Let's dive right in!

FYI: A shallow copy means that we do not make copies of deeply nested objects. So if an element of an array is an object, we only copy over its reference. We don't traverse the object creating new copies of each of its properties.


for loop

The for loop is probably the "simplest" approach and the one that's most portable across programming languages.

const addMessage = (allMessages, message) => {
  const newMessages = []

  // make a shallow copy of `allMessages`
  for (let messageInfo of allMessages) {
    newMessages.push(messageInfo)
  }

  // add the new message info object
  // including the message + timestamp
  newMessages.push({
    message,
    timestamp: Date.now(),
  })
}

Here we make our shallow copy by creating a new empty array (newMessages), manually looping over allMessages with a for...of loop, and pushing each new entry (messageInfo) into newMessages. It's very procedural (and "old-school"), but it gets the job done. The for...of operator was introduced in ES6/ES2015.

By the way, a standard for loop (the real OG approach) would work the exact same.


.forEach()

The .forEach() approach works similar to the for loop.

const addMessage = (allMessages, message) => {
  const newMessages = []

  // make a shallow copy of `allMessages`
  allMessages.forEach((messageInfo) => {
    newMessages.push(messageInfo)
  })

  // add the new message info object
  // including the message + timestamp
  newMessages.push({
    message,
    timestamp: Date.now(),
  })

  return newMessages
}

It starts off with the same new empty array (newMessages), pushing each new messageInfo into it. The only difference is that we pass a callback to do the iterations. It's more or less the same amount of code.


Array.from()

Array.from was introduced to JavaScript in ES6/ES2015, and is probably the most technically correct solution. It, by definition, creates a new, shallow-copied array.

const addMessage = (allMessages, message) => {
  // make a shallow copy of `allMessages`
  const newMessages = Array.from(allMessages)

  // add the new message info object
  // including the message + timestamp
  newMessages.push({
    message,
    timestamp: Date.now(),
  })

  return newMessages
}

Nice and short, eh? No need to manually iterate over allMessages. Just use the function that does it.


Spread operator

The spread operator can be used as syntax sugar for Array.from() to shallow clone an array.

const addMessage = (allMessages, message) => {
  // make a shallow copy of `allMessages`
  // by spreading it into a new array
  const newMessages = [...allMessages]

  // add the new message info object
  // including the message + timestamp
  newMessages.push({
    message,
    timestamp: Date.now(),
  })

  return newMessages
}

The spread operator extends the usefulness of the array literal syntax by enabling us to build a new array from a combination of adding new individual items or flattening an existing array's entries into this new array.

In fact, this addMessage function could be consolidated completely until a single statement that clones allMessages, adds the new message, and returns the new messages.

const addMessage = (allMessages, message) => {
  return [
    // make a shallow copy of `allMessages`
    ...allMessages,

    // and add the new message info object
    // including the message + timestamp
    {
      message,
      timestamp: Date.now(),
    },
  ]
}

The function could be further trimmed by using a concise bodied arrow function, but that's not the purpose of this post.

The spread operator is my preferred way of shallow cloning an array. Rarely am I only copying the array. I'm copying and performing a mutation. That mutation usually is some sort of addition to the array, so the spread operator within an array literal typically is the most concise.


.concat()

The Array .concat() method used to be my go-to concise approach for shallow cloning an array prior to ES6/ES2015 and the spread operator.

const addMessage = (allMessages, message) => {
  // make a shallow copy of `allMessages`
  // by concatenating nothing to the array
  const newMessages = allMessages.concat()

  // add the new message info object
  // including the message + timestamp
  newMessages.push({
    message,
    timestamp: Date.now(),
  })

  return newMessages
}

Typically we pass one or more arrays to .concat() to merge to the array and return a new array. However, when we don't pass any arrays, .concat() just makes a shallow copy! I was taught this "trick" early on when I started developing in JavaScript and have held onto it.


.slice()

The Array .slice() approach is pretty much identical to the .concat() one.

const addMessage = (allMessages, message) => {
  // make a shallow copy of `allMessages`
  // by taking slice of entire array
  const newMessages = allMessages.slice()

  // add the new message info object
  // including the message + timestamp
  newMessages.push({
    message,
    timestamp: Date.now(),
  })

  return newMessages
}

The .slice() method is used to return a shallow copy of a portion of an array based on the start and end indices we pass. However, if we don't pass either index, .slice() simply returns a shallow copy of the entire array!

I don't think I ever used .slice() for array shallow cloning. I always used .concat(). But I learned about it from seeing it in others' code. The more I think about it, using an empty .slice() is probably more semantically closer to a "copy" than .concat(). We're basically saying give me a slice of the whole array, which of course is a shallow copy. It's also one character shorter. 😉


.map()

I don't think I've never seen .map() used to shallow clone an array, but as I was looking through the array methods, it seemed like a perfectly good candidate.

const addMessage = (allMessages, message) => {
  // make a shallow copy of `allMessages`
  // by mapping each item to itself
  const newMessages = allMessages.map((m) => m)

  // add the new message info object
  // including the message + timestamp
  newMessages.push({
    message,
    timestamp: Date.now(),
  })

  return newMessages
}

The .map() approach is actually a more correct than the .forEach() approach. In general, a .map() is a .forEach plus a .push() on each element. The .map() method is used to map each item in an array to a new value. However, if we map the items to themselves, we've created a shallow copy of the array with the same items!

In the example I've gone against one of my "rules" and used a single letter variable name for the .map() callback function. I wanted to make this "identity function" (as it's called) as concise as possible. The m parameter could just as easily be messageInfo like in the earlier examples.


.filter()

I've also not seen .filter() used to make a shallow copy of an array either, but it could totally work too!

const addMessage = (allMessages, message) => {
  // make a shallow copy of `allMessages`
  // by returning `true` includes all items
  const newMessages = allMessages.filter(() => true)

  // add the new message info object
  // including the message + timestamp
  newMessages.push({
    message,
    timestamp: Date.now(),
  })

  return newMessages
}

Using .filter() is in the same spirit of .map(). The .filter() method is used to filter out items from the array. However, if we keep all the items in the array, we've effectively created a shallow clone! Of all of the approaches, this is likely the most cryptic though.


And those are the 8! I could've gone with 9, if I had separated out the for loop. How many of these approaches did you know about? How many of these have you used? I'd love to hear about it. Feel free to contact me on Twitter at @benmvp.

Keep learning my friends. 🤓

Subscribe to the Newsletter

Get notified about new blog posts, minishops & other goodies


Hi, I'm Ben Ilegbodu. 👋🏾

I'm a Christian, husband, and father of 3, with 15+ years of professional experience developing user interfaces for the Web. I'm a Google Developer Expert Frontend Architect at Stitch Fix, and frontend development teacher. I love helping developers level up their frontend skills.

Discuss on Twitter // Edit on GitHub