Not sure where to start?
Bootcamp
Study group
Collaborate with peers in your dedicated #study-group channel.
Code reviews
Submit projects for review using the /review command in your #code-reviews channel
/review
Karma
scrimba
// https://javascript.info/closure// Filter through function/* .. your code for inBetween and inArray */let arr = [1, 2, 3, 4, 5, 6, 7];console.log( arr.filter(inBetween(3, 6)) ); // 3,4,5,6console.log( arr.filter(inArray([1, 2, 10])) ); // 1,2