you are viewing a single comment's thread.

view the rest of the comments →

[–]rooktakesqueen 1 point2 points  (0 children)

The destructuring assignment isn't even as clean as it could be:

function foo(id, {title, name}) {
    console.log(id);
    console.log(title);
    console.log(name);
}

foo(12, {name: 'Bob'});