JS remove todos os não numéricos da string
numString = myString.replace(/\D/g,'');
Jeff Le
numString = myString.replace(/\D/g,'');
const string = "hello world 123";
// remove all digits from the string
const newString = string.replace(/\d/g, "") // "hello world "