2018-03-24 16:22:20 +05:30

6 lines
72 B
JavaScript

function t(undefined = 17, a = 3) {
return a;
}
expect(t()).toBe(3);