Answers for "string methods to remove whitespace at the beginning and end of strings"

0

string methods to remove whitespace at the beginning and end of strings

let hello = "   Hello, World!  ";
let wsRegex = /^\s+|\s+$/g; // Change this line
let result = hello.replace(wsRegex, ""); // Change this line
Posted by: Guest on April-17-2022

Code answers related to "string methods to remove whitespace at the beginning and end of strings"

Browse Popular Code Answers by Language