在JavaScript中使用它:[1,2,3,4,5] .duplicate(); [英] Make this work in JavaScript: [1,2,3,4,5].duplicate();

查看:73
本文介绍了在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();

推荐答案

为此你需要在javascript中扩展Array类的功能



For this you need to extend the functionality of Array class in javascript

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();的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆