Loading problem…
Implement Array.prototype.myFilter — a polyfill that behaves like native Array.prototype.filter.
Filter creates a new array containing all elements for which the callback returns a truthy value.
callbackFn for each existing element (skip holes).(value, index, array).thisArg for callbackFn.TypeError if callbackFn is not a function.