Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
peek
Method · 0.95
#shiftStacks
Method · 0.45
Calls
1
size
Method · 0.95
Tested by
no test coverage detected