Skip to content

Instantly share code, notes, and snippets.

@realmyst
Created October 4, 2011 19:34
Show Gist options
  • Select an option

  • Save realmyst/1262561 to your computer and use it in GitHub Desktop.

Select an option

Save realmyst/1262561 to your computer and use it in GitHub Desktop.

Revisions

  1. realmyst created this gist Oct 4, 2011.
    7 changes: 7 additions & 0 deletions gistfile1.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    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, ['найдена', 'найдено', 'найдены']);