Nodejs String Repeat repeat( num )

Here you can find the source of repeat( num )

Method Source Code

/*  /*from w w  w  .j a  va  2 s  . c  om*/
 *  String prototype additions
 */

String.prototype.repeat = function( num ) {
   return new Array( num + 1 ).join( this );
}

Related

  1. repeat( count )
    String.prototype.repeat = function( count ) {
      var s = "";
      while( count > 0 ) {
        count--;
        s += this;
      return s;
    
  2. repeat( num )
    String.prototype.repeat = function( num )
        return new Array( num + 1 ).join( this );
    
  3. repeat( num )
    String.prototype.repeat = function( num ) {
      for( var i = 0, buf = ""; i < num; i++ ) buf += this;
      return buf;
    
  4. repeat( num )
    SUBMIT_TIME_OUT = 10; 
    CONTEST_START_TIME = Date.UTC(2014, 4, 21, 3, 30, 0); 
    CONTEST_END_TIME = Date.UTC(2014, 4, 21, 9, 30, 0); 
    Tasks = new Meteor.Collection('ctf_tasks');
    Submits = new Meteor.Collection('submits');
    String.prototype.repeat = function( num ) {
        return new Array( num + 1 ).join( this );
    };
    getTimeInNiceFormat = function(t) {
    ...
    
  5. repeat( num )
    String.prototype.repeat = function( num ) {
      for( var i = 0, buf = ""; i < num; i++ ) buf += this;
      return buf;
    
  6. repeat(count)
    String.prototype.repeat = function(count) {
        return new Array(count + 1).join(this);
    };
    
  7. repeat(count)
    String.prototype.repeat = function (count) {
      return new Array((count || 0) + 1).join(this);
    };
    
  8. repeat(count)
    String.prototype.repeat = function (count) {
      return new Array((count || 0) + 1).join(this);
    };
    
  9. repeat(count)
    String.prototype.repeat = function (count){
      var str,
          pattern,
          i;
      pattern = String(this);
      if(!count){
        return patern;
      str = '';
    ...