How can I allow it to be true first then after 10 secs, it will become false?
MemoryGame.Card = function(value) {
this.value = value;
this.isRevealed = false;
this.reveal = function() {
this.isRevealed = true;
}
this.conceal = function() {
this.isRevealed = false;
}
};