Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumJavaScriptobject destructuringSingle-choice MCQ5 views

What does this print?

function f(x = 0) { console.log(x); }\nf();