DEV Community

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

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
}