I Tried and Loved: 7 Javascript tricks
These are my notes for this video Removing Falsy Values from an Array: Use the filter method with a callback function that returns Boolean(name) to remove falsy values. const filteredName = myName.filter(name => Boolean(name)); Checking fo...
Jul 3, 20232 min read15
