Nodejs Array Find find(element)

Here you can find the source of find(element)

Method Source Code

Array.prototype.find = function (element) {
   // w w w.ja v  a  2s.  com
   if (typeof element === 'function') {
      return element(this);
   }

   var len = this.length;
   
   for (var i = 0; i < len; i++) {
      if(this[i] === element) {
         return element;
      }
   }

   return -1;
}


// test function 
var doPow = function (array) {
   
   var len = array.length;
   
   for(var i = 0; i < len; i++) {
      array[i] *= array[i]; 
   }

   return array;
}


// test array
var b = [1, 2, 3, 4, 5, 6];

console.log(b.find(doPow));

Related

  1. find(callback)
    Array.prototype.find = function(callback) {
       for (var i = 0; i < this.length; i++) {
          if (callback(this[i])) return this[i];
       return undefined;
    
  2. find(callback)
    'use strict';
    Array.prototype.find = Array.prototype.find || function(callback) {
      if (this === null) {
        throw new TypeError('Array.prototype.find called on null or undefined');
      } else if (typeof callback !== 'function') {
        throw new TypeError('callback must be a function');
      var list = Object(this);
      var length = list.length >>> 0;
    ...
    
  3. find(cond)
    Array.prototype.find = function(cond) {
      for(var i = 0, n = this.length; i < n; ++i) {
        if(cond(this[i])) {
          return this[i];
      return null;
    };
    
  4. find(criteria)
    Array.prototype.find = function(criteria) {
      for (var i = 0; i < this.length; i++) {
        if (criteria(this[i])) {
          return this[i]
      return null
    
  5. find(criteria)
    Array.prototype.find = function(criteria) {
      for (var i = 0; i < this.length; i++) {
        if (criteria(this[i])) {
          return this[i]
      return null
    Math.sign = function(x) {
    ...
    
  6. find(element)
    Array.prototype.find = function(element) {
        var i;
        for (i = 0; i < this.length; i += 1) {
            if (this[i] === element) {
                return i;
        return false;
    
  7. find(element)
    Array.prototype.find=function(element){
        var i;
        for(i=0;i<this.length;i+=1){
            if(this[i]===element){
                return i;
        return false;
    Array.prototype.remove=function(element){
        var i;
        for(i=0;i<this.length;i+=1){
            if(this[i]===element){
                this.splice(i,1)
                return true;
        return false;
    var arr=['a','b','c','d','e','f','g','h'];
    arr.remove('e');
    arr.remove('f');
    var i;
    for(i=0;i<arr.length;i+=1){
        console.log(arr[i]);
    
  8. find(f)
    Array.prototype.find = function(f) {
      for (var i = 0; i < this.length; i++) {
        if (f(this[i]))
          return this[i];
    };
    
  9. find(filter)
    Array.prototype.find = function(filter) {
      if(typeof filter != 'function') {
        throw new Error('First argument must be a function');
      for(var i=0; i<this.length; i++) {
        var element = this[i];
        if(filter(element, i)) {
          return element;
    };