I want to get the individual values of JSON Object keys as well as of its elements too with the help of the iteration
My json will looks like this:-
var a=
{
    "HYDROGEN": {
        "atomic_number": 1,
        "abbreviation": "H",
        "atomic_weight": 1.008
    },
    "HELIUM": {
        "atomic_number": 2,
        "abbreviation": "He",
        "atomic_weight": 4.003
    }}
 
    