Is there a more correct way to output the contents of an array as a comma delimited string
@emails = ["[email protected]", "[email protected]", "[email protected]"]
@emails * ","
=> "[email protected]", "[email protected]", "[email protected]"
This works but I am sure there must be a more elegant solution.
"[email protected],[email protected],[email protected]"array_name * ","?