Skip to content

Instantly share code, notes, and snippets.

@temazinkin
Created April 2, 2017 16:39
Show Gist options
  • Save temazinkin/16841e8cd3a36efcce2ba7e5bb44850e to your computer and use it in GitHub Desktop.
Save temazinkin/16841e8cd3a36efcce2ba7e5bb44850e to your computer and use it in GitHub Desktop.
Числительные. Склонение слов на javascript
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] ];
}
declOfNum(count, ['найдена', 'найдено', 'найдены']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment