Identify the process done in the below code snippet
o = {x:1, y:{z:[false,null,""]}};
s = JSON.stringify(o);
p = JSON.parse(s);
o = {x:1, y:{z:[false,null,""]}};
s = JSON.stringify(o);
p = JSON.parse(s);
A. Object Encapsulation
B. Object Serialization
C. Object Abstraction
D. Object Encoding
Answer: Option B
Join The Discussion