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 7830109
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T11:04:28+00:00 2026-06-02T11:04:28+00:00

From a function, I would like to return a modified version of an object

  • 0

From a function, I would like to return a modified version of an object passed as an argument, without affecting the original object (i.e. side effect free). So essentially I want to pass by value. I have tried to do this by modifying and returning a (deep) copied version of the object. However I have now found that modifications I make to to the cloned object are still affecting the original.

The code snippet below demonstrates this, as calling modifyMyData on newObject will affect the data of oldObject

var clone = function(oldObject) {
    return jQuery.extend(true, {}, oldObject);
}

var objf = function() {
    var data = {list:[1],dic:{a:'3'}};
    this.modifyMyData = function() {
        data.list.push(3);
        data.dic['e'] = 10;
    }
    this.getData = function() {
        return data;
    }
}

var old = new objf;
var newo = clone(old);
newo.modifyMyData();

How can I get around this?

  • 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-02T11:04:35+00:00Added an answer on June 2, 2026 at 11:04 am

    Try this I think it work like you want it to. You need to attach the variable data to the object. The way you were doing it turned it into a variable with a closure so it didn’t get copied.

    var clone = function(oldObject) {
        return jQuery.extend(true, {}, oldObject);
    }
    
    var objf = function() {
        this.data = {list:[1],dic:{a:'3'}};
    
        this.modifyMyData = function() {
    
            this.data.list.push(3);
            this.data.dic['e'] = 10;
        }
        this.getData = function() {
            return this.data;
        }
    }
    
    var old = new objf();
    var newo = clone(old);
    newo.modifyMyData();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to return a noncopyable object of type Foo from a function.
I have a tabline function that I stole/modified from somewhere, but I would like
I have a function from which I would like to return a value as
I am creating a function that I would like to generate random strings from
I would like to write a function which will read values from a text
I would like to dynamically allocate memory from the machine_init function in my arm
I would like to get the url from a jQuery success function, after it
I would like to define a function that will be invoked from entry_32.S. It
I was wondering how you would call a getter function from another class in
What would be the best way to handle ColdFusion Cookies from a javascript function?

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.