Skip to content

Instantly share code, notes, and snippets.

@weblegko
Created September 30, 2015 13:14
Show Gist options
  • Select an option

  • Save weblegko/44e25a4d74c8cddbfc41 to your computer and use it in GitHub Desktop.

Select an option

Save weblegko/44e25a4d74c8cddbfc41 to your computer and use it in GitHub Desktop.
/Функция склонения слов от числа
//Функция склонения слов от числа
//Использовать примерног таким образом: var a = declOfNum(num_persons, ['активный','активных','активных']);
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] ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment