js-polyfills
js-polyfills copied to clipboard
Polyfills for JS methods
Results
2
js-polyfills issues
Sort by
recently updated
recently updated
newest added
## Handle empty values in an array ### Expected output: ``` const arr1 = [1, 2, 3, , , 6]; arr1.forEach(el => console.log(el)); // 1 2 3 6 const arr2...
bug
help wanted
Hi Siddhi, The `findLastIndex` function has a small bug where it invokes `callback` with `undefined` as the first argument before moving on to the other items. Not always a problem,...