function Picker() {
this.status = [0, 0, 0];
this.progress = Picker.status[0];
}
var picker = new Picker();
picker.progress = 2;
Now if I check the information held by progress and status[0] they will be different.
How can I make these a reference instead of copies?
Many thanks