Skip to content

Instantly share code, notes, and snippets.

@maxdignan
Last active October 18, 2015 21:15
Show Gist options
  • Save maxdignan/e637c400b70b99e963a9 to your computer and use it in GitHub Desktop.
Save maxdignan/e637c400b70b99e963a9 to your computer and use it in GitHub Desktop.
ArrayBuilder.js
var arrayBuilder = function(){
return {
arr: [],
addElem: function(element){
this.arr.push(element);
},
getArray: function(){
var c = this.arr;
this.clearArray();
return c;
},
clearArray(){
this.arr = [];
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment