最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

In Javascript, why is the minimum of an empty spread array Infinity? - Stack Overflow

programmeradmin1浏览0评论

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 ???

Share Improve this question edited Mar 27, 2017 at 18:42 Kris Molinari asked Mar 27, 2017 at 18:26 Kris MolinariKris Molinari 5036 silver badges17 bronze badges 1
  • ... is not an operator! (didn't even know we had a tag for that :( ) – Felix Kling Commented Mar 27, 2017 at 18:40
Add a ment  | 

1 Answer 1

Reset to default 13

This 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.)

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论