How to create a computed observable array in Knockout
This will combine the two arrays and return the combined list. However, it is not a computed observable array (don’t know if that is even possible), but a regular computed observable. self.masterList = ko.computed(function() { return this.listA().concat(this.listB()); }, this);