Skip to content

Instantly share code, notes, and snippets.

@maximgatilin
Forked from realmyst/gist:1262561
Created January 22, 2017 08:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maximgatilin/8bdee110cb208fec5c5159f23044b646 to your computer and use it in GitHub Desktop.
Save maximgatilin/8bdee110cb208fec5c5159f23044b646 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] ];
}
use:
declOfNum(count, ['найдена', 'найдено', 'найдены']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment