Real API data often has multiple nesting levels. Work through step by step, checking each level exists.
const response = {
data: {
user: {
profile: {
name: "Alice"
}
}
}
};
const name = response.data.user.profile.name;
If any level is missing, you'll get an error. We'll learn safe access patterns soon.