I'm getting following error when I want to push items after I set null to observableArray()
can not read property push of null
self.roomMembers(null);
// I got error here
self.roomMembers.push(new member(user));
How can I solve this problem?