Created
February 24, 2019 20:42
-
-
Save oropesa/3ac479a9c94e2e511cdeb5ce9fb020a8 to your computer and use it in GitHub Desktop.
Converts a 2D array to a comma-separated values (CSV) string. Use Array.prototype.map() and Array.prototype.join(delimiter) to combine individual 1D arrays (rows) into strings. Use Array.prototype.join('\n') to combine all rows into a CSV string, separating each row with a newline. Omit the second argument, delimiter, to use a default delimiter …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const arrayToCSV = (arr, delimiter = ',') => | |
arr.map(v => v.map(x => `"${x}"`).join(delimiter)).join('\n'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment