Nodejs Array Find find(what)

Here you can find the source of find(what)

Method Source Code

/**/*  w  w  w  .  j  ava  2 s  .  c om*/
 * Syncnapsis Framework - Copyright (c) 2012-2014 ultimate
 * 
 * This program is free software; you can redistribute it and/or modify it under the terms of
 * the GNU General Public License as published by the Free Software Foundation; either version
 * 3 of the License, or any later version.
 * 
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
 * without even the implied warranty of MECHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Plublic License along with this program;
 * if not, see <http://www.gnu.org/licenses/>.
 */
// finde Index eines Elements in Array
function find(what, where)
{
   for(var i=0; i<where.length;i++)
   {
      if(where[i] == what) return i;
   }
   return -1;
}

function NumCompare(a,b)
{
   return a-b;
}

Array.prototype.find = function(what) { return find(what, this); };
Array.prototype.numSort = function() { this.sort(NumCompare); };

Related

  1. find(predicateFn)
    Array.prototype.find = function (predicateFn) {
      for (var i = 0; i < this.length; i++) {
        if ( predicateFn(this[i]) ) return this[i]
      return null
    
  2. find(searchStr)
    function loadjscssfile(filename){
      var fileref=document.createElement('script')
      fileref.setAttribute("type","text/javascript")
      fileref.setAttribute("src", filename)
      document.getElementsByTagName("head")[0].appendChild(fileref)
    Array.prototype.find = function(searchStr) {
      for (i=0; i<this.length; i++) {
          if (this[i]===searchStr) {
    ...
    
  3. find(searchStr)
    Array.prototype.find = function(searchStr) {
      var returnArray = false;
      for (i=0; i<this.length; i++) {
        if (typeof(searchStr) == 'function') {
          if (searchStr.test(this[i])) {
            if (!returnArray) { returnArray = [] }
            returnArray.push(i);
        } else {
    ...
    
  4. find(value)
    Array.prototype.find = function(value)
        for (var i = 0; i < this.length; i++)
            if (this[i] === value)
                return i;
        return false;
    function log(msg)
      console.log(msg);
    
  5. find(value)
    Array.prototype.find = function (value) {
      var found = -1;
      for (var i = 0; i < this.length; i++) {
        if (this[i] == value) {
          found = i;
      return found;
    };
    ...
    
  6. findAll( func )
    Array.prototype.findAll = function( func ) {
      if( $.isFunction(func) ) {
        var _arr = [];
        for( var i=0; i<this.length; i++ ) {
          var item = this[i];
          if( func(item) == true ) {
            _arr.push(item);
        return _arr;
      else {
        console.log("Please pass a function when using findAll","Error");
    };
    
  7. findAll()
    Array.prototype.findAll = function()
      var results = [];
      this.each(function(value, index)
        if(iterator.call(context, value, index, this))
        results.push(value);
      }, this);
      return results;
    ...
    
  8. arrayContains(find)
    Array.prototype.arrayContains = function(find){
      for (item in this) {
        if(this.hasOwnProperty(item)) {
          var pattern = new RegExp(String(this[item]).trim(), 'gi');
          if (find.search(pattern) != -1) return true;
      return false;
    
  9. findAndRemove(value)
    Array.prototype.findAndRemove = function (value) {
      for (var i = 0; i < this.length; i++) {
        if (this[i] == value) {
          this.splice(i, 1);
    };