reading-notes

Code Fellows courses Notes

This project is maintained by QamarAlkhatib

Continuing from Duckett JS , HTML&CSS books

From the Duckett HTML book

Chapter 6 - Tables

This chapter talks about that there are some types of information that need to be displayed in a table. the table represent information in a grid format.

in HTML we have tag called (< table>) we use it when we want to create a table. and there are (< tr>) that represent the table row, and (< td>) that represent the table data.

From the Duckett JS Book

Chapter 3: Functions, Methods, and Objects

Sometimes you will want several objects to represent similar things. Object constructors can use a function as a template for creating objects, in this case we have to use constructor, we create instances of the object using the constructor function.