Skip to content

Instantly share code, notes, and snippets.

@anton-rudeshko
Last active December 21, 2015 10:39
Show Gist options
  • Save anton-rudeshko/6293796 to your computer and use it in GitHub Desktop.
Save anton-rudeshko/6293796 to your computer and use it in GitHub Desktop.
Простой преобразователь цифрового рейтинга в дробно-звёздочный.
function modelRating(rating, maxStars) {
return Array.apply(0, new Array(maxStars || 5)).map(function(ignore, index) {
var step = rating - index;
return step >= 1 ? 'full' : step >= 0.5 ? 'half' : 'empty';
});
}
modelRating(3) // ["full", "full", "full", "empty", "empty"]
modelRating(4.5) // ["full", "full", "full", "full", "half"]
modelRating(0) // ["empty", "empty", "empty", "empty", "empty"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment