Inspector V2.21 Read me Turkish
Objects | Properties |
---|---|
|
|
Methods sort | |
|
|
[object Menu] Chap4 — 7 properties and 9 methods |
class Entry {
constructor(evt, sq) {
this.events = evt; this.squirrel = sq
}
toString() {
let s = this.events.length;
if (this.squirrel) s += " ✘";
return "[object Entry] " + s
}
}