prettier/tests/optional/undefined.js

10 lines
95 B
JavaScript

var x;
function foo(bar? = undefined) {
x = bar;
}
function bar() {
return x.duck;
}