I wasn't able to find any answer to this particular question. Suppose I have an observable object that I would like to clone it into another completely independent variable and make this variable not observable. Could someone help me find a solution to this question?
I tried following a solution like this:
var notObservableVar = observableVar();
But the new variable doesn't appear to be independent since my subsequent code appears to work with observableVar and not a new independent one.