A webapp to play hangman with hard coded phrases.
Remember that you must follow the TechDegree instructions and this is not an exact copy of the Phrase Hunt Game
Also start adding you code comment as follows for your functions
/**
* showMatchedLetter function
* @param {string} letter - the letter the user chose on the screens
* @return {array | object | string | number | boolean} - if the function returns something pass the data type that returns from the function (you will only enter one)
*/
function showMatchedLetter(letter) { more code here }