I'm feeling a bit lost on how to tackle this issue and could use some guidance. I've been struggling to find resources on how to load an array that is nested within an Object. The following function is where I've hit a roadblock:
function Frame(time){
this.minutes = new Array();
this.time = time;
}
If I were to create an array of Frames, how would I go about accessing the minutes array within each Frame?