Nodejs Array First Predicate first(n)

Here you can find the source of first(n)

Method Source Code

/*/*from ww w  . j  a  va 2 s.c o  m*/
    Return first n set of elements in an array
*/

Array.prototype.first = function (n) {
    'use strict';
    return this.slice(0, n || 1);
};

Related

  1. first(fn)
    Array.prototype.first = function(fn) {
        if (Object.prototype.toString.call(this) !== '[object Array]') {
            throw new TypeError("`this` must be Array, not " + typeof this);
        if (typeof fn === 'undefined') {
            return this[0];
        if (typeof fn !== 'function') {
            throw new TypeError("Optional `argument[0]` must be predicate function if defined");
    ...
    
  2. first(func)
    Array.prototype.first = function(func) {
      return this.where(func)[0];
    };
    
  3. first(func)
    Array.prototype.first = function(func) {
        var result = [];
        for(var i=0;i<this.length;i++) 
            if (func(this[i]))
                return this[i];
        return null;
    
  4. first(func)
    Array.prototype.first = function (func) {
        var length = this.length,
            item = null;
        for (var i = 0; i < length; i++) {
            if (func(this[i])) {
                return this[i];
        return item;
    ...
    
  5. first(matching)
    Array.prototype.first = function(matching) {
        for (var i = 0; i < this.length; i++) {
      var entry = this[i];
      if (matching(entry) == true)
          return this[i];
        return null;
    
  6. first(n)
    Array.prototype.first = function(n) {
      if (this.length === 0 || n < 0) return void 0;
      if (n === undefined) return this[0];
      if (n === 0) return [];
      return this.initial(this.length - n);
    };
    
  7. first(num)
    Array.prototype.first = function (num) {
       if (num !== undefined) {
          return this.slice(0, num);
       return this[0];
    };
    
  8. first(predicate)
    Array.prototype.first = function(predicate) {
        for (var i = 0, l = this.length; i < l; i++) {
            if (predicate(this[i]))
                return this[i];
    
  9. first(predicate)
    Array.prototype.first = function (predicate) {
        for (var i = 0; i < this.length; ++i) {
            if (predicate(this[i]))
                return this[i];
    };