Created
February 18, 2016 02:26
-
-
Save leolord/85f19fb8ea27c6358fcd to your computer and use it in GitHub Desktop.
用字符打印评分
This file contains 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
/** | |
著作权归作者所有。 | |
商业转载请联系作者获得授权,非商业转载请注明出处。 | |
作者:郑航 | |
链接:https://www.zhihu.com/question/37904806/answer/74109099 | |
来源:知乎 | |
**/ | |
function getRating(rating) { | |
if(rating > 5 || rating < 0) throw new Error('数字不在范围内'); | |
return '★★★★★☆☆☆☆☆'.substring(5 - rating, 10 - rating ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment