Everything is nice when you have only one array.
var ref = new Firebase("...");
var sync = $firebase(ref);
var test = sync.$asArray();
So I have an array in test on which I can operate with $add, $save and $remove.
But what if I want a second array? I've tried this:
var ref = new Firebase("...");
var sync = $firebase(ref);
var test = sync.$asArray();
var test2 = sync.$asArray();
But if I add something to test2, it goes to the same DB as the one test uses. Am I using it wrong? Do I need to create a new Firebase db for each array?
Is it possible to create a dynamic number of arrays? Is it possible, to nest arrays into arrays? Example: a list of todo lists.