Skip to content

Instantly share code, notes, and snippets.

@xorcat
Last active November 19, 2015 10:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xorcat/bac931b5468dc5f36044 to your computer and use it in GitHub Desktop.
Save xorcat/bac931b5468dc5f36044 to your computer and use it in GitHub Desktop.
freeCodeCamp - Bonfire - Meet Bonfire
// Bonfire: Meet Bonfire
// Author: @sycrat
// Challenge: http://www.freecodecamp.com/challenges/bonfire-meet-bonfire?solution=function%20meetBonfire(argument)%20%7B%0A%20%20%2F%2F%20Good%20luck!%0A%20%20console.log(%22you%20can%20read%20this%20function%27s%20argument%20in%20the%20developer%20tools%22%2C%20argument)%3B%0A%0A%20%20return%20true%3B%0A%7D%0A%0A%0A%0AmeetBonfire(%22You%20can%20do%20this!%22)%3B%0A
// 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