myApp.setProperty("test", [1,2,3]);
var testValue = myApp.getProperty("test");
System.println("test"+ myApp.getProperty("test"));
testValue.add(4);
System.println("test"+ myApp.getProperty("test"));
returns:
test[1, 2, 3]
test[1, 2, 3, 4]
I wonder if this is a bug or an undocumented feature?