js remove all numbers from string code example
Example 1: remove all numbers from string javascript
const string = "hello world 123";
// remove all digits from the string
const newString = string.replace(/\d/g, "") // "hello world "
Example 2: js remove all non numeric from string
numString = myString.replace(/\D/g,'');