Skip to content

Instantly share code, notes, and snippets.

@henriquegogo
Created November 15, 2011 02:57
Show Gist options
  • Save henriquegogo/1365995 to your computer and use it in GitHub Desktop.
Save henriquegogo/1365995 to your computer and use it in GitHub Desktop.
Get and Set with JavaScript
var o = {
set item (str) {
return this.log[this.log.length] = str;
},
get item () {
if (this.log.length > 0) {
return this.log[this.log.length - 1];
}
else {
return null;
}
},
log: []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment