Skip to content

Instantly share code, notes, and snippets.

@boo1ean
Created May 12, 2014 20:01
Show Gist options
  • Save boo1ean/b188bfaefb3518dcd623 to your computer and use it in GitHub Desktop.
Save boo1ean/b188bfaefb3518dcd623 to your computer and use it in GitHub Desktop.
var titles = ['день', 'дня', 'дней'];
var right_word = function (number) {
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