Data Modeling
- Name 3 advantages to Test Driven Development Standardized testing. Results first. Easier to work with and maintain.
- In what case would you need to use beforeEach() or afterEach() in a test suite?
beforeEach() will run before every test, while beforeEach() will run after every test.
- What is one downside of Test Driven Development
Can’t find bugs that you put in your testing code, so it’s only as good as you.
- What’s the primary difference between ES6 Classes and Constructor/Prototype Classes?
How much easier it is to maintain.
- Why REST? Generally easy to work with, pretty good support, and usually fast and doesn’t use a whole lot of bandwidth.