MCPcopy Index your code
hub / github.com/careercup/CtCI-6th-Edition-JavaScript / deckOfCards.js

File deckOfCards.js

chapter07/7.01 - Deck of Cards/deckOfCards.js:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1var Card = function(suit, number) {
2 this.suit = suit;
3 this.number = number;
4 this.value = `${this.number} ${this.suit}`;

Callers

nothing calls this directly

Calls 2

pushMethod · 0.45
popMethod · 0.45

Tested by

no test coverage detected