Write a function to iterate through a json and print all the values in that json recursively. That json can have objects, arrays or array of objects or even nested arrays and objects
eg:
[[[[{a:{b:{c:1}}}]]],1,3]
{a:1,b:{c:2},d:[1,2]}
Blancer.com Tutorials and projects
Freelance Projects, Design and Programming Tutorials
Write a function to iterate through a json and print all the values in that json recursively. That json can have objects, arrays or array of objects or even nested arrays and objects
eg:
[[[[{a:{b:{c:1}}}]]],1,3]
{a:1,b:{c:2},d:[1,2]}