Last active
December 20, 2017 08:01
-
-
Save desinas/4d415e0254cb01cb8eed03603d54144d to your computer and use it in GitHub Desktop.
Inline Quiz (5-6) of Udacity FEWD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Programming Quiz: Inline Functions (5-6) | |
*/ | |
// don't change this code | |
function emotions(myString, myFunc) { | |
console.log("I am " + myString + ", " + laugh(2)); | |
} | |
// your code goes here | |
// call the emotions function here and pass in an | |
// inline function expression | |
emotions("happy", function(times) { | |
var haTimes= ""; | |
while (times > 0) { | |
haTimes +="ha"; | |
times --; | |
} | |
haTimes= haTimes +"!"; | |
return haTimes; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Revision 3 What Went Well
Feedback: Your answer passed all our tests! Awesome job!