I am working with a JavaScript array that contains strings arranged in a specific format:
arrayOfString = ['a', 'b,c', 'd,e', 'f'];
My goal is to transform this array into a new format like so:
myString = ["a", "b", "c", "d", "e", "f"];
Can anyone help me achieve this transformation?