Skip to content

Instantly share code, notes, and snippets.

@evertonthepaula
Last active November 2, 2016 05:14
Show Gist options
  • Save evertonthepaula/0521f5eeeca0fb83fba8e5d24f3db1c6 to your computer and use it in GitHub Desktop.
Save evertonthepaula/0521f5eeeca0fb83fba8e5d24f3db1c6 to your computer and use it in GitHub Desktop.
for(let p = 0, line; line = allTextLines[p++];)
{
var obj = {};
var col = line.split(',');
for(let j = 0, h; h = header[j]; j++)
{
obj[h] = col[j];
}
jsonArray.push(obj);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment