I have a Knockout observable array with the internal structure shown below,
property: "Email"
value: "name@email.com"
I would need to convert it into a knockout Model object like this,
var obj;
obj.Email ="name@email.com";
Is there a simplistic way to achieve this in Knockout?
Thanks in advance