Is there a simple method for extracting only the values of the properties within the results
object in the given JSON data?
let jsonData = {"success":true,
"msg":["Clutch successfully updated."],
"results":{"count_id":2,
"count_type":"Clutch",
"count_date":"2000-01-01",
"fish_count":250,
"count_notes":"test"}
};
let extractedValues = extractValues(jsonData.results);
//extractedValues=[2, "Clutch","2000-01-01",250,"test"]