Nodejs Utililty Methods String Splice

List of utility methods to do String Splice

Description

The list of methods to do String Splice are organized into topic(s).

Method

splice(start, length, replacement)
String.prototype.splice = function(start, length, replacement) {
    return this.substr(0, start) + replacement + this.substr(start + length);
};