Skip to main content

Posts

Showing posts with the label week

Week of the Day using JAVAScript.

 <html>     <head>         <title>JS_programming</title>         <script type='text/javascript'>         var day=11;         if(day<=7)         {             document.write("<h2>The Day of the week is:</h2>")                      switch(day)             {case 1:                 document.write("<h2>SUNDAY</h2>")                 break;                 case 2:                 document.write("<h2>MONDAY</h2>")                 break;                 case 3: ...