Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumTypeScripttypeof type queriesSingle-choice MCQ11 views

What does `BoxCtor` represent, and which expression below is therefore valid?

class Box { value = 0; static make() { return new Box(); } } type BoxCtor = typeof Box;