Function trim

  • Removes leading and trailing whitespace or specified characters from a string.

    Parameters

    • str: string

      The string from which characters will be trimmed.

    • Optionalchars: string | string[]

      The character(s) to remove from the string. Can be a single character or an array of characters.

    Returns string

    • The resulting string after the specified characters have been removed.
    trim("  hello  "); // "hello"
    trim("--hello--", "-"); // "hello"
    trim("##hello##", ["#", "o"]); // "hell"