Link Search Menu Expand Document

Remove Whitespace from Start and End

Summary

Final Code

let hello = "   Hello, World!  ";
let wsRegex = /^\s+|\s+$/g; // Change this line
let result = hello.replace(wsRegex, ""); // Change this line