Forum Moderators: open
What is the best way to see if a string contains only digits (0...9)?
"001" = true "666" = true "00a" = false "6.6" = false
Thanks, Emperor
myString.match(/^\d+$/)