Skip to content

Instantly share code, notes, and snippets.

@leolord
Created February 18, 2016 02:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leolord/85f19fb8ea27c6358fcd to your computer and use it in GitHub Desktop.
Save leolord/85f19fb8ea27c6358fcd to your computer and use it in GitHub Desktop.
用字符打印评分
/**
著作权归作者所有。
商业转载请联系作者获得授权,非商业转载请注明出处。
作者:郑航
链接: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