Javascript String pop()

Description

Javascript String pop()


String.prototype.pop = function(){
    return this.slice(0, this.length - 1);
};



PreviousNext

Related