Skip to content

Instantly share code, notes, and snippets.

@Elli-P
Created November 14, 2017 21:47
Show Gist options
  • Save Elli-P/d07064bee1c10fd01c4b8740aa9933ae to your computer and use it in GitHub Desktop.
Save Elli-P/d07064bee1c10fd01c4b8740aa9933ae to your computer and use it in GitHub Desktop.
function laugh(num){
var repeatedString = "";
var string = "ha";
while (num > 0){
repeatedString += string;
num--;
}
return repeatedString;
}
console.log(laugh(3) + "!");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment