I have a JSON like this,
{
"Name" : "Gokul",
"PhoneNumber" : 9876543210,
"Qualification" : "BE"
}
I need to convert it to CSV and the converted CSV should not have JSON keys, I need to convert only JSON values to CSV and my result should be like this,
["Gokul",9876543210,"BE"]
Using Node JS, I need to this Conversion.