##Tecnologies Used
- HTML
- CSS
- Github
- visual studio code
- Git Bash
- JQuery
- JavaScript
- Bootstrap
Code Sample
$(".selection").on("click", function(){
that = this;
if(answerInterval === true){
answerInterval = false;
resetTimeout();
if ($(this).text() === currentQuestion.answer.answer){
userCorrect();
}else{
userIncorrect();
}
updateScore();
checkGameEnd();
setTimeout(newQuestion,5000);
}
});