Table is a grid format to represent information and arrange data into rows and columns.
(table) element used to create table. (tr) tag indicatesthe start of each row. (td) tag represent the cells of table. (th) tag represent the heading for a column or arow. (thead) the heading of the table. (tbody) the body of the table. (tfoot) the footer of the table.
Update the value of properties : use dot or Square brackets.
delete a property : use the delete keyword.
example: hotel.name=’Park’; Or hotel[‘name’]=’Park’;
delete hotel.name; Or hotel[‘name’]=’ ‘;
Example: var quayHotel = new Hotel (‘Quay’,40,25);
(This) is a keyword used in object and functions.he value of this, when used in an object, is the object itself.
In a constructor function (this) does not have a value. The value of this will become the new object when a new object is created.
Arrays:store multiple information seperated by comma.
Arrays are Objects (a special type of object).
Each character in a string is automatically given a number, called an index number. Index numbers always start at zero.
Simple Data Type :
Thank You Sukina AbuHammad