Normalize repeated whitespace down to single spaces.
Section: JavaScript Recipes
Collapse internal whitespace
javascript
javascript
text.trim().replace(/\s+/g, " ")Explanation
Very common cleanup recipe.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing JavaScript Recipes