Recordings:
JS Presentation Slides: https://docs.google.com/presentation/d/16Pq84TNSjaefU16gBg56R1QCDSpdATZ4aIkCyte82OY/edit#slide=id.gf0b6c11d21_0_115
- Create a google forms clone
- Create Gallery of images for website
- Create Contact form for website
- Style Gallery of images for website
- Style contact form for website
-
Create an array of objects specifying whether the numbers are prime or not using Array.prototype.map function, using a given input array. Example :
Input : [2,3,4,5]
Output:
{
2 : “prime”,
3 : “prime”,
4 : “composite”,
5 : “prime”
} -
In the website’s gallery section, change the image that is clicked on to a new image using click event. You can choose any image.
-
In the website’s gallery section, change the image that is hovered over using mouseenter and mouseleave events. You can choose any image.