How to trim String in JavaScript? [SOLVED]


Written by - Olorunfemi Akinlua
Reviewed by - Deepak Prasad

Introduction to JavaScript trim()

In JavaScript, the trim method is a built-in method of the String prototype that is used to remove whitespace from the beginning and end of a string. This method takes no arguments and returns a new string with the whitespace removed.

In this article, we will discuss how to use the trim method.

 

Using the trim() method

Here is an example of how to use the trim method to remove whitespace from a string:

let myString = "   Welcome to the world of JavaScript   ";
let trimmedString = myString.trim();
console.log(trimmedString);

Output

Welcome to the world of JavaScript

In this example, the trim method is used to remove the whitespace from the beginning and end of the string Welcome to the world of JavaScript. The trim method is called on the string, and it returns a new string with the whitespace removed. The result is then logged to the console.

The trim method is commonly used to clean up user input before it is processed or stored. For example, you might use the trim method to remove leading and trailing whitespace from a user's name or address before saving it to a database. The trim method can also be used to remove whitespace from the beginning and end of strings that you read from a file or other source.

 

Summary

The trim method is a built-in method of the String prototype in JavaScript that is used to remove whitespace from the beginning and end of a string. This method is commonly used to clean up user input and to remove whitespace from strings that are read from a file or other source. The trim method can also be used to remove whitespace from the middle of a string, although it is not designed specifically for that purpose.

 

References

String.prototype.trim() - JavaScript | MDN (mozilla.org)
Trim string in JavaScript - Stack Overflow

 

Views: 0

Olorunfemi Akinlua

He is boasting over five years of experience in JavaScript, specializing in technical content writing and UX design. With a keen focus on programming languages, he crafts compelling content and designs user-friendly interfaces to enhance digital experiences across various domains. You can connect with him on LinkedIn.

Can't find what you're searching for? Let us assist you.

Enter your query below, and we'll provide instant results tailored to your needs.

If my articles on GoLinuxCloud has helped you, kindly consider buying me a coffee as a token of appreciation.

Buy GoLinuxCloud a Coffee

For any other feedbacks or questions you can send mail to admin@golinuxcloud.com

Thank You for your support!!

Leave a Comment