Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumJavaScriptcurryingSingle-choice MCQ

Why does relying on `fn.length` to detect 'fully applied' break for this function?

const f = (a, b = 1, c) => a + b + c; console.log(f.length);