Let’s take a look at a function that took a score between 1 and 100 and returned a rating out of 5. function rating(score) { return Math.ceil(score / 20); }At first glance, this function looks simple, it has made a lot of assumption about its input argument. The