[JavaScript] Prototype eines Objektes

// ab ES6
class Car { }
class Audi extends Car { }

// true
console.log(Object.getPrototypeOf(Audi) === Car);