本文介绍了在JavaScript中使用它:[1,2,3,4,5] .duplicate();的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用JavaScript工作:



[1,2,3,4,5] .duplicate();

Make this work in JavaScript:

[1,2,3,4,5].duplicate();

推荐答案

Array.prototype.duplicate=function(){
//your logic here
}


Array.prototype.duplicate = function () {
  var arr = this
  return this.push.apply(arr,arr);
}


这篇关于在JavaScript中使用它:[1,2,3,4,5] .duplicate();的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 11:19