Files

4 lines
66 B
JavaScript

function f(a, b = a, c = b) { return c; }
assert.equal(3, f(3));