Files

11 lines
114 B
JavaScript
Raw Permalink Normal View History

2026-08-27 21:09:14 +00:00
function foo(a, b, c, d) {
let x = {};
if (someVal) {
x = {b};
} else {
x = {c};
}
return x;
}