Last active
December 21, 2015 10:39
-
-
Save anton-rudeshko/6293796 to your computer and use it in GitHub Desktop.
Простой преобразователь цифрового рейтинга в дробно-звёздочный.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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