Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 answers
573 users
function f({name = 'Dumbledore', graph = {x: 0, y: 0}, b = 3453} = {}) { console.log(name, graph, b); } f({graph:{x: 46, y: 31}, b: 20}); /* run: "Dumbledore", { x: 46, y: 31 }, 20 */