7 lines
79 B
JavaScript
7 lines
79 B
JavaScript
function f(a = 1) {
|
|
'use strict';
|
|
return this;
|
|
}
|
|
|
|
assert.isUndefined(f());
|