Skip to content

Instantly share code, notes, and snippets.

Created December 7, 2015 08:13
Show Gist options
  • Save anonymous/2430b6564a9de5605152 to your computer and use it in GitHub Desktop.
Save anonymous/2430b6564a9de5605152 to your computer and use it in GitHub Desktop.
http://www.freecodecamp.com/patrickcurl 's solution for Bonfire: Meet Bonfire
// Bonfire: Meet Bonfire
// Author: @patrickcurl
// Challenge: http://www.freecodecamp.com/challenges/bonfire-meet-bonfire#
// Learn to Code at Free Code Camp (www.freecodecamp.com)
function meetBonfire(argument) {
// Good luck!
console.log("you can read this function's argument in the developer tools", argument);
return true;
}
meetBonfire("You can do this!");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment