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