I want to get the data from a JSON file and copy the key and value pair to the array. For example:
jsondata = {
'Name': {'text': {'name': 'John'}},
'Age': {'number': {'age': '22'}}
}
in to
array=[["Name","text","name","John"]
["Age","number","age","22"]]
Is this possible?
lodashpackage. I'm pretty sure there's a function for that