If/else statements - We all know and love them. While they are incredibly powerful, there comes a point where a long chain of conditions only makes your code look messy. Choosing between if/else and switch depends on readability, but there's a hidden pro tip that makes switch much more powerful...
Source: [Dev.to](https://dev.to/joelezema/knowing-when-to-use-ifelse-vs-switch-in-javascript-3777)