Tell us what’s happening:
How does this code work?
How the filter method knows that the element pass is truthy and not falsy?
function bouncer(arr) {
return arr.filter(Boolean);
}
Your code so far
function bouncer(arr) {
// Don't show a false ID to this bouncer.
//Below is my code
/*
let arr1 = [];
arr.filter(function(x) {
if(!!x === true) {
arr1.push(x);
}
});
return arr1;
*/
}
bouncer([7, "ate", "", false, 9]);
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36
.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-algorithm-scripting/falsy-bouncer