Calling a function from a function!
As was touched on earlier, a function can call another function; in fact, it is quite common to call a function from another function. Calling a function from another function is like the parts of a car working together to transport you from point A to B. When leveraged correctly, calling a function from another can drastically improve your code and allow you to simplify it. In this section, we’re going to look at how this is done with an example.