DEV Community

Discussion on: Read CSV Files in React Apps without Installing Any Package

Collapse
 
alarbelaez profile image
alarbelaez

I had problems with the breaks and the cvsArray, can you help me

Collapse
 
theallegrarr profile image
Nurudeen Amedu

What’s the error you’re getting?

Collapse
 
alarbelaez profile image
alarbelaez

TypeError: csvArray is undefined

Collapse
 
theallegrarr profile image
Nurudeen Amedu

Check for csvArray before using it, you can put everything inside an if block

if(csvArray){
// continue
}