**If**
<script>
let student = {name:"Hector",blood:"B",age: 30};
if(student,blood==="A"){
console.log('1st Division');
}else if(student,blood==="B"){
console.log('the second Division');
}else if(student,blood==="0"){
console.log('the third Division');
}else{
console.log('the fourth Division');
}
</script>
**Switch**
<script>
switch(student,blood){
case "A":
console.log('1st Division')
break;
case "B":
console.log('the second Division')
break;
case "C":
console.log('the third Division')
break;
default:
console.log('the fourth Division')
}
</script>