This question already has an answer here:
- Access / process (nested) objects, arrays or JSON 20 answers
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"
}]