<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script>
const day =3 ;
switch (day) {
case 1:
console.log("Monday");
break;
case 2:
console.log("Tuesdaay");
break;
case 3:
console.log("Wednesday");
break;
default:
console.log("Not Monday , Wednesday , Tuesday")
break;
}
</script>
</head>
<body>
</body>
</html>
No comments:
Post a Comment