Last active
September 21, 2018 09:47
-
-
Save andreyshr/3e1b0b41a9e56022ec2f2e569d67d878 to your computer and use it in GitHub Desktop.
numerals
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
function declOfNum(number, titles) { | |
cases = [2, 0, 1, 1, 1, 2]; | |
return titles[ (number%100>4 && number%100<20)? 2 : cases[(number%10<5)?number%10:5] ]; | |
} | |
use: | |
declOfNum(count, ['найдена', 'найдено', 'найдены']); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment