How is this kind of object without prototype created?

Today I came across an object without a prototype chain. I wonder how this kind of object was created.

clipboard.png

Sep.17,2021

try Object.create (null) create an object

Menu