Prev Demo
Trimright() Method In Javascript
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <h1>Removing right side white space.</h1> <p>Click the below button to remove the right side white space.</p> <input type="button" value="Trim" onclick="Function()" /> <script> function Function() { var A = " TechFunda "; alert(A.trimRight()); } </script> </body> </html>
Note: We DO NOT save your trial code in our database.
Output