JS
challenger
Home
Intermediate JavaScript
objects II
Optional chaining with a default
Optional chaining with a default
Read
user.profile.country
safely and fall back to
"Unknown"
when the value is missing. Combine
?.
with
??
.
Premium
reset
function greet(name) { return `Hello, ${name}!`; } console.log(greet("Erik"));
JavaScript
Run Code
Console