I want to take this array containing one element (STRING with a bunch of comma separated elements)
["Bucknell Venture Plan Competition, Mitch Blumenfeld, DreamIt Ventures, Deep Fork Capital, John Ason, Mitchell Blumenfeld, Gianni Martire"]
I want to turn this into this. An array containing each name as a separate element of the array.
["Bucknell Venture Plan Competition", "Mitch Blumenfeld", "DreamIt Ventures", "Deep Fork Capital", "John Ason", "Mitchell Blumenfeld", "Gianni Martire"]
Thanks!
UPDATE:
Thanks for the help. It worked!
source share