I have a ko.observable property of an object called \"totalLength\". While using application I would like to physically amend new value to this property. How can I do that?<
ko.observable is a function so you need to set the value like this feature.totalLength(10).
ko.observable
feature.totalLength(10)
You can change value of observable like this: