object-immutabilityJavaScriptObject ImmutabilityHardHow does Object.seal() differ from Object.freeze()?1seal allows modifying existing property values but blocks adding/removing; freeze blocks all2They are identical3seal deletes properties; freeze adds them4freeze allows adding properties; seal does notBack to list