How can I get the individual values from the value variable below which gives me a string like this: 1001,10/01/2016,11/01/2016 and assign to each of my variable after the value?
var lines = loadedString.split('\n'); //split on newlines
for (var i = 0; i < lines.length; i++)
{
var value = lines[i].split('\t');
var id;
var start;
var end;
}
split('\t')that sounds like a tsv not a csv