Удалить все знаки, которые не являются A-B в String JS

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