DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Is Integer Value
// Nota : Rafael Trindade da Silva - Mantus Deus Estrusco do Inferno
// Email : rafaeltds at gmail dot comfunction isInteger(s) {
if (s == "") return;
for (i = 0 ; i < s.length ; i++) {
if ((s.charAt(i) < '0') || (s.charAt(i) > '9')) return false
}
return true;
}






Comments
Nick Vacula replied on Tue, 2009/01/13 - 5:01am
Snippets Manager replied on Mon, 2012/05/07 - 2:13pm
Snippets Manager replied on Mon, 2012/05/07 - 2:13pm
Snippets Manager replied on Mon, 2012/05/07 - 2:13pm