Uncaught TypeError: Cannot read property 'length' of undefined
- by AnApprentice
I'm working to built a contact list that is grouped by the first letter of the contact's last name.
After a succesfull ajax request, the contact is pushed to addContact:
Ajax success:
ko.utils.arrayForEach(dataJS.contactList, function(c) {
contactsModel.addContact(c);
});
contactsModel.addContact:
//add a contact in the right…