6 lines
72 B
JavaScript
6 lines
72 B
JavaScript
function t(undefined = 17, a = 3) {
|
|
return a;
|
|
}
|
|
|
|
expect(t()).toBe(3);
|