Skip to content

Instantly share code, notes, and snippets.

function Card(val,st) {
this.value = val;
this.suit = st;
}
Card.prototype.getValue = function() {
return this.value;
}
Card.prototype.getSuit = function() {