I've been trying for ages now to no avail (some just returning 'null'). I'm trying to get this CSV (which will eventually contain over 2.2 million elements):
Rough,Lukk,black,Semnas,mickayrex
to be read into a javascript array.
Currently, I just have a fixed array
var usernames = ['mickayrex', 'black'];
and the goal is to be able to put all names from the text file into an array format as above to then use by rest of the program.