É possível obter no knockout o valor atual de um observável dentro de uma assinatura desse observável, antes de receber o novo valor?
Exemplo:
this.myObservable = ko.observable();
this.myObservable.subscribe(function(newValue){
//I'd like to get the previous value of 'myObservable' here before it's set to newValue
});
this
significa aqui?