From My database I'll get two kinds of numbers
- 1234
- a1234z1
We'll call second type of number as special type. How to detect those kind of numbers. for ex like
isSpecialNumber("a1234z1")
should return true
or false
.
How can I do that in Javascript ?