Nodejs Array Clear clear()

Here you can find the source of clear()

Method Source Code

Array.prototype.clear = function() {
    while (this.length > 0) {
        this.pop();//from   w ww  .jav a2s .  c  o m
    }
};

Related

  1. clear()
    Array.prototype.clear = function () {
        this.length = 0;
    };
    ===?
    Array.prototype.removeAt = function (pos) {
        this.splice(pos, 1);
    };
    
  2. clear()
    Array.prototype.clear = function() {
      this.length = 0;
      return this;
    };
    
  3. clear()
    Array.prototype.clear = function () {
        for (var i = 0, a = 0; i < this.length; i++) {
            this[i] = null;
        this.length = 0;
    };
    
  4. clear()
    Array.prototype.clear = function() {
      this.length = 0;
    };
    
  5. clear()
    Array.prototype.clear = function()
      this.splice(0, this.length);
    };
    
  6. clear()
    Array.prototype.clear = function() {
      this.length = 0; 
    };
    
  7. clear()
    var util = require('util');
    Array.prototype.clear = function () {
        while (this.length) {
            this.pop();
    };
    Object.mapObjectToArray = function (object) {
        var keyValuePair = [];
        Object.keys(object).map(function (key) {
    ...
    
  8. clear()
    Array.prototype.clear=function(){
        this.length=0;
    
  9. clear()
    Array.prototype.clear = function() {
        while(this[0]) {
            this.splice(0,1);
    function $(id) {
        return document.getElementById(id);
    Array.prototype.map_init = function() {
    ...