admin管理员组文章数量:1345032
I want to create a new Array method without modifying the original array.
my_array.push('foo') //modifies my_array
my_array.slice(2) //returns a new array without modifying my_array
I'd like to make a new Array.prototype method that returns an array without modifying the array it was called upon. So this would be possible:
//[define new method here] Array.prototype.add_foo = function() {...
var my_array = ['poo'];
my_array.add_foo(); //would return ['poo', 'foo'];
my_array; //would return ['poo'];
I want to create a new Array method without modifying the original array.
my_array.push('foo') //modifies my_array
my_array.slice(2) //returns a new array without modifying my_array
I'd like to make a new Array.prototype method that returns an array without modifying the array it was called upon. So this would be possible:
//[define new method here] Array.prototype.add_foo = function() {...
var my_array = ['poo'];
my_array.add_foo(); //would return ['poo', 'foo'];
my_array; //would return ['poo'];
Share
Improve this question
asked Aug 29, 2014 at 2:43
northamericannorthamerican
2,3521 gold badge23 silver badges31 bronze badges
2
- Just clone the array first. – elclanrs Commented Aug 29, 2014 at 2:44
-
Okay, create a new array and return it instead of modifying
this
– Paul Commented Aug 29, 2014 at 2:45
2 Answers
Reset to default 10my_array.concat('foo');
concat
doesn't alter the original array.
Array.prototype.add_foo = function(){
var ret = this.slice(0); //make a clone
ret.push("foo"); //add the foo
return ret; //return the modified clone
}
本文标签: javascriptArrayprototype without modifying original arrayStack Overflow
版权声明:本文标题:javascript - Array.prototype without modifying original array - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743752784a2532959.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论