I\'m trying to output a list of comma separated links and this is my solution.
var Item = React.createComponent({ render: function() { var tags = [],
To add to the great answers above Ramda has intersperse.
To comma separate a bunch of items you could do:
const makeLinks = (x: Result[]) => intersperse(<>,>, map(makeLink, x))
Pretty succinct