Skip to content

Instantly share code, notes, and snippets.

@iptpv
Last active January 26, 2016 13:16
Show Gist options
  • Save iptpv/19ccef6274d61ee70e1b to your computer and use it in GitHub Desktop.
Save iptpv/19ccef6274d61ee70e1b to your computer and use it in GitHub Desktop.
var forms = ['вася', 'васи', 'васей'];
if (/1[1-4]$/.test(number)) {
return forms[2];
}
if (/[2-4]$/.test(number)) {
return forms[1];
}
if (/1$/.test(number)) {
return forms[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment