Read 07 ~ HTML Tables; JS Constructor Functions
By Abdallah obaid
NAME | URL |
---|---|
Home | Home. |
Read 01 | Introductory HTML and JavaScript. |
Read 02 | HTML Text, CSS Introduction, and Basic JavaScript Instructions. |
Read 03 | HTML Lists, CSS Boxes, JS Control Flow. |
Read 04 | HTML Links, CSS Layout, JS Functions. |
Read 05 | HTML Images; CSS Color & Text. |
Read 06 | JS Object Literals; The DOM. |
Read 07 | HTML Tables; JS Constructor Functions. |
Read 08 | More CSS Layout. |
Read 09 | Forms and Events. |
Read 10 | JS Debugging. |
Read 11 | Assorted Topics. |
Read 12 | Docs for the HTML canvas Element & Chart.js. |
Read 13 | Local Storage. |
Read 14a | CSS Transforms, Transitions, and Animations. |
Read 14b | What Google Learned About Teams. |
Problem Domain:-
Understanding the problem domain is the hardest part of programming.
Programming is easy if you understand the problem domain.
It is very difficult to solve a problem before you know the question. It’s like buzzing in on Jeopardy before you hear the clue and shouting out random questions.
You can often make the problem domain easier by cutting out cases and narrowing your focus to a particular part of the problem.
# Tables:- ———————————-
The <table> element is used to create a table. The contents of the table are written out row by row.
You indicate the start of each row using the opening <tr> tag. (The tr stands for table row.)
Each cell of a table is represented using a <td> element. (The td stands for table data.)
The <th> element is used just like the <td> element but its purpose is to represent the heading for either a column or a row. (The th stands for table heading.)
The rowspan attribute can be used on a <th> or <td> element to indicate how many rows a cell should span down the table.
# Functions, Methods, and Objects:- ———————————-