Skip to content

Instantly share code, notes, and snippets.

@claudiainbytes
Created August 23, 2017 01:16
Show Gist options
  • Select an option

  • Save claudiainbytes/a4f8361225787d85daf4d948347255b9 to your computer and use it in GitHub Desktop.

Select an option

Save claudiainbytes/a4f8361225787d85daf4d948347255b9 to your computer and use it in GitHub Desktop.
/*
* Programming Quiz: Laugh it Off 2 (5-2)
*/
// declare your function
// then, call it!
// print the output with console.log
function laugh(num){
var x = 1;
var output = "";
while ( x <= num ){
output += "ha";
x++;
}
return output + "!";
}
console.log(laugh(3));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment