I'm curious to know if Knockout implement a method to reset a observable variable to its start value. For example:
var test = ko.observable("test");
test("ciao");
test.reset();
value come back to "test". Exist something like this or a field that save the start value?