I have the following object
var foo = {
"1" : {
"test1" : "this is a test",
"test2" : "this is a test2"
}
}
How would you be able to insert another numerical named element?
"2" : {
"test3" : "this is a test3",
"test4" : "this is a test4"
}