Remove leading and trailing whitespace from a string Remove leading and trailing whitespace from a string. var str = ' I love Cape Cod potato chips. '; // Returns "I love Cape Cod potato chips." str.trim(); Source https://vanillajstoolkit.com/reference/strings/string-trim/