Skip to content

Instantly share code, notes, and snippets.

@MagnusThor
Created January 25, 2016 08:33
Show Gist options
  • Save MagnusThor/d7656fd8720e0b0d25cb to your computer and use it in GitHub Desktop.
Save MagnusThor/d7656fd8720e0b0d25cb to your computer and use it in GitHub Desktop.
Array.find....
if (!Array.prototype.find) {
Array.prototype.find = function (predicate) {
if (this === null) {
throw new TypeError('Array.prototype.find called on null or undefined');
}
if (typeof predicate !== 'function') {
throw new TypeError('predicate must be a function');
}
var list = Object(this);
var length = list.length >>> 0;
var thisArg = arguments[1];
var value;
for (var i = 0; i < length; i++) {
value = list[i];
if (predicate.call(thisArg, value, i, list)) {
return value;
}
}
return undefined;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment