// -------------------------------------------
// โญ B can access Object's "static methods",
// โญ but A can'tโ
// -------------------------------------------
class A {}
class B extends Object {}
const obj = { name: 'Joe', age: 21 };
// โ TypeError: `A.getOwnPropertyNames` is not a functionโ
A.getOwnPropertyNames(obj);
// โญ normally call `Object.getOwnPropertyNames(obj)` directly.
B.getOwnPropertyNames(obj), // [ 'name', 'age' ]