For example, we have complex object:
var complex = {a: 1, b: 2, c: {c1: 1, c2: 2}};
We want it to make observable:
var observableComplex = ko.mapping.fromJS(complex);
Question: why we get c variable not observable? I was seen somewher in manuals, that this is done by design and I want to know why?
a - observable,
b - observable
c - object:
c1 - observable
c2 - observable