Javascript String copy()

Description

Javascript String copy()

String.prototype.copy = function()
{
 return this.substring( 0, this.length );
};



PreviousNext

Related