Files
2018-09-06 22:35:37 +02:00

6 lines
83 B
JavaScript

function foo(...{ length }) {
return length;
}
expect(foo(1, 2, 3)).toEqual(3);