﻿// JScript File

function arrayRemoveAll(a){
    if(a == null)
        return;
    while(a.length)
        a.pop();
}