Here you can find the source of filter(f)
Array.prototype.filter = function(f) { var filtered = []; for(var i = 0; i < this.length; i++) f(this[i], i) && filtered.push(this[i]); return filtered; };
Array.prototype.filter = function (callbackfn, thisArg) { var xs = []; for (var i=0; i<this.length; i++) if (Kernel.Reflect.apply(callbackfn, thisArg, [this[i], i, this])) xs[xs.length] = this[i]; return xs;
Array.prototype.filter = function(cb){ var arr = Object(this); var res = []; for(var i=0;i<arr.length;i++){ if(cb(arr[i])){ res.push(arr[i]); return res; ...
var arr = ['hello', 42, true, function() {}, "123", 3.14, 0, [1], {}]; var isInteger = function(x) { return (typeof x === 'number' && isFinite(x) && Math.floor(x) === x); Array.prototype.filter = function(f) { var newArr = []; for (var i = 0; i < this.length; i++) { if (f(this[i])) newArr.push(this[i]); return newArr; }; var newArr = arr.filter(isInteger); console.log(newArr);
var arr = ['hello', 42, true, function() {}, "123", 3.14, 0, [1], {}]; var isInteger = function(x) { return typeof x === 'number' && !isNaN(x) && x % 1 === 0; }; Array.prototype.filter = function(f) { var newArr = []; for (var i = 0; i < this.length; i++) { if ( f(this[i]) ) { newArr.push(this[i]); ...
Array.prototype.filter = Array.prototype.filter || function (f) { var result = []; this.each(function (element) { if (f(element, result.length)) { result.push(element); }); return result; }; ...
Array.prototype.filter = function(f) { var filter = []; for (var i = 0; i < this.length; i++) { if (f(this[i])) filter.push(this[i]); return filter; };
Array.prototype.filter = function(filterFunc) { var ret = []; for(var i = 0; i < this.length; i++) { if(filterFunc(this[i])) { ret.push(this[i]); return ret; }; ...
Array.prototype.filter = function(fn){ var self = this; var arr = []; for(var i=0; i<self.length; i++){ if (fn(self[i])){ arr.push(self[i]); return arr; ...
Array.prototype.filter = function(fn) r = []; this.forEach(function (item) { if (fn(item)) r.push(item); }); return r;