typescript relaceAll whitespace code example
Example 1: replacing each space in a string javascript
const name = 'Hi my name is Flavio'
name.replace(/\s/g, '') //HimynameisFlavio
Example 2: javascript replace all spaces
var str = 'a b c';
var replaced = str.split(' ').join('_');