summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Math/max/Math.max_each-element-coerced.js
blob: 98488f710e54efb3fc75d37e13ce9553a8ba7b83 (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.max
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.max(NaN, n);
assert.sameValue(valueOf_calls, 1);

reportCompare(0, 0);