如果array = [1,2,3,4,5],我怎样才能将数字6,x的次数推到数组中.
array.push(6) * x
当我运行类似的东西时,它会返回被推送6次x的整个数组.将括号括在push * x周围会使我的代码无效,有什么建议吗?
例:
array.push(6) "2 times" => [1,5,6,6]
解决方法
是的,您可以使用
Array#fill
方法.
array = [1,5] array.fill(12,array.size,4) # => [1,12,12]
说明
Suppose you have an array
a = [1,3]
. Nowa.size
will give you3
,where last index is2
. So,when you are usinga.size
with#fill
,then you are telling to start pushing object from3
to somen
number of times.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。