admin管理员组文章数量:1345079
I want to use Array.fill
method to create a sequence from 0...499 like
const arr = []
for(let i = 0; i < 500; i++)
arr.push(i);
Currently, I am using Array.from
like:
const arr = Array.from(Array(500).keys())
But how can I use just Array.fill
to create the sequence? Is it even possible?
I want to use Array.fill
method to create a sequence from 0...499 like
const arr = []
for(let i = 0; i < 500; i++)
arr.push(i);
Currently, I am using Array.from
like:
const arr = Array.from(Array(500).keys())
But how can I use just Array.fill
to create the sequence? Is it even possible?
-
6
I don't think you can.
Array.fill
fills the array with the same values, not different values. – Barmar Commented Jul 5, 2019 at 16:51 - 1 My counter question would be "why?" – user5734311 Commented Jul 5, 2019 at 16:53
- 2 You can't DOC says "The fill() method fills (modifies) all the elements of an array from a start index (default zero) to an end index (default array length) with a static value. It returns the modified array". – Maheer Ali Commented Jul 5, 2019 at 16:53
-
6
Just use
Array.from
, i.e.Array.from({ length: N }, (v, i) => i)
– Terry Commented Jul 5, 2019 at 16:54 - 1 @Terry He knows the other methods. That's why I didn't close this as a dupe of stackoverflow./questions/55579499/… – Barmar Commented Jul 5, 2019 at 16:55
4 Answers
Reset to default 6No you can't do it with fill alone as fill method adds a static value
The fill() method fills (modifies) all the elements of an array from a start index (default zero) to an end index (default array length) with a static value. It returns the modified array.
console.log(new Array(500).fill(0).map((_,i) => i ))
console.log(Array.from(Array(500).keys()))
It's not possible to use fill
alone to do what you ask. You'll have to bine it with one or more other methods.
I can't say I remend this approach, because it really doesn't feel like idiomatic JavaScript, but just for demonstration purposes, here's a solution that uses fill
to populate the resulting array (instead of just using it to get around the awkwardness of the Array constructor). It's also more verbose and probably less performant than the alternatives.
console.log(Array.from({ length: 500 }).reduce((x, y, i, a) => (a.fill(i, i, i + 1), a), []))
For what it's worth, I find Array.from({ length: 500 }, (_, i) => i)
as @Terry suggested to be a much more elegant.
You can use a one-line helper like this:
function createArrayWithNumbersFromRange(start: number, end: number): number[] {
return [...Array(end - start + 1)].map((_, index) => start + index);
}
You could generate an Iterator and push it to a new array.
[...Array(5).keys()];
=> [0, 1, 2, 3, 4]
本文标签: How to use Arrayfill to create 0499 in JavaScriptStack Overflow
版权声明:本文标题:How to use Array.fill to create 0...499 in JavaScript? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743790845a2539539.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论