Skip to content

Instantly share code, notes, and snippets.

@duggiemitchell
Forked from anonymous/bonfire-falsy-bouncer.js
Created December 10, 2015 06:27
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 duggiemitchell/7b6db7acbe08c7773399 to your computer and use it in GitHub Desktop.
Save duggiemitchell/7b6db7acbe08c7773399 to your computer and use it in GitHub Desktop.
http://www.freecodecamp.com/duggiemitchell 's solution for Bonfire: Falsy Bouncer
// Bonfire: Falsy Bouncer
// Author: @duggiemitchell
// Challenge: http://www.freecodecamp.com/challenges/bonfire-falsy-bouncer
// Learn to Code at Free Code Camp (www.freecodecamp.com)
function bouncer(arr) {
var falsyArr = [];
var trueArr = arr.filter(Boolean);
return (trueArr);
}
console.log(bouncer([7, "ate", "", false, 9]));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment