Which snippet could you add to this code to print "{"type": "tiger"}" to the console?
let cat = { type: "tiger", size: "large" };
let json = /* Snippet here */;
console.log(json); // print {"type":"tiger"}
Which snippet could you add to this code to print "{"type": "tiger"}" to the console?
let cat = { type: "tiger", size: "large" };
let json = /* Snippet here */;
console.log(json); // print {"type":"tiger"}