Remove Whitespace from End of String JavaScript

Remove Whitespace from End of String JavaScript

Remove whitespace from end of string javascript; In this tutorial, you’ll learn how to remove whitespace from end of string javascript using String trimEnd() method.

Sometimes, you work with javascript strings and you want to remove whitespaces from the end of the string, hence this tutorial is helpful for you.

JavaScript String.trimEnd()

The javascript string trimEnd() method is used to remove the whitespace characters from the end of a string.

Note that, The trimRight() method is an alias of the trimEnd() method.

If you want to remove whitespace characters from the start of string, you can use js trimStart() method.

Syntax of javascript string trimEnd() method is following:

let str1 = str.trimEnd();

Here,

  • The trimEnd() method doesn’t change the given string.

Example: javascript trimEnd() method

The following example demonstrates, how to remove whitespace characters from the beginning of a given string using trimEnd(), see the following example:

let str = '   JavaScript programming  ';
let result = str.trimEnd();

console.log({ result });

Output:

{result: "   JavaScript programming"}

Conclusion

In this tutorial, you have learned how to remove whitespace characters from the end of string using the js trimEnd() method.

Recommended JavaScript Tutorials

AuthorAdmin

My name is Devendra Dode. I am a full-stack developer, entrepreneur, and owner of Tutsmake.com. I like writing tutorials and tips that can help other developers. I share tutorials of PHP, Python, Javascript, JQuery, Laravel, Livewire, Codeigniter, Node JS, Express JS, Vue JS, Angular JS, React Js, MySQL, MongoDB, REST APIs, Windows, Xampp, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL and Bootstrap from a starting stage. As well as demo example.

Leave a Reply

Your email address will not be published. Required fields are marked *