JavaScript String trim()

📔 : Java Script 🔗

String trim() method की String के दोनों side से whitespace remove करता है। लेकिन यह original String को change नहीं करता है।

JavaScript String trim Syntax

string.trim();
Parameters
  1. string | required : यह String variable है जिसमे से whitespace remove करना है।

  2. Return Value : यह original String को whitespace remove करके return करता है।

JavaScript String trim Example

File : js_string_trim.html

CopyFullscreenClose FullscreenRun
<!DOCTYPE html>
<html>
  <body>
    <script>
      let str = "           Hello World !.       ";
      document.write("Original Length : " + str.length);
      /*now remove whitespace*/
      let new_str = str.trim();
      document.write("<br> After removing whitespace : " + new_str.length);
    </script>
  </body>
</html>
Output
Original Length : 32
After removing whitespace : 14

Related Topics :

Rahul Kumar

Rahul Kumar

Hi ! My name is Rahul Kumar Rajput. I'm a back end web developer and founder of learnhindituts.com. I live in Uttar Pradesh (UP), India and I love to talk about programming as well as writing technical tutorials and tips that can help to others.

Get connected with me. :) LinkedIn Twitter Instagram Facebook