Skip to content

Instantly share code, notes, and snippets.

@vladanyes
Last active April 13, 2022 21:41
Show Gist options
  • Save vladanyes/550d728cd0953cfc719e31bc28312877 to your computer and use it in GitHub Desktop.
Save vladanyes/550d728cd0953cfc719e31bc28312877 to your computer and use it in GitHub Desktop.
js день дня дней
const lastDigitToWord = (digit) => {
const lastFigure = parseInt(digit.toString().substr(digit.toString().length - 1, 1));
if (digit >= 11 && digit < 15) {
return 'Дней';
}
else {
if (lastFigure == 1) return 'День';
if (lastFigure > 1 && lastFigure < 5) return 'Дня';
if (lastFigure == 0 || lastFigure >= 5) return 'Дней';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment