You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
267 B

var Letter = function(letter) {
this.value = letter;
this.hidden = true;
this.hide = function() {
this.hidden = true;
};
this.show = function() {
this.hidden = false;
};
this.render = function() {
return this.hidden ? " _ " : this.value;
};
};