Objects

Nested Objects

Nested Objects

Objects can contain other objects. Reading nested data means following the path one property at a time, from the outer object to the inner value.

Nested objects are common in API responses because related details often belong together.

Your task: Create locationLabel from profile.name, profile.location.city, and profile.location.country. Log the label after creating it.

Free with a JS Exercises account

Sign in to start coding, run your solution, and keep your progress saved for later. No payment needed.

By continuing, you agree to our Terms and Privacy Policy. We'll send occasional product updates and news. You can unsubscribe anytime.

Nested Objects

Objects can contain other objects. Reading nested data means following the path one property at a time, from the outer object to the inner value.

Nested objects are common in API responses because related details often belong together.

Your task: Create locationLabel from profile.name, profile.location.city, and profile.location.country. Log the label after creating it.

Free with a JS Exercises account

Sign in to start coding, run your solution, and keep your progress saved for later. No payment needed.

By continuing, you agree to our Terms and Privacy Policy. We'll send occasional product updates and news. You can unsubscribe anytime.

Console

Run code to see output.