I have the following json:
{
"menu": [{
        "name": "vegetation",
        "id": "1",
        "children": [
            {
                "name": "landuse",
                "id": "1.1",
                "children": [
                    {
                        "name": "forest area",
                        "id": "1.1.1",
                        "children": null
                    }, 
                    {
                        "name": "plantation",
                        "id": "1.1.2",
                        "children": null
                    }
                ]
            }
        ]
}]
}
I want to dynamically access the objects whose value of "children" is null and store the "name" of these objects in a variable. For example in this case either forest area or plantation. How can I do this using javascript or jquery?
 
     
     
     
    