javascript - Why splice() method changes the value of other array? - Stack Overflow

I have an array sayvar list = ["first", "second"];now I assign list to some other v

I have an array say

var list = ["first", "second"];

now I assign list to some other variable say

var temp = list;

Now when I use splice on list like

list.splice(0,1);

Now when I check the value of list it shows

list = ["second"]

Also when I check the value of temp then it says

temp = ["second"]

I want to know why is that so? Why the value of temp is changed?

I have an array say

var list = ["first", "second"];

now I assign list to some other variable say

var temp = list;

Now when I use splice on list like

list.splice(0,1);

Now when I check the value of list it shows

list = ["second"]

Also when I check the value of temp then it says

temp = ["second"]

I want to know why is that so? Why the value of temp is changed?

Share asked Apr 17, 2012 at 8:37 me_digvijayme_digvijay 5,50210 gold badges51 silver badges86 bronze badges 2
  • Because temp is only a pointer to the actual array, it's not being copied. – Shadow Wizzard Commented Apr 17, 2012 at 8:38
  • possible duplicate of Why does changing an Array in JavaScript affect copies of the array? – Shadow Wizzard Commented Apr 17, 2012 at 8:39
Add a ment  | 

4 Answers 4

Reset to default 8

when you do an assignment like var temp = list you're creating a reference temp to list. So since splice changes list array in-place, you're also changing temp

Use slice instead which returns a copy of the array, like so

var temp = list.slice();

A mon mistake in JS

This is a pointer, not a clone of the object:

var temp = list;

If you want to actually copy the object, there are a few ways. The simplest is just to concat it with itself:

var temp = list.concat([]);
// or
var temp = list.slice();

Note that this is somewhat dangerous, it only gets the base values out of the array. There are more advanced methods for cloning objects and creating 'perfect' array clones.

slice

should do the trick:

var temp = list.slice(0);

About object cloning, look here How do you clone an Array of Objects in Javascript?

You can use a prototype method to add this functionality.

Object.prototype.clone = function() {
  var newObj = (this instanceof Array) ? [] : {};
  for (i in this) {
    if (i == 'clone') continue;
    if (this[i] && typeof this[i] == "object") {
      newObj[i] = this[i].clone();
    } else newObj[i] = this[i]
  } return newObj;
};

Which then allows you to do this:

var a = [1,2,3];

var b = a.clone();

a[1] = 5;

console.log(a); //1,5,3
console.log(b); //1,2,3

Disclaimer: shamelessly borrowed from here (the whole article is worth a read): http://my.opera./GreyWyvern/blog/show.dml/1725165

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743689020a4490639.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信