Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/TheAlgorithms/JavaScript
/
Class
Data-Structures/Queue/QueueUsing2Stacks.js:4–4 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
2
// contribution made by hamza chabchoub for a university project
3
4
class
Queue {
5
constructor() {
6
this.inputStack = []
7
this.outputStack = []
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected