find Returns the first element that satisfies the testing function otherwise returns undefined. Array.prototype._find = function(cbFunction) { for(let i = 0; i < this.length; i++) { if(cbFunction(this[i], i, this)) { return th...