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…