reading-notes

code fellows reading notes

View on GitHub

Reading-Notes

code fellows 401

Read: 04 - Data Modeling

Advantages of test driven development:

  1. Better code quality
  2. Keep track of your end goal
  3. More modular

In what case would you need to use beforeEach() or afterEach() in a test suite?

You use one before and the other after the test.

What is one downside of Test Driven Development?

You have to write the tests out before you start codeing.

What’s the primary difference between ES6 Classes and Constructor/Prototype Classes?

Why REST?

Easier than SOAP.

Vocab:

functional programming: A programming paradigm where programs are constructed by applying and composing functions.

object-oriented programming (OOP): A programming model that organizes software design around data, or objects.

class: how you creaate an object template.

super: how to call functions of a parent

this: refers to the object it is in

Jest: a testing framwork

Continuous Integration (CI): A development practice where developers regularly merge their code changes into a central repository.

REST:

Data Model: A visual representation of either a whole information system or parts of it to communicate connections between data points and structures.