summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Math/min/Math.min_each-element-coerced.js
blob: 2183e1847b903005e152c4952860cd3ecf7f037a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2020 Vladislav Lazurenko. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-math.min
description: Call ToNumber on each element of params
info: |
    2. For each element arg of args, do
        Let n be ? ToNumber(arg).
        Append n to coerced.
---*/

let valueOf_calls = 0;

const n = {
  valueOf: function() {
    valueOf_calls++;
  }
};
Math.min(NaN, n);
assert.sameValue(valueOf_calls, 1);

reportCompare(0, 0);