Assessment Guide
Note, below we don't cover how to complete advanced tasks. Advanced tasks are required for an A grade, and to achieve this level you're required to tie together and implement the concepts in the notes yourself.
2.1.1 index.html Basic Javascript (core display the date)
Make sure you've completed the clock exercise from session 2
TIP do not put the clock logic in your main function and then set interval to repeatedly call clock.
Note, your clock for the assessment does not need to tick
2.1.2 index.html Dynamic javaScript (intermediate)
2.2.3 contact.html Contact Form Validation (core)
We've covered how to do this several times:
2.3.3 order.html Validation (core)
This may seem a little bit daunting at first, but for this task we only need to validate that a radio box group has a value. As such inputs groups have allow only one choice we can do this in the same way that we validate text inputs:
2.3.4 order.html Real Time Total (intermediate)
- We've covered how to do this in the example here