নতুন মান পাওয়ার আগেই কি সেই পর্যবেক্ষণযোগ্য সাবস্ক্রিপশনের মধ্যে পর্যবেক্ষণযোগ্য বর্তমান মানটি পাওয়া সম্ভব হবে?
উদাহরণ:
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
এখানে কি বোঝায়?