unirse al último elemento de Array JavaScript con un valor diferente

['tom', 'dick', 'harry'].join(', ').replace(/, ([^,]*)$/, ' and $1')
> "tom, dick and harry"
Enchanting Eagle