Skip to content

Instantly share code, notes, and snippets.

@daniel12fsp
Created November 17, 2018 13:11
Show Gist options
  • Save daniel12fsp/77c0ee9404258930f0baea872e3ad314 to your computer and use it in GitHub Desktop.
Save daniel12fsp/77c0ee9404258930f0baea872e3ad314 to your computer and use it in GitHub Desktop.
Get from string only numbers
function getOnlyNumbers(str){
return Array.from(str).filter(Number)
}
console.log(getOnlyNumber("a1b2c")); //  ["1", "2"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment