Skip to content

Instantly share code, notes, and snippets.

@Bijesse
Created April 30, 2021 16:00
Show Gist options
  • Save Bijesse/e753ec612c9dba5353c54239db66c2b9 to your computer and use it in GitHub Desktop.
Save Bijesse/e753ec612c9dba5353c54239db66c2b9 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=e753ec612c9dba5353c54239db66c2b9
<!DOCTYPE html>
<html>
<head>
<title>Multiple Conditions Practice</title>
</head>
<body>
<input id="year">
<button id="class-name">Year you will graduate</button>
</body>
</html>
{"enabledLibraries":["jquery"],"hiddenUIComponents":["console"]}
$("#class-name").click(function() {
var year = $("#year").val();
if(year === "2019") {
alert("Senior");
}
else if(year === "2020"){
alert("Junior");
}
else if(year === "2021"){
alert("Softmore");
}
else if(year === "2022"){
alert("Freshman");
}
else{
alert("You are not in High School");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment