Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I prevent javascript from passing by reference when passing in an object's child

In my project there is a monochromatic screen you can write to and clear. Within the class I have these two lines of code for clearing the screen. the first pushes the current pixel values from the screen onto a stack so the clearscreen can be undone later. The second line clears the screen. the problem is that the undo stack is getting a reference to this.pixels rather than getting the value of it at the time.

this.pushUndo(this.pixels); //this.pixels is an array of ints
this.updateScreen(new Array(64*32)); //this.pixels changes at the end of this line but the undo stack shouldn't change its value
like image 503
anthius balaraw Xanthius Avatar asked Feb 05 '26 02:02

anthius balaraw Xanthius


2 Answers

You can use slice to create a shallow copy:

const pixels0 = [0, 1, 2, 3, 4, 5];
const pixels1 = pixels0.slice(0);

// modify only index 0 of copy.
pixels1[0] = 1;

console.log(pixels0);
// expected output: Array [0, 1, 2, 3, 4, 5]

console.log(pixels1);
// expected output: Array [1, 1, 2, 3, 4, 5]

If you need a deep copy, you can check What is the most efficient way to deep clone an object in JavaScript?

like image 129
celicoo Avatar answered Feb 12 '26 14:02

celicoo


I usually do Object.assign when I need to clone values. Example:

const clone = Object.assign([], yourArray);

Can you show what is inside the updateScreen method in your question?

like image 42
Cold Cerberus Avatar answered Feb 12 '26 15:02

Cold Cerberus



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!