Last active
August 29, 2015 14:02
-
-
Save Insayt/afee757b65debccbd328 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Если в функцию передать не число, или число меньше 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