Is there a way to associate an empty array with an object property so it can be accessed later using dot notation?
http://jsfiddle.net/bobbyrne01/ckdfyfxp/
var AJAX_Utils_AddressBook = {
contacts: null
};
var contact = [];
AJAX_Utils_AddressBook.contacts = contact;
console.log(AJAX_Utils_AddressBook.contacts.contact.length);
Encountered this error message:
AJAX_Utils_AddressBook.contacts.contact is undefined