Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8036117
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T02:30:51+00:00 2026-06-05T02:30:51+00:00

At first I thought arr.slice(0) was doing a deep unreferenced copy, but it is

  • 0

At first I thought arr.slice(0) was doing a deep unreferenced copy, but it is actually doing just a shallow unreferenced copy, so if the array contains nested arrays, they are still referenced:

var a = [1,2]
var b = [3,4]
var c = [a,b]
var d = c.slice(0)
d[0] === a       // true, which means it is the /same/ object
d[0][0] = "Hi!"
a                // ["Hi!", 2]

(example source)

The solution on the links provided is fairly easy when you know the structure of the array (just .slice(0)ing again the nested arrays will do the trick), but it gets complicated if you don’t know how the structure of the nested arrays is.

My first idea is to loop on the whole thing, on all levels, until it fails to find an array object.

  • Is this approach acceptable?
  • Are there some built-in functions that I am missing?

I just can’t believe I need to do all that for just copying a silly array

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T02:30:52+00:00Added an answer on June 5, 2026 at 2:30 am

    Like nonnb suggests, a serializations / deserialization cycle will result in a deep copy. You could do it like this:

    //a is some array with arbitrary levels of nesting.
    var c = JSON.parse(JSON.stringify(a));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Okay at first I thought this would be pretty straightforward. But I can't think
here's the main code at first I thought is was the message box but
First thought of implementing this using threads but python doesnt have a way for
This is actually not as simple as I first thought. In the absence of
does the following integer arithmetic property hold? (m/n)/l == m/(n*l) At first I thought
So I thought I'd write my first codeigniter helper (still new to codeigniter somewhat).
Ok first of all, the unicorn avatars are hilarious. Seriously, I thought my account
I'm using $lang=$_SERVER['HTTP_ACCEPT_LANGUAGE']; to detect the language of the browser. At first, I thought
My first thoughts are Erlang, or Java, but I wanted to know from others
I need to create small thumbnails of HTML elements. I first thought using CSS

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.