Where could I find some JavaScript code to parse CSV data?
Just use .split(','):
var str = "How are you doing today?"; var n = str.split(" ");