Nodejs Utililty Methods Array Clear

List of utility methods to do Array Clear

Description

The list of methods to do Array Clear are organized into topic(s).

Method

Clear()
Array.prototype.Clear = function()
    this.splice( 0, this.length );
};