Answers for "remove white space from begining and end of string"

0

remove white space from begining and end of string

var hello = '     Hello there!    ';

// returns "Hello there!"
hello.trim();
Posted by: Guest on April-07-2022

Code answers related to "remove white space from begining and end of string"

Browse Popular Code Answers by Language