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

Function Deck

chapter07/7.01 - Deck of Cards/deckOfCards.js:7–10  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

5};
6
7var Deck = function() {
8 this.cards = [];
9 this.newDeck();
10};
11
12Deck.prototype.newDeck = function() {
13 this.clear();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected