reading-notes

My reading notes


Project maintained by brandomoki Hosted on GitHub Pages — Theme by mattgraham

Read: Class 07

Domain Modeling

  1. Explain why we need domain modeling

    • We need it to validate the process and our understanding of the problem.

HTML Table Basics

  1. Why should tables not be used for page layouts?

    • Reduces visibility for visually impaired, tables are not automatically responsive.
  2. List and describe 3 different semantic HTML elements used in an HTML <table>

    • <th> this is your header tag
    • <tr> this is your row tag
    • <td> this is your cell tag

Introducing Constructors

  1. What is a constructor and what are some advantages to using it?

    • its a function that can create object litterals for you under a set of parameters
  2. How does the term this differ when used in an object literal versus when used in a constructor?

    • this is reffered as an object literal, it is the contents of its class

Object Prototypes Using A Constructor

  1. Explain prototypes and inheritance via an analogy from your previous work experience.

    • at my last job a protoype would be like my dispatch they would create the w/o ondemand and I would inherit that work. lol