JavaScript Typeof -Operator gibt Funktion zurück

class Person {}
console.log(typeof Person); // function
SAMER SAEID