11
How to Remove Trim Whitespaces in JavaScript?

How to Remove Trim Whitespaces in JavaScript?

9 months ago
raja $E6q15ilGNP

The easiest way to trim whitespace from both ends of a string is to use the trim() method.

https://www.rajamsr.com/javascript-string-trim/

let name = " John Doe ";

let trimmedName = name.trim(); // Output: "John Doe"