Created
March 25, 2011 02:07
-
-
Save luk-/886236 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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