how to print large array fully in chrome console?
just join all the elements, separated in string with "," :
uniqueNames.join("\",\"")
I was looking for console.table(array):
To print the full array in the console you can do :
console.log(JSON.stringify(uniqueNames))