adplus-dvertising
frame-decoration

Question

Identify the process done in the below code snippet
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: (b).Object Serialization

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Identify the process done in the below code snippet