1let span = document.querySelector("span");
2let classes = span.classList;
3let result = classes.contains("d");
4if (result) {
5 span.textContent = "The classList contains 'c'";
6} else {
7 span.textContent = "The classList does not contain 'c'";
8}
1List<Card> hand = ...;
2for(Card card : hand){
3 if (card instanceof AceOfDiamonds) return true;
4}