Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyNodeJSJSON parse stringifySingle-choice MCQ

What happens when you call `JSON.stringify` on the object below?

const obj = { a: () => 1, b: 2 }; console.log(JSON.stringify(obj));