JavaScript: Target a given value in a nested JSON object
JavaScript fundamental (ES6 Syntax): Exercise-6 with Solution
Target Value in Nested JSON
Write a JavaScript program to target a given value in a nested JSON object based on the given key.
- Use the in operator to check if target exists in obj.
- If found, return the value of obj[target].
- Otherwise use Object.values(obj) and Array.prototype.reduce() to recursively call dig on each nested object until the first matching key/value pair is found.
Sample Solution:
JavaScript Code:
Output:
some data undefined https://images.dog.ceo/breeds/african/n02116738_1105.jpg
Flowchart:

Live Demo:
For more Practice: Solve these Related Problems:
- Write a JavaScript program that recursively searches a nested JSON object for a given key and returns its associated value.
- Write a JavaScript function that traverses a complex JSON object to locate and return a specified target value.
- Write a JavaScript program that extracts all occurrences of a given key from a nested JSON object into an array.
Improve this sample solution and post your code through Disqus
Previous: Write a JavaScript program to convert an array of objects to a comma-separated values (CSV) string that contains only the columns specified.
Next: Write a JavaScript program to converts a specified number to an array of digits.
What is the difficulty level of this exercise?
Based on 136 votes, average difficulty level of this exercise is Medium
.
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics