ReadingNotes

Object-Oriented Programming, HTML Tables

Domain Modeling

What is Domain modeling? Domain modeling is the procees of creating a conceptual model in code for a specific problem. A model describes the various entities, thier attributes and behaviors, as well as the constraints that govern the problem domain. A domain model thats articulated well can verify and validate the understanding of a specific problem among various stakeholders.

HTML table basics

A table in html is a structured set of data made up of rows and columns aka tabular data. A table allows you to quickly and easily look up values that indicate some kind of connection between different types of data, for example a person and their age, or a day of the week, or the timetable for a local swimming pool. The point of a table is that it is rigid. Information is easily interpreted by making visual associations between row and column headers. Tables if implemented right can enhance the experience of sighted and visually impaired users alike. NOW there is a time when you shouldnt use tables. You should never use tables for layout rather then CSS layout techniques. Here some reasons why you shouldnt use tables as a layout: Layout tables reduce accessibility for visually impaired user,Tables produce tag soup, and Tables are not automatically responsive.

Object basics

An object is a collection of related data and/or functionality. These usually consist of several variables and functions (which are called properties and methods when they are inside objects. An object like this is referred to as an object literal — we’ve literally written out the object contents as we’ve come to create it.

Things I want to know more about

Learn more about constructors and prototypes. Im still struggling on how to enter info into the table.