Hapus semua tanda yang bukan A-B di String JS

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