my_str = "\n\n Hello World \n\n\n"; my_str = my_str.replace(/^\s+|\s+$/g, ''); console.log(my_str);
In the code snippet, we have a string my_str which contains line breaks on its start and end positions and we are removing them from the string.
0 Comments