Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
JavaScript
medium
JavaScript
object destructuring
Single-choice MCQ
1 views
What is the output?
function f({a} = {}) { return a; }\nconsole.log(f());