Skip to main content Accessibility Feedback

Strings

String.trim()

Remove leading and trailing whitespace from a string.

let str = '   I love Cape Cod potato chips.   ';

// Returns "I love Cape Cod potato chips."
str.trim();