Posts

Showing posts from January, 2021

Javascript Assignments

Task 1: Declare a variable named  number0  and give it any numeric value Print the type of  number0  on console.  hint: use typeof( ) to get the type  Declare a variable named  number1  and give it any numeric value greater than  number0 Print the type of  number1  on console.  hint: use typeof( ) to get the type  Print the  sum  of the two variables( number0 and number1 ) in console by using  console.log( ) Print the  difference  of the two variables( number0  and  number1 ) in console by using  console.log( ) Print the  product  of the two variables( number0  and  number1 ) in console by using  console.log( ) Divide  the numbers( number0  and  number1 ) and print the result in the console by using  console.log( ) Print the  remainder  when  number0  is divided by  number1  in console by ...

Javascript

I What is an algorithm? (Example of Binary Search) alert console.log() Types (string, number, boolean) Data literals Variables Assignment II Variable scope Operators Assignment III Loops Assignment IV DS Arrays (its methods(.map etc.), properties(length etc.)) Assignment V DS Objects (JSON) Methods and Functions Assignment VI async-await Assignment VI ... Object Oriented JS   Assignment

Assignment 3

* In the picture at the link provided below, ignore the cylindrical outer container, just focus on the tables. Make the tables with the same styling(same borders, background-color and padding) Task : Click here to see the design of the tables you have to replicate using HTML and CSS.