Skip to content

Instantly share code, notes, and snippets.

@noyobo
Created July 7, 2015 02:01
Show Gist options
  • Save noyobo/af60b62f29f59a0e252d to your computer and use it in GitHub Desktop.
Save noyobo/af60b62f29f59a0e252d to your computer and use it in GitHub Desktop.
get star length
var stars = '✮✮✮✮✮✩✩✩✩✩';
var score = function(len) {
return stars.substring(5 - len, 10 - len)
}
console.log(score(1));
console.log(score(2));
console.log(score(3));
console.log(score(4));
console.log(score(5));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment