Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardJavaScriptgetters and settersSingle-choice MCQ2 views

What does this code log?

class A { #x = 1; getX() { return this.#x; } }\nconsole.log(new A().getX());