Hey everybody I want to let you know that I have undertaken the grueling task of getting the heck away from WordPress. I was so sick of the problems and updates I had to do all the time. I am now using my ezbloo system and I am integrating all my old posts into the new system. It sucks, but in the end, I will save bundles of time. I needed to keep things simple and that is why I created ezbloo. I'll have more on this later for you guys after I am done with the total integration of my old posts here. So if you are looking for a post and need it faster, shoot me an email and I will make it a priority. [email protected]


JavaScript Switch statement is used when we have a lot of variables that we want to match. In the following example we get the day of the week. We can then show something for each day of the week.

Getting A Day JavaScript Built In Function

There are already functions that JavaScript comes with in every browser. The one we are going to use is they date. There are different variations of the date that you can get. We are going to focus on the day of the week. We use new Date().getDay to get the numbers 0 through 6. 0 is Sunday while 6 is Saturday.

Switch Statements in JavaScript


In Switch statements we try to match a variable. When that variable is matched we can then print out on the page what we want it to. In the following example in today's lesson we are printing out the days of the week. Here is the code.

Code For Today's Lesson

<p id="foo"></p>;
<script>
var boo = document.getElementById('foo');
var cday = new Date().getDay();
var day;
switch (cday){
case 0:
day = "Sunday";
break;
case 1:
day ="Monday";
break;
case 2:
day = "Tuesday";
break;
case 3:
day = "Wednesday";
break;
case 4:
day = "Thursday";
break;
case 5:
day = "Hey Its Friday";
break;
case 6:
day = "Saturday";
}
boo.innerHTML=day;
</script>
  Next Lesson