Answers for "trim jquery w3schools"

1

jquery trim

$.trim("    hello, how are you?    ");
OUTPUT : "hello, how are you?"
Posted by: Guest on August-20-2021
4

trim() javascript

var str=" I have outer spaces       ";
var cleanStr=str.trim();  //return:"I have outer spaces" >> outer spaces removed
Posted by: Guest on May-04-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language