Nodejs Array Find find(f)

Here you can find the source of find(f)

Method Source Code

Array.prototype.find = function(f) {
   for (var i = 0; i < this.length; i++) {
      if (f(this[i]))
         return this[i];
   }//  w  w  w  .  ja  v a  2 s  . c om
};

Related

  1. find(criteria)
    Array.prototype.find = function(criteria) {
      for (var i = 0; i < this.length; i++) {
        if (criteria(this[i])) {
          return this[i]
      return null
    
  2. 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) {
    ...
    
  3. find(element)
    Array.prototype.find = function (element) {
      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;
    var doPow = function (array) {
      var len = array.length;
      for(var i = 0; i < len; i++) {
        array[i] *= array[i]; 
      return array;
    var b = [1, 2, 3, 4, 5, 6];
    console.log(b.find(doPow));
    
  4. 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;
    
  5. 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]);
    
  6. 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;
    };
    
  7. find(fn)
    Array.prototype.find = function(fn) {
        for (var i = 0; i < this.length; i++) {
            if (fn(this[i])) {
                return this[i];
    
  8. find(fn, v)
    Array.prototype.find = function(fn, v) {
        var isFN = typeof(fn) === 'function';
        var isV = v !== undefined;
        for (var i = 0, len = this.length; i < len; i++) {
            if (isFN) {
                if (fn(this[i], i)) {
                    return this[i];
                continue;
    ...
    
  9. find(id)
    Array.prototype.find = function(id) {
      return this.filter(function(a) {
        if ( a.id == id ) {
          return a;
      }).first();