You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constbase={a: 1,b: {test: 2},c: {c1: 1}};constdraft=createDraft(base);constb=draft.b;deletedraft.b;draft.c.c2=b;draft.c.c2.test=1000;constfinal=finishDraft(draft);// <= 3.12.4 (final.c.c2.test) is 2;// the right value of (final.c.c2.test) should be 1000;console.log(final);
The text was updated successfully, but these errors were encountered:
见下面的代码示例,
final.c.c2.test
依然是2The text was updated successfully, but these errors were encountered: