Skip To Main Content

Header - Client: Exam Days

.

In this section, a client-side script is provided to offer information about the current day and the next school or exam day. This JavaScript program relies on input data concerning school holidays, days off, and exam days.

  1. Start of the School Year Date (updateStartOfYearDate): This variable can be modified to reflect the actual start date of the school year. For example, if the school year starts on September 1st, 2024, the client can change the date like this: 
    var updateStartOfYearDate = new Date("2024-09-01");
     
  2. List of Days Off (updateListOfDaysOff): This list contains pairs of dates and descriptions of days off. The client can add, remove, or modify days off and their descriptions. Each date should be in the format "YYYY-MM-DD", and the description can be any string. For example, to add another day off on December 1st, 2024, with the description "National Holiday", the client can do this:
    var updateListOfDaysOff = [
        new Date("2024-05-12"), "Parent-Teacher Conferences",
        new Date("2024-10-04"), "Fall Break",
        new Date("2024-12-01"), "National Holiday"
    ];

     
  3. List of Exams (updateListOfExams): This list contains pairs of dates and descriptions of exams. Similar to the list of days off, the client can add, remove, or modify exams and their descriptions. For example, to add another exam on June 15th, 2024, with the description "Mathematics Exam", the client can do this: 
    var updateListOfExams = [
        new Date("2024-05-13"), "Final Exam for Subject X",
        new Date("2024-10-05"), "Final Exam for Subject Y",
        new Date("2024-06-15"), "Mathematics Exam"
    ];

     

Header Holder

Navigation

Breadcrumb

Registration

Registration Information (11/2021)
Forms (11/2020)

 9th Grade Freshman Form - Click Here to Open 11/2023

 10th Grade Sophomore Form - Click Here to Open 11/2023
 11th Grade Junior Form - Click Here to Open 11/2023
 12th Grade Senior Form - Click Here to Open 11/2023

 

Waiver of Teacher Recommendation Form - Click Here to Open

VWCC Dual Enrollment Application/Enrollment Letter - Click Here to Download 11/2023

How to calculate your GPA - PDF, Click Here