Hi i have an observable array
this.item = ko.observableArray({
tax: ko.observable(8.0);
price: ko.observable(100.00);
eachTotal: ko.computed(function() {
this.tax() * this.price();
});
});
I am getting error saying object [Window] does not have tax method.
How would I do this?