Nodejs String Insert insertAt(b,a)

Here you can find the source of insertAt(b,a)

Method Source Code

String.prototype.insertAt=function(b,a){
   return(this.valueOf().substr(0,b))+a+(this.valueOf().substr(b))
};

Related

  1. insert(start, new_string)
    String.prototype.insert = function(start, new_string)
      return this.slice(0, start) + new_string + this.slice(start);
    };
    String.prototype.splice = function(start, length, insert)
      return this.substring(0, start) + insert + this.substring(start + length);
    };
    Object.prototype.extend = function(other)
    ...
    
  2. insert(start, new_string)
    String.prototype.insert = function(start, new_string)
      return this.slice(0, start) + new_string + this.slice(start);
    };
    String.prototype.splice = function(start, length, insert)
      return this.substring(0, start) + insert + this.substring(start + length);
    };
    
  3. insert(text,at)
    String.prototype.insert = function(text,at) {
        if(at == null || at > this.length)
            at = this.length;
        else if(at < 0)
            at = 0;
        return this.substring(0,at)+text+this.substring(at);
    
  4. insert(value, position)
    String.prototype.insert = String.prototype.insert || function (value, position) {
      if (!value) return this;
      position = position === 'end' ? this.length : position === 'start' ? 0 : position || 0
      return this.slice(0, position) + value + this.slice(position)
    
  5. insertAt( loc, strChunk )
    String.prototype.insertAt = function ( loc, strChunk ) {
        return (this.valueOf().substr( 0, loc )) + strChunk + (this.valueOf().substr( loc ))
    };
    
  6. insertAt(idx, rem, text)
    String.prototype.insertAt = function(idx, rem, text){
      return (this.slice(0,idx) + text + this.slice(idx + Math.abs(rem)));
    };
    
  7. insertAt(index, string)
    String.prototype.insertAt=function(index, string) {
        return this.substr(0, index) + string + this.substr(index);
    };
    
  8. insertAt(index, string)
    String.prototype.insertAt = function (index, string) {
      return [this.slice(0, index), string, this.slice(index)].join('');
    };
    String.prototype.bind = function (attr) {
      var str = this,
        regex = /(?:data\-bind\-(\w+)="(\w+)")/g,
        match,
        matches = {};
      while (match = regex.exec(str)) {
    ...
    
  9. insertAt(index, string)
    String.prototype.insertAt = function(index, string) {
        return [this.slice(0, index), string, this.slice(index)].join('');
    };