Page MenuHomePhorge

shape.js
No OneTemporary

Size
289 B
Referenced Files
None
Subscribers
None

shape.js

function ShapeA() {}
const ShapeB = {
a() {
console.log('aaa');
}
};
ShapeA.prototype.__proto__ = ShapeB;
console.log(ShapeA.prototype.__proto__); // { a: [Function: a] }
const shapeA = new ShapeA();
shapeA.a(); // aaa
console.log(ShapeA.prototype === shapeA.__proto__); // true

File Metadata

Mime Type
text/plain
Expires
Wed, Jun 17, 1:11 PM (1 d, 20 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
518205
Default Alt Text
shape.js (289 B)

Event Timeline