spikes

Asynchronous JavaScript

How does JS handle asynchronous code?

Questions to consider

  1. What's the difference between "synchronous" and "asynchronous" code? Why might synchronous code be called "blocking"?

  2. What are the event loop and the call stack?

  3. How do callbacks and promises help us?

Testing methodologies

How do different testing methodologies try to improve the way we write tests?

Questions to consider

  1. What is Test-Driven Development (TDD)? Can it help us write better code?

  2. What is Behavior-Driven Development (BDD)? How do we translate user requirements into automated tests?

  3. What is test coverage? Can this tell us about the quality of our tests?

Last updated