Skip to content

Instantly share code, notes, and snippets.

@luk-
Created March 25, 2011 02:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luk-/886236 to your computer and use it in GitHub Desktop.
Save luk-/886236 to your computer and use it in GitHub Desktop.
//object literal
var NotArray = {
addItem: function(key, val) {
NotArray.key = val;
},
getItem: function(key) {
return NotArray.key;
}
}
//or using the constructor
var NotArray = new Object();
NotArray.addItem = function(key, val) {
NotArray.key = val;
}
NotArray.getItem = function(key) {
return NotArray.key;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment