i get json data from api like this :
{
    "function": "getCategoryItem",
    "version": "0.1",
    "returnCode": true,
    "errorCode": 0,
    "errorMessage": "",
    "result": {
        "_ITEM_": [
            {
                "itemId": 10000,
                "itemName": "Item Test\u00fc\u00e7\u011e\u00d6",
                "itemImageURL": "test.png",
                "itemDescription": "21testDESC",
                "itemPrice": 762
            },
            {
                "itemId": 10001,
                "itemName": "Item Test V2",
                "itemImageURL": "tiger.png",
                "itemDescription": "asfdjKDEWSC",
                "itemPrice": 552
            },
                        ],
        "_NAVIGATION_": [
            {
                "itemCount": 21,
                "totalCount": 21,
                "currentPage": 1,
                "navigationSize": 10,
                "pageSize": 10
            }
        ]
    }
}But i cant access ITEM -> itemId or NAVIGATION -> currentPage how can i access inside to ITEM and NAVIGATION using JavaScript? Thanks for your help.
 
     
    