parsing json using jsonparse gives [object, Object]
Hi Everyone trying to learn how to use API data but running into the following problem.
I am using:
-
- $.each(outputDUPCount, function( key, value){
- console.log(key + ": " + value );
- });
but my output code gives me:
- 0: [object Object]
- jsonParse.js:12 1: [object Object]
- jsonParse.js:12 2: [object Object]
- jsonParse.js:12 3: [object Object]
- jsonParse.js:12 4: [object Object]
Can someone tell me how do i parse the actual json object to show me the info inside?