Sometimes we need to trim a string of whitespace from the front and end, or even remove all whitespace within the string. How can we do this elegantly? Add the following string prototype function to your code. You will be able to call it just like predefined String member functions such as `substring()`, `charAt()`, and `indexOf()`. The code below demonstrates the function declaration and how to use it.