1st Semester

Unit VI - Lesson 1 - 6

Unit VI - Lesson 1 7.1.1. What is DOM? (c) The DOM represents the structure of a web page as a hierarchical tree of nodes. 7.1.2. Under…

Unit V - Lesson 4

6.4.1. if-else statement // write your code below this line if((year % 4 === 0 && year % 100 !==0) || year % 400 === 0){ var nDays …

Unit V - Lesson 3

6.3.1. Addition Operator // write your code below this line const v1 = boo+num; const v2 = boo+str; const v3 = num+arr; 6.3.2. Other Arit…

Unit V - Lesson 2

6.2.1. Variable declaration & initialization // this is a comment in JS. // Write your code below this var who='World'; 6.2.2…

Unit V - Lesson 1

6.1.1. JavaScript, the language (a) One can use JavaScript to build a youtube like web application (c) One of the ways JavaScript is used in…

Unit IV - Lesson 5

4.5.1. Introduction to flex (c) main axis 4.5.2. flex-direction /* Write your code below */ .flex-item-1{ background-color: red; } .…