remove all sign that is not a-b in string js

JavaScript
const str = "abc's test#s";
console.log(str.replace(/[^a-zA-Z ]/g, " "));
Source

Also in JavaScript: