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

Method isEmpty

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

Source from the content-addressed store, hash-verified

44 return this.data.length;
45 }
46 isEmpty() {
47 return this.size() === 0;
48 }
49 push(value) {
50 this.data.push(value);
51 }

Callers 2

peekMethod · 0.95
#shiftStacksMethod · 0.45

Calls 1

sizeMethod · 0.95

Tested by

no test coverage detected