不要怂,就是干,撸起袖子干!

associations3.ejs 228 Bytes
// remove the association with task1
project.setTasks([task2], function(associatedTasks) {
  // you will get task2 only
})

// remove 'em all
projects.setTasks([], function(associatedTasks) {
  // you will get an empty array
})