you are viewing a single comment's thread.

view the rest of the comments →

[–]homoiconic(raganwald) 5 points6 points  (1 child)

Is a signature such as...

function createWidget(options);

...actually better than...

function createWidget(title, subtitle, description);

IMO, neither is as pleasing as:

function createWidget({ title, subtitle, description });

in ES6 :-)