### Summary Add a `normalizeWhitespace()` function that removes extra spaces, tabs, and line breaks, leaving only single spaces. ### Example ```js normalizeWhitespace("Hello world \n this is Stringzy"); // Output: "Hello world this is Stringzy"
Summary
Add a
normalizeWhitespace()function that removes extra spaces, tabs, and line breaks, leaving only single spaces.Example