Is there a way to get a get/set behaviour on an array? I imagine something like this:
var arr = [\'one\', \'two\', \'three\']; var _arr = new Array(); for (
Why not create a new class for the inner objects?
var a = new Car(); function Car() { // here create the setters or getters necessary }
And then,
arr = new Array[a, new Car()]
I think you get the idea.