几个小例子

  1. const test1 = { x: null }
  2. const test2 = { x: undefined }
  3. Object.create(test1) // {x:null}
  4. Object.create(test2) // {x:undefined}
  5. Object.create(test1).x // null
  6. Object.create(test2).x // undefined
  7. JSON.parse(JSON.stringify(test1)) // {x:null}
  8. JSON.parse(JSON.stringify(test2)) // {}