const polyfillter = (arr,condition) => arr.map( (e,i) => condition ? i : -1).filter(e=>e>=0) //pass an array, and your filter condition and watch the magic