Answer: JavaScript has both strict and type–converting comparisons:
- Strict comparison (e.g., ===) checks for value equality without allowing coercion
- Abstract comparison (e.g. ==) checks for value equality with coercion allowed
Answer: All APIs of Node.js library are aynchronous that is non-blocking. It essentially means a Node.js based server never waits for a API to return data. Server moves to next API after calling it and a notification mechanism of Events of Node.js helps server to get response from the previous API call.
Source: tutorialspoint.com
| # Links & Documentation | |
| - Final Repo - https://github.com/bradtraversy/devcamper-api | |
| - Final Deployed Project - https://devcamper.io | |
| - Specs Sheet - https://gist.github.com/bradtraversy/01adb248df70fb29e98c30cf659042cf | |
| ## Tools | |
| - Node.js - https://nodejs.org/en/ | |
| - VSCode - https://code.visualstudio.com/ |