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