One small change to your stand-ups that will improve your team’s performance
Scrum doesn’t talk about stand-ups, but about Daily Scrums. I’ve used the term “stand-up” here instead of “daily scrum”, as this is a more loosely used term among teams. For this post I use the two names interchangeably.
Clean up your code by removing ‘if-else’ statements
When we write JS code, we often encounter the situation of complex logic judgment. Generally, you can use if/else or switch to implement multiple conditional judgment, but there will be a problem: With the increase of logic complexity, if/else and switch in the code will become more and more bloated. This article will take you to try to write more elegant judgment logic.