Created
December 19, 2017 15:02
-
-
Save desinas/edf01e6e7425931d019cf7187e50e378 to your computer and use it in GitHub Desktop.
Cry Quiz (5-5) of Udacity FEWD
This file contains hidden or 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: Cry (5-5) | |
| */ | |
| // your code goes here |
var cry = function crying() {
return 'boohoo!;
}
console.log(cry());
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
var cry = function createCry(){
cryString = "boohoo!";
return cryString;
};
console.log(cry());