function test({ a = "foo", b = "bar", c = "baz" } = {}) {
console.log(a + b + c);
}
test({c: "blub"}); // foobarblub
function test({ a = "foo", b = "bar", c = "baz" } = {}) {
console.log(a + b + c);
}
test({c: "blub"}); // foobarblub