Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
JavaScript
hard
JavaScript
this-binding spec edge cases
Single-choice MCQ
What is the output?
"use strict"; function f(a){arguments[0]=6; return a;}\nconsole.log(f(5));