Skip to content

Instantly share code, notes, and snippets.

@alejandrorangel
Created January 25, 2017 23:37
Show Gist options
  • Save alejandrorangel/931dcba5e9ba531a55c8d7bcb01770a6 to your computer and use it in GitHub Desktop.
Save alejandrorangel/931dcba5e9ba531a55c8d7bcb01770a6 to your computer and use it in GitHub Desktop.
function padmeHearts(num){
let char = ""
for(let i=0; i < num; i++){
char += "♥";
console.log(char)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment