I've looked around and haven't found an specific answer here, but how would I access and update an object that is within an object?
In my example, how would I BJ.o[0]["todo-items"].length to the position of '33' in the data object. 
BJ.o = o[0]["todo-items"].length;
var data = {
  datasets: [{
    data: [ 33, 9, 24, ],
    backgroundColor: [ "#FF6384", "#4BC0C0", "#FFCE56", ],
    label: 'My dataset' // for legend
  }],
  labels: [ "Overdue", "Today", "Upcoming", ]
};
 
     
     
     
    