blog 8\

Alfredo Aguado
1 min readJul 26, 2021
  1. Callback Hell is also known as Pyramid of Doom, it is an anti-pattern seen in code of asynchronous programming. Write comments, Split functions into smaller functions, Using Promises and Using Async/await.
  2. functions or programs that affect the behavior of components or modules. Stubs are dummy objects for testing\
  3. The stream module provides an API for implementing the stream interface. They are data-handling method and are used to read or write input into output sequentially.
  4. it is a programming strategy that simplifies and embellishes your code.
  5. there are built-in methods to be used for printing informational, warning, and error messages.
  6. process.exit (1)
  7. Clustered indexes only sort tables. Therefore, they do not consume extra storage. Non-clustered indexes are stored in a separate place from the actual table claiming more storage space.
  8. functions with no arguments and no return value. function with no argument and return value . functions with argument and no return value. Function with arguments and a return value.

--

--