几个小例子
const test1 = { x: null }
const test2 = { x: undefined }
Object.create(test1) // {x:null}
Object.create(test2) // {x:undefined}
Object.create(test1).x // null
Object.create(test2).x // undefined
JSON.parse(JSON.stringify(test1)) // {x:null}
JSON.parse(JSON.stringify(test2)) // {}