View on GitHub

reading-notes

CodeFellows Class Reading Notes

Domain Modeling

Domain modeling is the process of creating a conceptual model in code for a specific problem.

Object Oriented Programming - Step by Step

  1. The new keyword instantiates (i.e. creates) an object.
  2. The constructor function initializes properties inside that object using the this variable.
  3. The object is stored in a variable for later use.

Final Take Aways


HTML Ch. 6 - Tables

HTML tables are written row by row:

<table> element used to create table

<tr> table row: indicates the start of a row

<td> table data (or <td> for a table heading)

table cell: individual block in a grid

colspan: attribute that can be used on a <th> or <td> element to indicate how many columns it should run across

rowspan: attribute that can be used on a <th> or <td> element to indicate how many rows it should span down

<thead> <tbody> <tfoot> elements can be used between <table> and <tr> to differentiate portions of the table to help with CSS styling


JavaScript Ch. 3 - Functions, Methods, and Objects

The new keyword and the Object() constructor create a blank object that you can then add properties and methods to.

You can update the values of a property using dot notation or square brackets

The delete keyword will delete a property

Object Constructors use a function as a template for creating objects

Browser Object Model contains objects that represent the current browser window or tab

Document Object Model uses objects to create a representation of the current page

Global JavaScript Objects represent things the JS language needs to create a model of


Home