Skip to content

Instantly share code, notes, and snippets.

@ochilab
Created May 18, 2013 02:44
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ochilab/5603055 to your computer and use it in GitHub Desktop.
Save ochilab/5603055 to your computer and use it in GitHub Desktop.
配列をCSVに変換する関数
function ArrayToCSV(array){
var csv="";
for(var i=0;i<array.length;i++){
csv+=array[i]+",";
}
csv=csv.slice(0,-1);
return csv;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment