Course · Section 2: JavaScript Fundamentals – Part 1 · Lecture 13: Basic Operators
Implement `getCity(user)` returning `user.address.city` using optional chaining, or the string `Unknown` when any part is missing.
+ 1 hidden test run on Submit.
user?.address?.city short-circuits to undefined if any link is missing, and ?? 'Unknown' supplies the default.
Run your code to see results.