var Player = function (BJ) {
'use strict';
return {
Score: 0,
Cards: [],
Deal: function (Card) {
this.Cards.push(Card);
},
Clear: function () {
this.Cards = [];
},
Reset: function () {
this.Cards = [];
this.Score = 0;
}