JavaScript: Convert a 2D array to a comma-separated values (CSV) string
JavaScript fundamental (ES6 Syntax): Exercise-257 with Solution
Write a JavaScript program to convert a 2D array to a comma-separated value (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 of ,.
Sample Solution:
JavaScript Code:
//#Source https://bit.ly/2neWfJ2
const arrayToCSV = (arr, delimiter = ',') =>
arr.map(v => v.map(x => `"${x}"`).join(delimiter)).join('\n');
console.log(arrayToCSV([['a', 'b'], ['c', 'd']]));
console.log(arrayToCSV([['a', 'b'], ['c', 'd']], ';'));
Sample Output:
"a","b" "c","d" "a";"b" "c";"d"
Flowchart:

Live Demo:
See the Pen javascript-basic-exercise-257-1 by w3resource (@w3resource) on CodePen.
Improve this sample solution and post your code through Disqus
Previous: Write a JavaScript program to check if two given numbers are approximately equal to each other.
Next: Write a JavaScript program to create a function that accepts up to n arguments, ignoring any additional arguments.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join