Im using a nodejs code to download a csv file which also contains 19 digits number. But after downloading Im getting a number in the format like "1.23457E+18". So If I try to expand or format this cells to text or number Im getting last 4 digits as 0000. But My actual number is 1234574654345678987.
"Unique": jsonResult[i].dcp,
Im assigning like this. If try to add some special characters like
"UniqueSysReference": jsonResult[i].dcp + "A",
Then Im getting the original number with A. But I need only the actual number. Im using
"json2csvParser". Can anybody please tell me how to fix this issue?