Skip to content

Instantly share code, notes, and snippets.

Created December 6, 2015 22:34
Show Gist options
  • Save anonymous/08bebda5b162a8681585 to your computer and use it in GitHub Desktop.
Save anonymous/08bebda5b162a8681585 to your computer and use it in GitHub Desktop.
http://www.freecodecamp.com/thetinybeaker 's solution for Bonfire: Meet Bonfire
// Bonfire: Meet Bonfire
// Author: @thetinybeaker
// 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