Created
December 10, 2015 06:18
-
-
Save anonymous/34073976a4d38fe197b4 to your computer and use it in GitHub Desktop.
http://www.freecodecamp.com/duggiemitchell 's solution for Bonfire: Falsy Bouncer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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
After spending an hour on this I find that
Booleanconstructor is also a function that returns eithertruefor 'thruthy' andfalsefor 'falsy' argument. I just saved about 5 lines of code thanks @elado for your blog post simplifying what seemed at first more difficult.