Skip to content

Instantly share code, notes, and snippets.

@desinas
Created December 19, 2017 15:02
Show Gist options
  • Save desinas/edf01e6e7425931d019cf7187e50e378 to your computer and use it in GitHub Desktop.
Save desinas/edf01e6e7425931d019cf7187e50e378 to your computer and use it in GitHub Desktop.
Cry Quiz (5-5) of Udacity FEWD
/*
* Programming Quiz: Cry (5-5)
*/
// your code goes here
@amaechi-chuks
Copy link

var cry = function createCry(){
cryString = "boohoo!";
return cryString;
};
console.log(cry());

@LukeAims
Copy link

LukeAims commented Apr 3, 2019

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