MCPcopy Create free account
hub / github.com/careercup/CtCI-6th-Edition-JavaScript / Call

Function Call

chapter07/7.02 - Call Center/callCenter.js:18–20  ·  view source on GitHub ↗
(time)

Source from the content-addressed store, hash-verified

16
17/* Call class */
18var Call = function(time) {
19 this.time = time; // time the call will take in ms
20};
21
22/* Call Center class */
23var CallCenter = function() {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected