summaryrefslogtreecommitdiff
path: root/js/src/tests/test262/language/optional-chaining/optional-chain-prod-arguments.js
blob: c9d987407889dffe1a09497d99d398ae14b552af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2020 Salesforce.com, Inc. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: prod-OptionalExpression
description: >
  Productions for ?. Arguments
info: |
  OptionalChain[Yield, Await]:
    ?. Arguments
features: [optional-chaining]
---*/

function fn(arg1, arg2, arg3 = 0) {
  return arg1 + arg2 + arg3;
}

assert.sameValue(fn?.(10, 20), 30, 'regular');
assert.sameValue(String?.(42), '42', 'built-in');
assert.sameValue(fn ?. (...[10, 20, 40]), 70, 'spread');

reportCompare(0, 0);