MCPcopy Index your code
hub / github.com/betomoedano/JavaScript-Coding-Interview-Questions / size

Method size

stacks/queue-via-stacks.js:43–45  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

41 this.data = [];
42 }
43 size() {
44 return this.data.length;
45 }
46 isEmpty() {
47 return this.size() === 0;
48 }

Callers 5

isEmptyMethod · 0.95
peekMethod · 0.95
isValidSubsequenceMethod · 0.45
sizeMethod · 0.45
emptyMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected