Reputation: 405
Example:
What does does (...) indicate as a property value?
When a property has dropdown tag vs without a dropdown tag - what does this indicate?
(the following snippet uses mobx action & action.bound - though these do not influence the question at hand)
Upvotes: 2
Views: 276
Reputation: 4452
Please use mobx toJs
function for logging into console:
var obj = mobx.observable({
x: 1
});
var clone = mobx.toJS(obj);
console.log(clone);
mobx-state-tree
instead of toJS
use getSnapShot
.Upvotes: 1