最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Array.prototype without modifying original array - Stack Overflow

programmeradmin0浏览0评论

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
Add a ment  | 

2 Answers 2

Reset to default 10
my_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
}
发布评论

评论列表(0)

  1. 暂无评论