Skip to content

Instantly share code, notes, and snippets.

@druman
Created June 8, 2017 07:56
Show Gist options
  • Save druman/3ae24deb4d3060b25629a9bc78495d30 to your computer and use it in GitHub Desktop.
Save druman/3ae24deb4d3060b25629a9bc78495d30 to your computer and use it in GitHub Desktop.
Склонение на js
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