How to convert 1 to true or 0 to false upon model fetch

Use a double not:

!!1 = true;
!!0 = false;
obj.isChecked = !!parseInt(obj.isChecked);