Skip to content

Instantly share code, notes, and snippets.

@Insayt
Last active August 29, 2015 14:02
Show Gist options
  • Save Insayt/afee757b65debccbd328 to your computer and use it in GitHub Desktop.
Save Insayt/afee757b65debccbd328 to your computer and use it in GitHub Desktop.
/*
* Если в функцию передать не число, или число меньше 0 - вернет false
* UPD 15.06.2014 18:09 Еще более джедайский вариант
*/
function checkNumber(n){
return+~~n>0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment