Skip to content
Advertisement

Tag: node-csv-parse

Adding Numbers from csv

I am trying to add all numbers from an column to an variable. The Problem is my code is adding the String to which results into NaN. gives me : “0Daily Device Installs00001000101100” and if I add parseInt(csvrow[2]) I will get NaN for test. My goal is to add all numbers after Daily Device Installs, what am I missing? Answer

Advertisement