Use the Array map method to return a modified version of your array:

var newArray = theArray.map(function(v,i,a){
   return v[0].split(",");
});

The function that is passed as the argument to the map method is used to determine the values in the mapped array. As you can see, the function takes each value in the array, splits it by comma, and returns the resulting array of two strings.

The output is then:

[["Split", "each"],["string", "in"],["this", "array"]];

To make this work recursively for arrays of arbitrary depth, you can use:

var newArray = theArray.map(function mapper(v,i,a){
    if(typeof v == "string"){
        return v.split(",");
    } else {
        return v.map(mapper);
    }
});
Answer from user1726343 on Stack Overflow
๐ŸŒ
ConvertCSV
convertcsv.com โ€บ json-to-csv.htm
JSON To CSV Converter
It can also be a single object of name/value pairs or a single object with a single property with an array of name/value pairs. It can also be in JSONLines/MongoDb format with each JSON record on separate lines. You can also identify the array using Javascript notation.
๐ŸŒ
Google
tagmanager.google.com โ€บ gallery
Tag Manager Template Gallery
Deploy tags in Google Tag Manager easily and safely with the Community Template Gallery
Discussions

javascript - Split an array of strings using a separator - Stack Overflow
In JavaScript, is it possible to split each string in a multidimensional array of strings using a separator? I'm trying to split a multidimensional array of strings using a string separator, but I ... More on stackoverflow.com
๐ŸŒ stackoverflow.com
Split string into individual characters?
Split string into individual characters ยท You have passed it a string with a space in it - that is you telling it to break it up using the spaces as delimiters. If you send it nothing, it will just break it into every character, split(); ยท The split() method divides a String into an ordered ... More on forum.freecodecamp.org
๐ŸŒ forum.freecodecamp.org
0
July 23, 2021
How to Split an Array of Strings ๐ŸŽป
Iโ€™d like to return the category in a specific collection if our ID is included in a comma separated list in that collectionโ€ฆ I think the formula should look like this but I canโ€™t get past split. if(contains(split(map({Data:rows};JoinedListID);,);{MY_ID})=true;map({Data:rows};Category... More on community.make.com
๐ŸŒ community.make.com
1
0
April 1, 2023
How to split a string and place each splitted part in array?
๐ŸŒ forum.jquery.com
๐ŸŒ
MDN Web Docs
developer.mozilla.org โ€บ en-US โ€บ docs โ€บ Web โ€บ JavaScript โ€บ Reference โ€บ Global_Objects โ€บ String โ€บ split
String.prototype.split() - JavaScript | MDN
The split() method of String values takes a pattern and divides this string into an ordered list of substrings by searching for the pattern, puts these substrings into an array, and returns the array.
๐ŸŒ
JSON Formatter
jsonformatter.org โ€บ json-parser
JSON Parser Online to parse JSON
JSON Example with all data types including JSON Array. ... JSON.Parse() is javascript method for parsing JSON which converts to JavaScript objects.
๐ŸŒ
W3Schools
w3schools.com โ€บ jsref โ€บ jsref_split.asp
JavaScript String split() Method
The split() method splits a string into an array of substrings.
๐ŸŒ
GeeksforGeeks
geeksforgeeks.org โ€บ javascript โ€บ convert-comma-separated-string-to-array-using-javascript
JavaScript - Convert Comma Separated String To Array - GeeksforGeeks
July 11, 2025 - The string is split into individual characters using s.split(""). The reduce() function builds an array by concatenating characters until a comma is encountered.
Find elsewhere
๐ŸŒ
Medium
medium.com โ€บ nerd-for-tech โ€บ basics-of-javascript-string-split-method-4647aa1b0f4e
Basics of Javascript ยท String ยท split() (method) | by Jakub Korch | Nerd For Tech | Medium
June 20, 2021 - The split() method is used to split a string into an array of substrings, and return the new array. The split() method does not change the original string. The method has two parameters.
๐ŸŒ
freeCodeCamp
freecodecamp.org โ€บ news โ€บ javascript-split-how-to-split-a-string-into-an-array-in-js
JavaScript Split โ€“ How to Split a String into an Array in JS
June 16, 2021 - You can split a string by each character using an empty string('') as the splitter. In the example below, we split the same message using an empty string. The result of the split will be an array containing all the characters in the message string.
๐ŸŒ
freeCodeCamp
forum.freecodecamp.org โ€บ javascript
Split string into individual characters? - JavaScript - The freeCodeCamp Forum
July 23, 2021 - Split string into individual characters ... it nothing, it will just break it into every character, split(); ยท The split() method divides a String into an ordered ......
๐ŸŒ
CoreUI
coreui.io โ€บ answers โ€บ how-to-convert-a-string-to-an-array-in-javascript
How to convert a string to an array in JavaScript ยท CoreUI
September 22, 2025 - The split() method divides a string into an array based on the specified separator. Using an empty string '' as the separator splits the string into individual characters, including spaces and punctuation.
๐ŸŒ
BitDegree
bitdegree.org โ€บ learn โ€บ javascript-split-string
JavaScript Split String Revelead: Discover JavaScript String Split
August 10, 2017 - JavaScript string.split() method splits a data string into a substrings array and returns the new array.
๐ŸŒ
W3Schools
w3schools.com โ€บ java โ€บ java_ref_string.asp
Java String Reference
Strings Concatenation Numbers and Strings Special Characters Code Challenge Java Math Java Booleans ยท Booleans Real-Life Example Code Challenge Java If...Else ยท if else else if Short Hand If...Else Nested If Logical Operators Real-Life Examples Code Challenge Java Switch ... For Loop Nested Loops For-Each Loop Real-Life Examples Code Challenge Java Break/Continue Java Arrays
๐ŸŒ
GeeksforGeeks
geeksforgeeks.org โ€บ javascript โ€บ split-a-string-into-an-array-of-words-in-javascript
Split a String into an Array of Words in JavaScript - GeeksforGeeks
July 23, 2025 - This results in an array where each element represents a word from the original string. Using split() method with a chosen separator such as a space (' '). It offers a simple and versatile way to break a string into an array of distinct elements.
๐ŸŒ
Displayr
help.displayr.com โ€บ hc โ€บ en-us โ€บ articles โ€บ 360004289315-How-to-Split-Text-Strings-in-Displayr-Using-JavaScript
How to Split Text Strings in Displayr Using JavaScript โ€“ Displayr Help
3 weeks ago - Next, copy and paste the code below into the JavaScript code editor: // Define the text variable to split var string = awareness // Define the delimiter var split_string = string.split(","); // Extract the first string of before the delimiter ...