Skip to content

Instantly share code, notes, and snippets.

@claudiainbytes
Created August 23, 2017 05:15
Show Gist options
  • Select an option

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

Select an option

Save claudiainbytes/dd23bdcbdde34decca88b800cf61e79b to your computer and use it in GitHub Desktop.
// don't change this code
function emotions(myString, myFunc) {
console.log("I am " + myString + ", " + myFunc(2));
}
emotions("happy", function (num){
var x = 1;
var output = "";
while ( x <= num ){
output += "ha";
x++;
}
return output + "!";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment