Skip to content

Instantly share code, notes, and snippets.

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 Sonia-Shurmi/34b5148d3cf8f88a85ff259b9c5b469c to your computer and use it in GitHub Desktop.
Save Sonia-Shurmi/34b5148d3cf8f88a85ff259b9c5b469c to your computer and use it in GitHub Desktop.
Programming Quiz: Laugh it Off 2 (5-2)
/*
* Programming Quiz: Laugh it Off 2 (5-2)
*/
function laugh(num) {
var ha = '';
for (i = 0; i < num; i++) {
ha = ha + 'ha';
}
return ha + '!';
}
console.log(laugh(3));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment