Skip to Content
Menu

trimAll()

Trim all duplicate whitespace including in the middle of a string.

JavaScript January 10, 2024

Usage

JavaScript
string.trimAll()

Parameters

This function does not accept any parameters. Is this incorrect?

Examples

JavaScript
let string = "    this string    has         extra   spaces everywhere       ";
return string.trimAll();

Additional Notes

Remember that this is a method and not a function– see the example for how to use it.

Was this page helpful? Yes No


    A feedback message is required to submit this form.


    Please check that you have entered a valid email address.

    Enter your email address if you would like a response.

    Thank you for your feedback!

    Source File

    This function was not found in /assets/js/modules/extensions.js. Please report this error.

    No Hooks

    This function does not have any filters or actions available. Request one?

    Override

    To override or disable this JavaScript function, simply redeclare it with the exact same function name. Remember: Some functionality is conditionally loaded via dynamic imports, so if your function is not overriding properly, try listening for a DOM event (described below).

    JavaScript
    function trimAll(){
        //Write your own code here, leave it blank, or return false.
    }