Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
JavaScript
hard
JavaScript
Proxy and Reflect
Single-choice MCQ
What is the output?
const o={x:1}; Reflect.set(o,"x",2); console.log(o.x);