Skip to content

Instantly share code, notes, and snippets.

@jbspeakr
Created August 28, 2013 08:04
Show Gist options
  • Save jbspeakr/6363320 to your computer and use it in GitHub Desktop.
Save jbspeakr/6363320 to your computer and use it in GitHub Desktop.
JS Howto: Transform list into CSV.
var toCsv = function(list){
var emptyString = '';
return list + emptyString;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment