Answers for "trim string from all spaces js"

6

javascript remove all spaces from string

str = str.replace(/\s/g, '');
Posted by: Guest on July-22-2020
1

trim nodejs sentence from spaces

newString = string.replace(/\s+/g,''); // "thiscontainsspaces"
Posted by: Guest on June-10-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language