JavaScript String trim() Method
You are Here:
JavaScript String trim() Method
The trim()
method removes whitespace from both sides of a string.
Note: This method does not alter the original string.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<p>Check your console (Press F12)</p>
<script>
var str = " Hello there ";
console.log(str);
// Trim unnecessary spaces
var result = str.trim();
console.log(result);
</script>
</body>
</html>
Syntax
str.trim()
Return Value
Value | Explanation |
---|---|
String | Returns a new string representing the calling string stripped of whitespace from both ends. |
Reminder
Hi Developers, we almost covered 97% of JavaScript Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in JavaScript.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.