JavaScript Trim Method for Older Browsers
The trim() methods in JavaScript removes spaces and other whitespace characters from both ends of a string. It is supported in all modern browsers and you can add the trim() method to the String prototype object for supporting older browser versions.
The \s
represent whitespace characters while \uFEFF
represents the zero-width no-break space.
''.trim ||
(String.prototype.trim = function () {
return this.replace(/^[\s\uFEFF]+|[\s\uFEFF]+$/g, '');
});
Amit Agarwal
Google Developer Expert, Google Cloud Champion
Amit Agarwal is a Google Developer Expert in Google Workspace and Google Apps Script. He holds an engineering degree in Computer Science (I.I.T.) and is the first professional blogger in India.
Amit has developed several popular Google add-ons including Mail Merge for Gmail and Document Studio. Read more on Lifehacker and YourStory