Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardJavaScriptObject.create nullSingle-choice MCQ

An object made with Object.create(null) has a single own property and is used in three contexts. Which statement is true?

const o = Object.create(null); o.x = 1; // A: JSON.stringify(o) // B: `${o}` // C: Object.keys(o)