I would like to know how to parse any JSON file irrespective of the contents. For example, I have to parse the following JSON. How would I parse it and call values without using words/keys from the JSON file?
var a = [{
    "Master Row": "P558:15",
    "Prefix*": "5C34",
    "Base*": "1508",
    "Suffix*": "CA",
    "Weight Unit of Measure": "lb"
}, {
    "Master Row": "P558:16",
    "Prefix*": "5C34",
    "Base*": "1508",
    "Suffix*": "CA",
    "Weight Unit of Measure": "lb"
}]
 
    