admin管理员组文章数量:1345891
I'm using a generator to create objects, like so:
function* Thing() {
var x = 0;
while (x < 3) {
var rules = [{arr: [1, 2, 3]}, {arr: [1]}, {arr: []}];
yield {
arrayMinimum: Math.min(...rules[x].arr)
}
x++
}
}
var create = Thing();
console.log(create.next().value)
console.log(create.next().value)
console.log(create.next().value) // { arrayMinimum: Infinity } ???
I'm using a generator to create objects, like so:
function* Thing() {
var x = 0;
while (x < 3) {
var rules = [{arr: [1, 2, 3]}, {arr: [1]}, {arr: []}];
yield {
arrayMinimum: Math.min(...rules[x].arr)
}
x++
}
}
var create = Thing();
console.log(create.next().value)
console.log(create.next().value)
console.log(create.next().value) // { arrayMinimum: Infinity } ???
Why is Math.min(...[]) === Infinity
?
Bonus confusion: Math.max(...[]) === -Infinity
???
-
...
is not an operator! (didn't even know we had a tag for that :( ) – Felix Kling Commented Mar 27, 2017 at 18:40
1 Answer
Reset to default 13This is because the arguments-list specified by (...[])
is the empty list of arguments -- i.e., you are doing Math.min()
with no arguments.
The EMCAScript spec for Math.min
states:
If no arguments are given, the result is +∞.
(And, unsurprisingly, it has a similar statement for Math.max
.)
本文标签: In JavaScriptwhy is the minimum of an empty spread array InfinityStack Overflow
版权声明:本文标题:In Javascript, why is the minimum of an empty spread array Infinity? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743818889a2544427.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论