Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/careercup/CtCI-6th-Edition-JavaScript
/ constructor
Method
constructor
chapter07/util/Stack.js:13–15 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
11
*/
12
class
Stack {
13
constructor() {
14
this._data = [];
15
}
16
17
size() {
18
return
this._data.length;
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected