I am new to coding and I am having trouble getting the result I want from a simple If /Else statement.
When "Yes" is entered correctly as written It works but I would like the response to work regardles of case sensitivity (i.e yes, YES, yEs etc.)
let cheer = prompt('Did the Team win?');
if(cheer != 'Yes') {
alert("We will win the next one!");
} else{
alert("Lets Go Team");
}