"hello world".replace(/s/g, "");
.replace(/ /g,'')
const str3 = " Hellow World! " const str3Res = str3.trim() //"Hellow World!"