Skip to content

Instantly share code, notes, and snippets.

@jiyoon-koo
Forked from anonymous/bonfire-meet-bonfire#.js
Last active December 6, 2015 22:39
Show Gist options
  • Save jiyoon-koo/03f27ee69adfc670fee2 to your computer and use it in GitHub Desktop.
Save jiyoon-koo/03f27ee69adfc670fee2 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)
/*Bonfire text:
Your goal is to fix the failing test.
First, run all the tests by clicking "Run tests" or by pressing Control + Enter.
The failing test is in red. Fix the code so that all tests pass. Then you can move on to the next Bonfire.
Make this function return true no matter what.*/
function meetBonfire(argument) {
// Good luck!
console.log("you can read this function's argument in the developer tools", argument);
/* All I did here is to change the return value to true. */
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