title
Given: an array containing hashes of names
Return: a string formatted as a list of names separated by commas except for the last two names, which should be separated by an ampersand.
Example
1 | list([ {name: 'Bart'}, {name: 'Lisa'}, {name: 'Maggie'} ]) |
My solution
1 | function list(names){ |
good solution
1 | //one |