class Hoge { 
constructor(x) {  
this.x = x; 
}
}
console.log(typeof Hoge);
//=> function


> Hogeのどこが関数なの?

wwwww