Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
JavaScript
medium
JavaScript
object destructuring
Single-choice MCQ
5 views
What does this print?
function f(x = 0) { console.log(x); }\nf();